From 54c872fa42b1ba0fdbcfe812b80bb8eb0cfe108f Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Wed, 13 Mar 2024 17:37:47 +0800 Subject: *misc --- _ActiveRagdoll/BodyParts/HandLeft.cs | 12 ++++++++++++ _ActiveRagdoll/BodyParts/HandRight.cs | 12 ++++++++++++ _ActiveRagdoll/BodyParts/Head.cs | 12 ++++++++++++ _ActiveRagdoll/BodyParts/Hip.cs | 12 ++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 _ActiveRagdoll/BodyParts/HandLeft.cs create mode 100644 _ActiveRagdoll/BodyParts/HandRight.cs create mode 100644 _ActiveRagdoll/BodyParts/Head.cs create mode 100644 _ActiveRagdoll/BodyParts/Hip.cs (limited to '_ActiveRagdoll/BodyParts') diff --git a/_ActiveRagdoll/BodyParts/HandLeft.cs b/_ActiveRagdoll/BodyParts/HandLeft.cs new file mode 100644 index 0000000..5f92108 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/HandLeft.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class HandLeft : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/HandRight.cs b/_ActiveRagdoll/BodyParts/HandRight.cs new file mode 100644 index 0000000..cb78d06 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/HandRight.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class HandRight : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/Head.cs b/_ActiveRagdoll/BodyParts/Head.cs new file mode 100644 index 0000000..ce81442 --- /dev/null +++ b/_ActiveRagdoll/BodyParts/Head.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class Head : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} diff --git a/_ActiveRagdoll/BodyParts/Hip.cs b/_ActiveRagdoll/BodyParts/Hip.cs new file mode 100644 index 0000000..379fb1d --- /dev/null +++ b/_ActiveRagdoll/BodyParts/Hip.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class Hip : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} -- cgit v1.1-26-g67d0