- [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:
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user