From 0464810f2f83c86560c3422d664380d474cb3e56 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Mon, 15 Apr 2024 21:05:01 +0800 Subject: *misc --- .../Assets/TABG/Scripts/Input/InputHandler.cs | 60 ++++++++++++++++++---- 1 file changed, 51 insertions(+), 9 deletions(-) (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Input/InputHandler.cs') diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Input/InputHandler.cs b/ActiveRagdoll/Assets/TABG/Scripts/Input/InputHandler.cs index bae645b..d32d67d 100644 --- a/ActiveRagdoll/Assets/TABG/Scripts/Input/InputHandler.cs +++ b/ActiveRagdoll/Assets/TABG/Scripts/Input/InputHandler.cs @@ -1,18 +1,60 @@ +using Rigging.Camera; +using Rigging.Data; +using System; using System.Collections; using System.Collections.Generic; using UnityEngine; +using UnityEngine.Rendering; -public class InputHandler : MonoBehaviour +namespace Rigging.Inputs { - // Start is called before the first frame update - void Start() - { - - } - // Update is called once per frame - void Update() + public class InputHandler : MonoBehaviour { - + public Vector3 inputMovementDirection; + + public Vector3 lastInputDirection; + + public bool allowStrafe = true; + + private MovementDataHandler movementData; + + public bool isSpringting = false; + + private void Start() + { + movementData = GetComponentInChildren(); + } + + private void Update() + { + inputMovementDirection = Vector3.zero; + if (Input.GetKey(KeyCode.W)) + { + inputMovementDirection += movementData.groundedForward; + } + if (Input.GetKey(KeyCode.S)) + { + inputMovementDirection += movementData.groundedBack; + } + if (Input.GetKey(KeyCode.D) && allowStrafe) + { + inputMovementDirection += movementData.right; + } + if (Input.GetKey(KeyCode.A) && allowStrafe) + { + inputMovementDirection += movementData.left; + } + //if (Input.GetKey(KeyCode.LeftShift) && (!cameraMovement || !cameraMovement.ADS)) + //{ + // isSpringting = true; + //} + if (inputMovementDirection != Vector3.zero) + { + lastInputDirection = inputMovementDirection; + } + } + } + } -- cgit v1.1-26-g67d0