Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
"plugin": {
    	   "pluginfile": "LISPLOAD/Lisp/CLIRectangle.lsp",
    	   "pluginformat": "lsp",
    	   "pluginfolder": "CLIPlugin",
    },


For multiple input files, you need to map the target where each file will be used:

  • Use "target": "D" for a file to open on application startup.

  • Use "target": "script" for a file to load at runtime via a script that specifies the file path.

Code Block
"files":[
            {"file":"${INPUT_FILE[0]}","target":"D"},
            {"file":"${INPUT_FILE[1]}","target":"script"}
    ],

Outputs

Default parameters:

...