I'm wrapping up some tools I've been using in my games as libraries so everyone can use them.
Here's lue, a hue manager that lets you quickly set up disco aesthetics
Code: Select all
local lue = require "lue"
lue:setColor("my-color", {200, 200, 200})
function love.update(dt)
lue:update(dt)
end
function love.draw()
love.graphics.setColor(lue:getColor("my-color"))
love.graphics.rectangle("fill", 140, 120, 40, 40)
end