UnityEngine.Networking.NetworkManager.OnDomainReload C# (CSharp) Method

OnDomainReload() static private method

static private OnDomainReload ( ) : void
return void
        internal static void OnDomainReload()
        {
            s_DomainReload = true;
        }

Usage Example

コード例 #1
0
 // this is invoked by the UnityEngine when a Mono Domain reload happens in the editor.
 // the transport layer has state in C++, so when the C# state is lost (on domain reload), the C++ transport layer must be shutown as well.
 static internal void UNetDomainReload()
 {
     NetworkManager.OnDomainReload();
 }