You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When animation is completed and activates onComplete callback, which removes other animation array "list" and array this.easings becomes different. After that action list have an element which this.easing doesn't. After that coming splice with index -1 and removes wrong animation element
proofs
after we delete element animation
and now we deleting index -1, so wrong element lost animation
The text was updated successfully, but these errors were encountered:
are you deleting the easing within the update loop of another easing? this was a chicken-and-egg problem that i tried to solve by ensuring all easings run regardless of what happens within the update loop.
When animation is completed and activates onComplete callback, which removes other animation array "list" and array this.easings becomes different. After that action list have an element which this.easing doesn't. After that coming splice with index -1 and removes wrong animation element
proofs
![image](https://user-images.githubusercontent.com/36897869/68840973-683acb00-06cc-11ea-84f0-d4ebe800b8dc.png)
![image](https://user-images.githubusercontent.com/36897869/68841065-91f3f200-06cc-11ea-9066-504032596df8.png)
after we delete element animation
and now we deleting index -1, so wrong element lost animation
The text was updated successfully, but these errors were encountered: