summaryrefslogtreecommitdiff
path: root/ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs')
-rw-r--r--ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs b/ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs
new file mode 100644
index 0000000..2afef1d
--- /dev/null
+++ b/ActiveRagdoll/Assets/TABG/Scripts/Data/SetAnimationByInput.cs
@@ -0,0 +1,29 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace Rigging.Data
+{
+
+ public class SetAnimationByInput : RiggingDataBase
+ {
+ private InputHandler input;
+
+ private AnimationHandler anim;
+
+ private StandingDataHandler standingData;
+
+ protected override void OnStart()
+ {
+ input = player.status.input;
+ anim = player.status.animation;
+ standingData = player.status.standingData;
+ }
+
+ private void Update()
+ {
+
+ }
+ }
+
+}