I'm a novice and want to control the bones of the spine in the unity project. When an event is triggered, it will automatically track to a specific bone in another spine animation. Don't know how to control it in unity, or can you do a little pre-editing in the spine software? Please help me thanks
spine-unity control
sinkias Welcome to the Spine forum! If you want to make other skeletons or GameObjects follow a specific bone in the Spine skeleton, you can use the Bone Follower component. It would be best to start by looking at an example scene that uses the Bone Follower component: Spine Examples/Getting Started/4 Object Oriented Sample
.
In SpineboyBeginnerView.cs
, which is attached to the VIEW Spineboy
GameObject in this example scene, the method of responding to events during animation is also demonstrated.
@sinkias If following the bone works as desired until you switch to another animation (the attack animation), it sounds like your new animation inside the Spine project might be keying other bone values and overriding your bone positions or set transform constraint mix values differently. Are you referring to the Spineboy example project, or are you using your own custom skeleton project? If you're using Spineboy, which animation is causing troubles for you? Could you show which code you're using the set the bone position, or are you tinkering with the example scene Spine Examples/Getting Started/4 Object Oriented Sample
?
Since Misaki mentioned the BoneFollower
component: I'm not sure what exactly you want to achieve, but if you want to override a bone's location to be at e.g. the mouse cursor position, BoneFollower
is not an option. BoneFollower
lets a GameObject follow a bone, while you likely need a bone following a GameObject or a custom position.