Пример #1
0
 public static void Alpha3_Down(TestByKey testByKey)
 {
     if (Input.GetKeyDown(KeyCode.Alpha3))
     {
         testByKey();
     }
 }
Пример #2
0
 public static void Z_Down(TestByKey testByKey)
 {
     if (Input.GetKeyDown(KeyCode.Z))
     {
         testByKey();
     }
 }
Пример #3
0
 public static void Return_Down(TestByKey testByKey)
 {
     if (Input.GetKeyDown(KeyCode.Return))
     {
         testByKey();
     }
 }
Пример #4
0
 public static void DownArrow(TestByKey testByKey)
 {
     if (Input.GetKeyDown(KeyCode.DownArrow))
     {
         testByKey();
     }
 }
Пример #5
0
 public static void Space_Down(TestByKey testByKey)
 {
     if (Input.GetKeyDown(KeyCode.Space))
     {
         testByKey();
     }
 }