summaryrefslogtreecommitdiff
path: root/ActiveRagdoll/Assets/TABG/Scripts/Player.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2024-04-08 17:57:53 +0800
committerchai <215380520@qq.com>2024-04-08 17:57:53 +0800
commitd3ff1803cd461fb686065ea6459e489a101e8fb3 (patch)
treedcbcbb7d2a106c1b779672452b520d86d37a282a /ActiveRagdoll/Assets/TABG/Scripts/Player.cs
parent7365df818973a24bd29aeb725f6113f0a82cb9c6 (diff)
+ animation
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Player.cs')
-rw-r--r--ActiveRagdoll/Assets/TABG/Scripts/Player.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Player.cs b/ActiveRagdoll/Assets/TABG/Scripts/Player.cs
index 897d10f..b2168df 100644
--- a/ActiveRagdoll/Assets/TABG/Scripts/Player.cs
+++ b/ActiveRagdoll/Assets/TABG/Scripts/Player.cs
@@ -24,6 +24,10 @@ namespace Rigging
public StepHandler step;
public Strength strength;
+
+ public InputHandler input;
+
+ public AnimationHandler animation;
}
[Serializable]
@@ -76,6 +80,8 @@ namespace Rigging
status.body = GetComponentInChildren<RigidbodyHolder>();
status.step = GetComponentInChildren<StepHandler>();
status.strength = GetComponentInChildren<Strength>();
+ status.input = GetComponentInChildren<InputHandler>();
+ status.animation = GetComponentInChildren<AnimationHandler>();
actions = new Actions();
actions.standing = GetComponentInChildren<Standing>();