Made with LÖve
- This Love2D Project was made specifically for GNUI and for future libraries made by the Lua Goofs.
- Its made though love2D because its the only thing I (GNamimates) knew at the time.
- This Project is heavily biased towards my annotation structure.
simply dump your scripts into a folder called src
in the same place as where main.lua
is
once ran its gonna output at %appdata%/LOVE/<root-folder-name>/
- Gathers every file into one long table of lines
- Scrapes all the classes and its fields into a table
- Srapes all the methods/functions and pairs them to their given classes
- Generates a file for each class declared in all files
- Creates a table of contents into the
_Sidebar.md
- Ding!
the class declaration must have a local variable declared at the last line
---@class Box
---@field Size : Vector3
local box_methods = {}
Every method/functon applied into the box_methods
local variable gets assigned to be in the Box
class.