From ff111d95db1878f9c35d99e7d4fa0b4d9a0de37c Mon Sep 17 00:00:00 2001 From: Carson Katri Date: Sat, 12 Jun 2021 00:30:21 -0400 Subject: Restructure scripts, improve locomotion, and add movement indicators --- Assets/Scripts/AIController.cs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Assets/Scripts/AIController.cs (limited to 'Assets/Scripts/AIController.cs') diff --git a/Assets/Scripts/AIController.cs b/Assets/Scripts/AIController.cs deleted file mode 100644 index 9cb20fb..0000000 --- a/Assets/Scripts/AIController.cs +++ /dev/null @@ -1,16 +0,0 @@ -using UnityEngine; - -public class AIController : MonoBehaviour -{ - private void Update() - { - if (Input.GetKey(KeyCode.H)) - { - transform.position += Vector3.right * 0.01f; - } - else if (Input.GetKey(KeyCode.F)) - { - transform.position += Vector3.left * 0.01f; - } - } -} \ No newline at end of file -- cgit v1.2.3