UnityEngine.NetworkView.INTERNAL_CALL_SetScope C# (CSharp) Method

INTERNAL_CALL_SetScope() private method

private INTERNAL_CALL_SetScope ( NetworkView self, NetworkPlayer &player, bool relevancy ) : bool
self NetworkView
player NetworkPlayer
relevancy bool
return 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));
 }