2020-02-17 20:33:58 -05:00
..
2020-02-17 20:33:58 -05:00
2020-02-10 17:18:21 -05:00
2020-02-10 17:18:21 -05:00
2020-02-17 20:33:58 -05:00
2020-02-10 17:18:21 -05:00
2020-02-17 20:33:58 -05:00
2020-02-10 17:18:21 -05:00
2020-02-10 17:18:21 -05:00
2020-02-10 17:18:21 -05:00
2020-02-17 20:33:58 -05:00
2020-02-10 17:18:21 -05:00
2020-02-10 17:18:21 -05:00
2020-02-10 17:18:21 -05:00

GuiManager

Use with love2d. Copy GuiManager.lua into your game and the multi library and the bin library

require like this

require("bin")
require("multi.compat.love2d") -- requires the entire library and rewrites the love.run function so you don't need worry about any modifications to the love.update and love.draw methods
require("GuiManager")
test=gui:newTextLabel("HI!",0,0,0,0,.5,.5)
test:centerX()
test:centerY()

Documentation will take a while. I have to finish writing the documentation for the multi library and start writing documentation for the bin, and net library

This is a basic library for allowing you the user to have 100% control over the look of your menus. You define your style and you make it your own. This just makes it eaiser to make stuff. Check out the intro software project: https://github.com/rayaman/IntroSoftwareProject to see how you can use this library. Note the multi library and the bin library are the older versions not the newer ones. But the methods and feel of the libraries are the same.