mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 09:46:02 +08:00
[unity] Minor: formatting fixes.
This commit is contained in:
parent
e11dea1497
commit
c94cad7403
@ -42,7 +42,7 @@ namespace Spine.Unity.Examples {
|
|||||||
public class SkeletonRagdoll2D : MonoBehaviour {
|
public class SkeletonRagdoll2D : MonoBehaviour {
|
||||||
static Transform parentSpaceHelper;
|
static Transform parentSpaceHelper;
|
||||||
|
|
||||||
#region Inspector
|
#region Inspector
|
||||||
[Header("Hierarchy")]
|
[Header("Hierarchy")]
|
||||||
[SpineBone]
|
[SpineBone]
|
||||||
public string startingBoneName = "";
|
public string startingBoneName = "";
|
||||||
@ -72,7 +72,7 @@ namespace Spine.Unity.Examples {
|
|||||||
[Range(0, 1)]
|
[Range(0, 1)]
|
||||||
public float mix = 1;
|
public float mix = 1;
|
||||||
public bool oldRagdollBehaviour = false;
|
public bool oldRagdollBehaviour = false;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
ISkeletonAnimation targetSkeletonComponent;
|
ISkeletonAnimation targetSkeletonComponent;
|
||||||
Skeleton skeleton;
|
Skeleton skeleton;
|
||||||
@ -110,7 +110,7 @@ namespace Spine.Unity.Examples {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#region API
|
#region API
|
||||||
public Rigidbody2D[] RigidbodyArray {
|
public Rigidbody2D[] RigidbodyArray {
|
||||||
get {
|
get {
|
||||||
if (!isActive)
|
if (!isActive)
|
||||||
@ -299,7 +299,7 @@ namespace Spine.Unity.Examples {
|
|||||||
var bone = skeleton.FindBone(boneName);
|
var bone = skeleton.FindBone(boneName);
|
||||||
return (bone != null && boneTable.ContainsKey(bone)) ? boneTable[bone].GetComponent<Rigidbody2D>() : null;
|
return (bone != null && boneTable.ContainsKey(bone)) ? boneTable[bone].GetComponent<Rigidbody2D>() : null;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
/// <summary>Generates the ragdoll simulation's Transform and joint setup.</summary>
|
/// <summary>Generates the ragdoll simulation's Transform and joint setup.</summary>
|
||||||
void RecursivelyCreateBoneProxies (Bone b) {
|
void RecursivelyCreateBoneProxies (Bone b) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user