#is it expensive to create new tweens on every frame periodically?
3 messages · Page 1 of 1 (latest)
I don't think it makes sense to create tweens every frame for movement. There are better ways
Best method for smooth motion, imo:
velocity += (targetvelocity - velocity) * friction
Where friction is a float from 0 to 1; 0 being no change in velocity at all, and 1 being full instant change.