public void ShootBallUp(float vel)
 {
     ShootBall(vel * ballSpeedFixed * targetBehavior.GetPhoneUp());
 }
Ejemplo n.º 2
0
 public void ShootBallUp()
 {
     ShootBall(ballSpeedFixed * targetBehavior.GetPhoneUp());
 }
Ejemplo n.º 3
0
 public void ShootBallUp(float swipe_vel)
 {
     ShootBall(swipe_vel * -1 * ballSpeedFixed * targetBehavior.GetPhoneUp());
 }