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

    Related Discussions
    ...

    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.

      15 天 后

      Misaki 现在有个问题,按照官方的视频里代码写了,鼠标也能够控制骨骼了,但是播放攻击动画的时候,所控制的骨骼就会回到原来的初始位置,导致鼠标无法控制枪口的指向,不知道问题出在哪里。能不能帮助解决一下。感谢!!!

      @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.