diff options
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Player.cs')
-rw-r--r-- | ActiveRagdoll/Assets/TABG/Scripts/Player.cs | 6 |
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>(); |