OnReachedExit() public method

Called when this player reaches the level's exit.
public OnReachedExit ( ) : void
return void
示例#1
0
 /// <summary>
 /// Called when the player reaches the level's exit.
 /// </summary>
 private void OnExitReached()
 {
     Player.OnReachedExit();
     exitReachedSound.Play();
     if (gems.Count == 0)
     {
         reachedExit = true;
     }
 }
示例#2
0
 /// <summary>
 /// Called when the player reaches the level's exit.
 /// </summary>
 private void OnExitReached(int playerIndex)
 {
     Player.OnReachedExit(playerIndex);
     if (playerIndex == 0)
     {
         exitReachedSound.Play();
         reachedExit = true;
     }
 }
示例#3
0
 /// <summary>
 /// Called when the player reaches the level's exit.
 /// </summary>
 private void OnExitReached()
 {
     Player.OnReachedExit();
     exitReachedSound.Play();
     reachedExit = true;
 }
示例#4
0
 /// <summary>
 /// Called when the player reaches the level's exit.
 /// </summary>
 private void OnExitReached()
 {
     Player.OnReachedExit();
     reachedExit = true;
 }