added zip utils

This commit is contained in:
2026-06-15 23:31:09 -07:00
parent ae97703bb4
commit 691c3adb37
7 changed files with 374 additions and 31 deletions
+10 -3
View File
@@ -4,6 +4,13 @@ local menu = require("gui.core.menus")
-- local proc = gui:getProcessor():newProcessor("settings")
function Menu(frame)
local background = frame:newImageLabel("assets/images/background.jpg")
background:fullFrame()
end
local background = frame:newFrame():fullFrame()
background:setShader(gui.SHADERS.background,{
colA = color.shaderColA,
colB = color.shaderColB,
colC = color.shaderColC
})
background:shaderTime()
end
return menu.registerMenu("settings", Menu)