• Unity
  • Attaching gameobjects to spine bones

Related Discussions
...

I was wondering what's the best way to attach a gameobject (particles system for example) to a certain bone, and then move them together when spine object plays animations.

Is getting bone coordinates all the time and then updating particles system coordinates to match bone the only way, or there is a better solution?

You can use the BoneFollower script:

  1. Attach it to an empty game object.
  2. Drag the skeleton reference into the script.
  3. Pick a bone to follow.
  4. Parent your particle system into the game object.
  5. Optionally parent bone follower game object into the skeleton game object.

I see, thanks for answers 🙂