I am using tween.js. I have a use case that requires creating many tweens very rapidly.
I am concerned about minimizing CPU and garbage collection, and so I am trying to minimize the creation of objects with "new". But, it seems that the only way to start a tween is to create a new tween object.
Is there a way to take an existing tween object and reinitialize/re-use it?