mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
[lua] Fixed bug in AnimationState:queueEvent
This commit is contained in:
parent
6c10b256ca
commit
677eb60cec
@ -487,7 +487,7 @@ function AnimationState:queueEvents (entry, animationTime)
|
|||||||
while i <= n do
|
while i <= n do
|
||||||
local event = events[i]
|
local event = events[i]
|
||||||
if not (event.time < animationStart) then --// Discard events outside animation start/end.
|
if not (event.time < animationStart) then --// Discard events outside animation start/end.
|
||||||
queue.event(entry, event)
|
queue:event(entry, event)
|
||||||
end
|
end
|
||||||
i = i + 1
|
i = i + 1
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user