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