Version: 2018.4

PlayerSpawnMethod

enumeration

マニュアルに切り替える

説明

マルチプレイヤーゲームにおいて、プレイヤーオブジェクトを生成する場所を決めるための列挙体

using UnityEngine;
using UnityEngine.Networking;

public class PlayerSpawnMethodExample : MonoBehaviour { void Update() { //Press the space key to switch to spawning on a random spawn point if (Input.GetKeyDown(KeyCode.Space)) { //Check that the PlayerSpawnMethod is currently RoundRobin if (NetworkManager.singleton.playerSpawnMethod == PlayerSpawnMethod.RoundRobin) //Switch it to Random spawning if it is NetworkManager.singleton.playerSpawnMethod = PlayerSpawnMethod.Random; //Otherwise switch it to RoundRobin else NetworkManager.singleton.playerSpawnMethod = PlayerSpawnMethod.RoundRobin; } } }

変数

Randomプレイヤーの生成位置をランダムで決めます
RoundRobin次の生成位置でプレイヤーを生成します。