Obsolete public static void Spawn (GameObject obj);

参数

obj生成的带有 NetworkIdentity 的游戏对象。

描述

在已准备就绪的所有客户端上生成指定的游戏对象。

这将导致新对象通过注册预制件实例化,或者通过自定义生成函数实例化。

//Attach this script to the GameObject you would like to be spawned.
//Attach a NetworkIdentity component to your GameObject. Click and drag the GameObject into the Assets directory so that it becomes a Prefab.
//The GameObject you assign in the Inspector spawns when the Client connects. To spawn a Prefab GameObject, use Instantiate first before spawning the GameObject.

using UnityEngine; using UnityEngine.Networking;

public class Example : NetworkBehaviour { //Assign the Prefab in the Inspector public GameObject m_MyGameObject; GameObject m_MyInstantiated;

void Start() { //Instantiate the Prefab m_MyInstantiated = Instantiate(m_MyGameObject); //Spawn the GameObject you assign in the Inspector NetworkServer.Spawn(m_MyInstantiated); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961