UnityEngine.NetworkView.INTERNAL_CALL_SetScope C# (CSharp) 메소드

INTERNAL_CALL_SetScope() 개인적인 메소드

private INTERNAL_CALL_SetScope ( NetworkView self, NetworkPlayer &player, bool relevancy ) : bool
self NetworkView
player NetworkPlayer
relevancy bool
리턴 bool
        private static extern bool INTERNAL_CALL_SetScope(NetworkView self, ref NetworkPlayer player, bool relevancy);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public bool SetScope(NetworkPlayer player, bool relevancy)
 {
     return(NetworkView.INTERNAL_CALL_SetScope(this, ref player, relevancy));
 }