Waiting for vylion

This commit is contained in:
falc@null.net 2016-10-29 15:53:57 +02:00
parent ab74af8938
commit 1fe2932a3c

View file

@ -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);
}
}