From 1fe2932a3cc2a5a718965645231fadc083b1a4be Mon Sep 17 00:00:00 2001 From: "falc@null.net" Date: Sat, 29 Oct 2016 15:53:57 +0200 Subject: [PATCH] Waiting for vylion --- Assets/InputManagerScript.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Assets/InputManagerScript.cs b/Assets/InputManagerScript.cs index 87625c8..e8413ef 100644 --- a/Assets/InputManagerScript.cs +++ b/Assets/InputManagerScript.cs @@ -110,6 +110,10 @@ public class InputManagerScript : MonoBehaviour { if (Input.GetKeyUp (KeyCode.D)) { Color lol = i1.color; i1.color = new Color (1f, 0f, 0f); + i2.color = new Color (1f, 1f, 1f); + } else if (Input.GetKeyUp (KeyCode.A)) { + i2.color = new Color (1f, 0f, 0f); + i1.color = new Color (1f, 1f, 1f); } }