Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 914 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 914 Bytes

Current plugins for runluau.

Builds directly into the build output folder of runluau for fast testing.

How To Use Plugins

Simply put them in the plugins folder and they will work. Plugins can do anything to the environment, but all of the plugins here register a global library to access their functions. A list of the functions the plugins here provide can be found in the runluau env.d.luau file.

How To Create a New Plugin

  1. Copy runluau-template, and rename it.
  2. Rename runluau-template.vcxproj, runluau-template.vcxproj.filters, and runluau-template.vcxproj.user according to the name you chose.
  3. Right click the runluau-plugins solution and click Add -> Existing Project....
  4. Pick the .vcxproj of the new plugin you made.
  5. Edit lib.cpp to do whatever you want.