Love2d tools is a love2d library inspired by batteries.lua, it has various general use tools to make developing your love2d game a little bit easier. It is currently W.I.P (Work In Progress)
More information (usage, modules, etc.) in the project's repository README.md.
Installation
- Clone the repository or add it as a sub module
Code: Select all
git clone https://github.com/Nykenik24/love2d-tools.git # or git submodule add https://github.com/Nykenik24/love2d-tools.git path/to/library
- Require the library (or module(s)) in your "main.lua" file or the file where you load libraries
Code: Select all
Love2D_Tools = require("love2d-tools.lib") -- or you can load an individual module Class = require("love2d-tools.modules.class")