コード例 #1
0
ファイル: Ground.cs プロジェクト: turbomates/gop-jumper
 public void Land()
 {
     if (!isLanded)
     {
         isLanded = true;
         cameraFollow.ChangeCameraLowestPositionY(transform.position.y);
         game.FinishLevel();
     }
 }