Check if (color) tween is running?


(Mike Evmm) #1

Couldn’t found any documentation about this. Is there any way to check if a color tween is tweening?


(Justin Wolf) #2

I believe the active property is what you’re looking for. According to the base Tween class, the active property gets set to true when you call start(). When it finishes (either upon the Tween actually ending or you manually calling cancel()), active gets set to false.


(Mike Evmm) #3

Thank you!
(I thought that, like entities, active only controlled whether it updated or not)