Exemplo n.º 1
0
 // Start dropping current dot down to this space's screen position
 public void DropDot(float dropSpeed)
 {
     if (currentDot.IsDropping)
     {
         currentDot.AddWaypoint(new Waypoint(screenPosition));
     }
     currentDot.Drop(dropSpeed);
 }