Exemple #1
0
	public void ReceiveBall(Ball ball) {
		//Debug.Log("Recieve " + ball);
		flyingBallCount--;

		// First Recieved Ball
		if (firstFlooredBall == null) {
			firstFlooredBall = ball;
		} else {
			ball.MoveToOtherBall(firstFlooredBall);
		}
	}