Sub OnInitPlugin()
RegisterPlugin("PluginName")
RegisterPluginFolder("FolderName")
RegisterPluginVersion(1, 0, 0)
end Sub
You can save your script as a VSL into this folder :
%ProgramData%\vizrt\VizEngine\ScriptPlugins\
And in your script, you can use the RegisterPluginFolder.
You can check the documentation if you click here.
The name will be the script folder it will use.
Code:Sub OnInitPlugin() RegisterPlugin("PluginName") RegisterPluginFolder("FolderName") RegisterPluginVersion(1, 0, 0) end Sub
What do you mean?
you can export Viz Script as a Viz plugin. You can either drag and drop the script to the plugins or you can also save it as a VSL plugin.
by default, it goes to the Script Plugin Folder. But, you can define another folder in the script, if you wish to do so...this has been already answered.
what are you trying to do exactly?
Pedro