コード例 #1
0
    /// <summary>
    /// Call this to start the process of throwing the ball
    /// </summary>
    /// <returns><c>false</c> so that this player is no longer the ball carrier.</returns>
    private bool ThrowBall()
    {
        ballBehavior.Pass(transform, otherPlayer);

        return(false);
    }