예제 #1
0
 void FixedUpdate()
 {
     gravity.GroundControl(gameObject);
     if (Planet == null)
     {
         return;
     }
     else
     {
         gravity.Gravitation(this.gameObject, Planet);
     }
 }