Page 1 of 1

Love2d tools

Posted: Wed Dec 18, 2024 6:23 pm
by Nykenik24
Love2d tools
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
  1. 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
    
  2. 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")
    
Links If you have any feedback, feel free to comment!