- [FIX] app.push() i app.pop() treballaven sobre mini.update, en compte de sobre app.update

- [FIX] tweening.update() ara es crida a nivell de aplicació
- [NEW] tilepicker i itempicker adequats al nou disseny/sistema
This commit is contained in:
2026-03-11 12:52:35 +01:00
parent 333d05dfac
commit c1c022abb8
4 changed files with 89 additions and 12 deletions

View File

@@ -4,13 +4,13 @@ app = {
stack = {},
push = function(func)
table.insert(app.stack, mini.update)
mini.update = func
table.insert(app.stack, app.update)
app.update = func
end,
pop = function()
if #app.stack > 0 then
mini.update = table.remove(app.stack)
app.update = table.remove(app.stack)
end
end,
}