Comment on page
Using a Plugin
Using a Plugin within Loop is similiar to using packages. The same syntax can be used to import plugins.
It's simple to start using plugins, once you have downloaded a libray from the internet (we advise using the package repository) you can easily import it like this.
import "C:/path/to/plugin" as new_plugin
import "/path/to/plugin" as new_plugin
import "/path/to/plugin" as new_plugin
Now you will be able to use the new plugin using
new_plugin
. An important thing to know is that a file extension is not needed, this is so your programs are platform independant.Last modified 1yr ago