-
Animating leveled text in circle
I am trying to animate a spinning 2d doughnut shaped wheel, with a few pieces of text on the side of the wheel, but I would like the text to remain leveled so that it remains legible as the wheel rotates.
So I can make my doughnut rotate by parenting it to a null and rotating the null, however, simply trying to parent the text to the wheel does not allow the text to remain leveled because the wheel is rotating in a clockwise motion.
I found an expression for the position that animates the text in a circle, see below, but it does not seem to allow me to control the speed.
([this_comp.width/2, this_comp.height/2],
[Math.sin(time)*50, -Math.cos(time)*50])With my basic knowledge of parenting and expressions, I have not been able to figure this one out.
However I should be able to comprehend a basic expression or parenting scheme.
Can anyone help me out with this?