MonoBehaviour
- Awake
- CancelInvoke
- FixedUpdate
- InvokeRepeating
- Invoke
- IsInvoking
- LateUpdate
- OnApplicationFocus
- OnApplicationPause
- OnApplicationQuit
- OnBecameInvisible
- OnBecameVisible
- OnCollisionEnter
- OnCollisionExit
- OnCollisionStay
- OnConnectedToServer
- OnControllerColliderHit
- OnDestroy
- OnDisable
- OnDisconnectedFromServer
- OnDrawGizmosSelected
- OnDrawGizmos
- OnEnable
- OnFailedToConnectToM...
- OnFailedToConnect
- OnGUI
- OnJointBreak
- OnLevelWasLoaded
- OnMasterServerEvent
- OnMouseDown
- OnMouseDrag
- OnMouseEnter
- OnMouseExit
- OnMouseOver
- OnMouseUpAsButton
- OnMouseUp
- OnNetworkInstantiate
- OnParticleCollision
- OnPlayerConnected
- OnPlayerDisconnected
- OnPostRender
- OnPreCull
- OnPreRender
- OnRenderImage
- OnRenderObject
- OnSerializeNetworkView
- OnServerInitialized
- OnTriggerEnter
- OnTriggerExit
- OnTriggerStay
- OnWillRenderObject
- Reset
- StartCoroutine
- Start
- StopAllCoroutines
- StopCoroutine
- Update
- useGUILayout
MonoBehaviour.OnNetworkInstantiate 当网络实例
function OnNetworkInstantiate (info : NetworkMessageInfo) : void
Description描述
Called on objects which have been network instantiated with Network.Instantiate
当一个物体使用Network.Instantiate进行网络初始化时调用。
This is useful for disabling or enabling components for objects which have been instantiated and their behavior depends on if they are locally or remotely owned.
这对于禁用或启用一个已经初始化的物体组件来说是非常有用的,它们的行为取决于它们是在本地还是在远端。
Note: The networkView attribute inside the NetworkMessageInfo is not used inside OnNetworkInstantiate
注意: 在NetworkMessageInfo里的networkView属性不能在OnNetworkInstantiate里使用。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void OnNetworkInstantiate(NetworkMessageInfo info) {
Debug.Log("New object instantiated by " + info.sender);
}
}
function OnNetworkInstantiate (info : NetworkMessageInfo ) {
Debug.Log ("New object instantiated by " + info.sender);
}
最后修改:2011年1月2日 Sunday 18:55