Example #1
0
 public void SetDropVelocity(Vector2 velocity)
 {
     _body.ApplyVelocity(velocity);
 }
Example #2
0
 private void OnKick(Vector2 power)
 {
     _body.ApplyVelocity(new Vector2(-power.x * LookDirection, power.y));
 }