예제 #1
0
파일: Dragon.cs 프로젝트: FSISF/GGJ-2021-J
 public override void StateUpdate()
 {
     if (Dragon.CheckGround())
     {
         Dragon.Rigidbody2DThis.velocity = Vector2.zero;
         Dragon.SetState(eDragonState.Idle);
     }
 }