Plugin Creation - nommiin/PluginDocs GitHub Wiki

  1. Create a new Class Library project targeting .NET
  2. Import IDE.dll, and Utils.dll as references
  3. Create a new class for your plugin and use the IPlugin interface from YoYoStudio.Plugins
  4. Create an Initialise (note the UK spelling) method in your class with the return type of PluginConfig
  5. Instantiate the PluginConfig class and provide arguments for _name (the name of your plugin), _description (the description of your plugin), and _required (usually false) and return it at the end of your Initialise method

WIP