Skip to content
Snippets Groups Projects
Commit 881da4b1 authored by DarkGod's avatar DarkGod
Browse files

fix

parent 16c297e6
No related branches found
No related tags found
No related merge requests found
......@@ -172,13 +172,15 @@ function _M:display(nb_keyframes)
-- Check timers
if self._timers_cb and nb_keyframes > 0 then
local new = {}
local exec = {}
for cb, frames in pairs(self._timers_cb) do
frames = frames - nb_keyframes
if frames <= 0 then cb()
if frames <= 0 then exec[#exec+1] = cb
else new[cb] = frames end
end
if next(new) then self._timers_cb = new
else self._timers_cb = nil end
for _, cb in ipairs(exec) do cb() end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment