how do you add two keybinds to a keycode?
if (Input.GetKeyUp (KeyCode.UpArrow)) {
i want to pair the UpArrow with a W
how do you add two keybinds to a keycode?
if (Input.GetKeyUp (KeyCode.UpArrow)) {
i want to pair the UpArrow with a W
something likeā¦
if ((Input.GetKeyUp (KeyCode.UpArrow)) || (Input.GetKeyUp (KeyCode.W)))
{