createjs rotationDir not changing
Hi,
I'm trying to change the rotational direction of a symbol to CCW (-1).
Following the docs on: https://createjs.com/docs/tweenjs/classes/RotationPlugin.html
You can modify this behaviour by specifying a rotationDir tween value. A value of -1 will force CCW rotation, 1 will force CW, and 0 will disable the plugin effects for that portion of the tween.
However the rotational direction always stays clockwise (CW) when using parameters 0, 1 and -1.
new createjs.Tween.get(korte_arm, {loop: true}).to({rotation:90, rotationDir:-1}).to({rotation:180}, 7000);
Am I missing a global/local setting?
Regards,
