コード例 #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();
     }
 }