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
Because sparky.create() children render on the next frame, and calls to that inside 'each' are also queued to the next frame, that's two frames to render a collection.
Either:
Make each render without delay, on every collection change (bad)
Make new Sparkies render immediately, which involves moving the throttle out of .parse and into Sparky() constructor (probably quite a good idea)
Make new child sparkies render immediately, same as above but with conditional render (probably unecessarily complicated)
The text was updated successfully, but these errors were encountered:
Because sparky.create() children render on the next frame, and calls to that inside 'each' are also queued to the next frame, that's two frames to render a collection.
Either:
The text was updated successfully, but these errors were encountered: