1

How to achieve a rotation animation like this (GIF below)? Where the text rotates on both orange point and its origin point axes, so it stays horizontal along its rotation. Thanks! enter image description here

jik bik
  • 779
  • 1
  • 7
  • 19

1 Answers1

4

Copy location constraint

The easiest way to keep the text horizontal is to not rotate it at all. Let's see the movement from another perspective: it's a text, that doesn't rotate, but it's origin is moving on a circular rail.

Use an empty to build a pivot in the center and another to set the position of the object's origin. Parent the last empty to the first one and animate the pivot to build a moving point.

Now add a constraint to the text object's location targeting the moving empty. The text will not rotate (why whould it?), but it's following the movement, achieving the desired effect.

enter image description here

Carlo
  • 24,826
  • 2
  • 49
  • 92