コード例 #1
0
ファイル: game.cs プロジェクト: 2545493686/Rolling-Square
 // Update is called once per frame
 void Update()
 {
     if (Input.GetKeyDown(KeyCode.Z))
     {
         map.Del();
     }
     if (Input.GetKey(KeyCode.X))
     {
         map.NewLine(true);
     }
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: 2545493686/Rolling-Square
 void Old()
 {
     map.Del();
 }