4

I am trying to make a simple animation. these rings will simply rotate around the diamond. for each ring, I want it to rotate on a different axis. however (excluding the vertical axis), I can't seem to figure out how to do this. is there a way to just rotate it 120 degrees and then rotate it on the z-axis again, just like with the vertical one?

I'm probably just missing something simple though.

I am new to animation in general, so any help would be greatly appreciated.

axis that i need to rotate on

  • To add to Yaroslav's answer, you can use empties as well, see answer here https://blender.stackexchange.com/questions/129834/how-do-i-rotate-an-object-along-its-own-axis-windmill – moonboots Feb 12 '24 at 06:36

3 Answers3

5

Your rotations are keyed in Local space.So at its simplest, all you have to do is make your hexagons separate objects, and appropriately rotate each one in Object Mode before animating.

Here, XY hexes are first rotated by 0,60, and 120 degrees about Z. The outer hex is keyed to rotate about its Y axis. The mid and inner hexes have their Animation Data (CtrlL) linked to the outer hex:

enter image description here

You could, if needed, CtrlP parent them all to your diamond.

Robin Betts
  • 76,260
  • 8
  • 77
  • 190
4

There is a plenty of options to do this thing, but I see as the optimal solution - to use bones.

You can use each bone as a custom rotation axis. LIKE THIS :


img01


You could rotate each bone around it's Y-axis. Just don't forget to activate Normals as axises — THIS WAY:


img02


To rotate chosen parts you should parent object to the armature "With Empty Groups", then assign vertices to each vertex group manually.

**Keep in mind: after this type of parenting the name of each vertex group is the same as the according bone's name. So just assign vertices to the right vertex groups.

__

Then just rotate each bone in the [Pose Mode]

Yaroslav
  • 421
  • 2
  • 10
2

Here is a geometry nodes solution :

With it, it will randomly rotate mesh islands, aligned with an axis based on the resolution value (in your case it would have to be set to 6)

enter image description here

I aslo made a node group to create the rings proceduraly, this is completely optional

enter image description here

Here is the node group for the rotation operation

enter image description here

Alex
  • 2,608
  • 3
  • 15