Example #1
0
 //カメラのズームイン処理---------------------------------------------------------------
 void CameraZoomIn(float Size)
 {
     if (InCount < Number_of_time)
     {
         _cameraControll.Zoom(InSpeed);
     }
     else
     {
         _cameraControll.ChangeOrthographicSize(Size);
     }
 }