longkeng

  • 2015年2月16日
  • 2015年1月14日に参加
  • Attachment attachment = skeletonAnimation.skeleton.GetAttachment(slotName, attachmentName);
    otherSkeletonAnimation.skeleton.GetSlot(slotName).Attachment = attachment;

    Thanks for help. I will try to do by this way.


    Nate wrote

    I have tried to do, but no results. Do you have example for that?
    Here is my code:

    public SkeletonAnimation daggerSkeletonAnimation;
        private SkeletonAnimation skeletonAnimation;
       // Use this for initialization
       void Start () {
            characterSkeletonAnimation = GetComponent<SkeletonAnimation>();
            if (daggerSkeletonAnimation.skeleton == null)
            {
                Debug.LogError("dagger skeleton is null");
            }
            Attachment rightHandWeapon = daggerSkeletonAnimation.skeleton.GetAttachment("right hand item", "dagger");
            if (rightHandWeapon != null)
            {
                // Assigned attachment for weapon slot but not effect.
                characterSkeletonAnimation.skeleton.FindSlot("weapon").Attachment = rightHandWeapon;
            }
       }

    daggerSkeletonAnimation is weapon animation that referenced from the outside. After implement this code weapon not be assigned for character? Look forward the help. Thanks!

  • Nate wrote

    I thought he just wanted to use two atlas pages. Should just be a matter of getAttachment and setting it on a slot in a different skeleton. The attachments are stateless, so shouldn't care that they were loaded in different skeleton datas.

    Example i had a skeleton animation with name "skeletonAnimation".
    This code skeletonAnimation.skeleton.SetAttachment (slotName, attachmentName) work with attachmentName get from other different skeleton data.
    Because a weapon will use for many character, i want divide two atlas character and weapon atlas. If you do it this way, game will be lighter and cost of maintain will save more time.
    I hope that have a example can solve this problem.
    Now, all examples of the spine are held weapons and character in an atlas. Actually this approach is not effective because it can not be updated separately for each character weapon.

  • Pharan

    you can send to me URL of sample of multi-atlas setup?
    Thanks for reply.

    • 編集済み
  • I'm developer game on Unity Engine. Before I often using SM2 for create animation. But recent i'm trying use spine animation.
    But i have a major problem that is spine animation can't attach a object from other atlas.
    Example, i have a character atlas and a weapon atlas. One character can using many weapon. So i need to seperate the two atlas.
    My idea is create skeleton animation for character using character atlas. Then respectively assigned weapons into character. My question how to implement it? and how to weapon can move via character animation? Before i used SM2 and because SM2 animation organized into small bone, i can implement this problem.
    I look forward to receiving help from the people!