Harald Man thanks a lot! Issue fixed.
fshakhverdiyev

- 25日前
- 7 2月に参加
Misaki Okay. I will send again with video recording and new .zip
Harald Sample project sent to contact@esotericsoftware.com this mail. skeletonAnimation.Skeleton.SetBonesToSetupPose(); skeletonAnimation.Update(0); this 2 line doesnt reset bone positions for Exploded Skin.
Harald Thanks a lot
Harald kindly reminder. Help pls
Any feedback ?
Harald I think i can handle this problem. I realize some bones must not collide but it is collide with ground. One answer i need : If my bones on "Exploded" Skin (which bone only has on this skin. Called this bone BoneX) goes to somewhere and after that i Remove ragdoll and change skin to "Normal" is BoneX goes to default position ? If not how can i reset all bones on Exploded Skin ?
Harald Okay
Harald And yes some skin-bones present in one skin and not present in another
Harald Sorry for late response. We have many issues.
public static void ChangeSkin(SkeletonAnimation skeletonAnimation, Skin newSkin)
This is Skin change code part. I just call this method change my skin to another one after call skeletonRagdoll.Apply(). Everything is good at firstTime but second.....
{
Skeleton skeleton = skeletonAnimation.skeleton;
skeleton.SetSkin(newSkin);
skeleton.SetSlotsToSetupPose();
skeletonAnimation.state.Apply(skeleton);
}
This situation happened on only skin change procedure.
` public void Die(Vector2 damageComeFrom)
{
SlowMotionManager.Instance.ResetSlowMotion();
isTriggered = false;
SkeletonSkinUtil.ChangeSkin(skeletonAnimation, _skeletonAnimation.skeleton.Data.FindSkin("Exploded"));
_skeletonRagdoll2D.Apply();
_capsuleCollider2D.enabled = false;
_rigidbody2D.velocity = Vector2.zero;
_rigidbody2D.angularVelocity = 0;
enabled = false;
}public void OnRestart() { enabled = true; if (_skeletonRagdoll2D.IsActive) { _skeletonRagdoll2D.Remove(); } _skeletonAnimation.ClearState(); SkeletonSkinUtil.ChangeSkin(_skeletonAnimation, _skeletonAnimation.skeleton.Data.FindSkin("Normal")); _skeletonAnimation.skeleton.SetBonesToSetupPose(); transform.position = _wakeUpPosition; _isTriggered = false; _rigidbody2D.isKinematic = false; _rigidbody2D.velocity = Vector2.zero; _capsuleCollider2D.enabled = true; _isJumped = false; _skeletonAnimation.state.SetAnimation(0, "Idle", true); }`
Die method called when character die and after Restart called everthing go to start position. First time everthing works fine (Ragdoll functionality). But second time when Die called (After restart) character exploded
Harald Thanks. It means Spine's Physics Constraints
This scene does not contain skin switching @Harald . I know this scene but it cant help us. With one skin everything is fine but when i change skin this issue comes up
Harald But can i use another skin for ragdoll ? I can create skin in spine editor with constraints and use in unity as a ragdolled body. Is this good way ?
My ragdoll works very good at first time. Firstly i change spine skin and apply ragdoll everthing works perfectly. After that my character come to live (Remove ragdoll and SetBonesToSetupPose applied). Everthing is okay. If my character again fall to Ragdoll character exploded. I added ScreenShot below :
First time :
Second time :Is this true ? I cant understand completely. Because SkeletonRagdoll2d.Apply create joints, colliders etc. for every bone on character (all bones from all skins). Can i create one skin with physics contraints on spine and use this skin as a ragdoll on my game ? Is this good way ?
Can i use Spine Skin as a Ragdoll body ? Because i think SkeletonRagdoll2D create a lot of unused joints, colliders etc. It create for all of our bones (bones from every skins). I want to just create used skin's bones or use another skin for ragdoll body ? What do you prefer ?
Does Spine calculate everthing (include Bones, Constraints on unused Skin) on Update ? Or just calculate things of used Skin ? For example : My character has Normal skin with 4 bone and Exploded skin with 25 bone. Does spine calculate 25 for alltime ? Or it just calculating for 4 bones when i on Normal Skin. Thanks!
Hi. We have humanoid character. And he can take AquaSuit from ground. We want to create second skin for ex : "AquaSkin". But in this skin this character must have extra physic constraint for his AquaSuit pipe. Can we do this with skin in Spine ?
This is our character with aqua Suit. If you understand problem please guide us. Thanks for support!Harald Skeleton.ScaleX works fine thanks