public static void Alpha3_Down(TestByKey testByKey) { if (Input.GetKeyDown(KeyCode.Alpha3)) { testByKey(); } }
public static void Z_Down(TestByKey testByKey) { if (Input.GetKeyDown(KeyCode.Z)) { testByKey(); } }
public static void Return_Down(TestByKey testByKey) { if (Input.GetKeyDown(KeyCode.Return)) { testByKey(); } }
public static void DownArrow(TestByKey testByKey) { if (Input.GetKeyDown(KeyCode.DownArrow)) { testByKey(); } }
public static void Space_Down(TestByKey testByKey) { if (Input.GetKeyDown(KeyCode.Space)) { testByKey(); } }