update project script methods, replace project script with project client script

This commit is contained in:
MihailRis
2025-08-18 21:20:18 +03:00
parent dc0e388eec
commit c8d760e83e
6 changed files with 92 additions and 88 deletions
@@ -1,13 +1,13 @@
local menubg
local function clear_menu()
function on_menu_clear()
if menubg then
menubg:destruct()
menubg = nil
end
end
local function configure_menu()
function on_menu_setup()
local controller = {}
function controller.resize_menu_bg()
local w, h = unpack(gui.get_viewport())
@@ -24,11 +24,3 @@ local function configure_menu()
controller.resize_menu_bg()
menu.page = "main"
end
function on_screen_changed(screen)
if screen ~= "menu" then
clear_menu()
else
configure_menu()
end
end