diff options
Diffstat (limited to '_ActiveRagdoll/BodyParts')
-rw-r--r-- | _ActiveRagdoll/BodyParts/ArmLeft.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/ArmRight.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/FootLeft.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/FootRight.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/KneeLeft.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/KneeRight.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/LegLeft.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/LegRight.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/Neck.cs | 12 | ||||
-rw-r--r-- | _ActiveRagdoll/BodyParts/Torso.cs | 12 |
10 files changed, 120 insertions, 0 deletions
diff --git a/_ActiveRagdoll/BodyParts/ArmLeft.cs b/_ActiveRagdoll/BodyParts/ArmLeft.cs new file mode 100644 index 0000000..b7ee14c --- /dev/null +++ b/_ActiveRagdoll/BodyParts/ArmLeft.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class ArmLeft : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/ArmRight.cs b/_ActiveRagdoll/BodyParts/ArmRight.cs new file mode 100644 index 0000000..735d646 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/ArmRight.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class ArmRight : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/FootLeft.cs b/_ActiveRagdoll/BodyParts/FootLeft.cs new file mode 100644 index 0000000..da0d11f --- /dev/null +++ b/_ActiveRagdoll/BodyParts/FootLeft.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class FootLeft : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/FootRight.cs b/_ActiveRagdoll/BodyParts/FootRight.cs new file mode 100644 index 0000000..c5014db --- /dev/null +++ b/_ActiveRagdoll/BodyParts/FootRight.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class FootRight : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/KneeLeft.cs b/_ActiveRagdoll/BodyParts/KneeLeft.cs new file mode 100644 index 0000000..da00140 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/KneeLeft.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class KneeLeft : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/KneeRight.cs b/_ActiveRagdoll/BodyParts/KneeRight.cs new file mode 100644 index 0000000..302a4ed --- /dev/null +++ b/_ActiveRagdoll/BodyParts/KneeRight.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class KneeRight : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/LegLeft.cs b/_ActiveRagdoll/BodyParts/LegLeft.cs new file mode 100644 index 0000000..23446b9 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/LegLeft.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class LegLeft : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/LegRight.cs b/_ActiveRagdoll/BodyParts/LegRight.cs new file mode 100644 index 0000000..a050339 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/LegRight.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class LegRight : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/Neck.cs b/_ActiveRagdoll/BodyParts/Neck.cs new file mode 100644 index 0000000..31cd544 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/Neck.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class Neck : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/Torso.cs b/_ActiveRagdoll/BodyParts/Torso.cs new file mode 100644 index 0000000..3cf28df --- /dev/null +++ b/_ActiveRagdoll/BodyParts/Torso.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class Torso : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} |