コード例 #1
0
ファイル: Player.cs プロジェクト: DimSumIsTheBest/SnakeAttack
 private void Update()
 {
     if(tweener.IsDone())
     {
         UpdateInput();
         if(gridTransform.CanMoveTo(direction))
         {
             UpdateGrowing();
             UpdateMovement();
         }
     }
     UpdateDebug();
 }