コード例 #1
0
ファイル: Enemy.cs プロジェクト: shieldgenerator7/NewtonTCPIP
 private void OnCollisionEnter(Collision collision)
 {
     if (collision.gameObject.CompareTag("Player") && !dead)
     {
         CheckpointChecker.respawnPlayer(collision.gameObject);
         transform.position = startPos;
         onCollisionExtra();
     }
     otherCollisionExtra(collision);
 }
コード例 #2
0
 /// <summary>
 /// Resets the player's position after he fails
 /// </summary>
 public void respawn()
 {
     CheckpointChecker.respawnPlayer(gameObject);
 }