Hi
I want to set up an Input system to be able to go to the third Image when I exceed to press 1 time on my keyboard I am limited in one time
if (Input.GetKeyDown (KeyCode.DownArrow)) {
AudioSourceSelect.Play ();
Image1.SetActive (false);
Image2.SetActive (true);
}
the rest I don’t know how to do