UnityEditor.Unsupported.IsDeveloperBuildInternal C# (CSharp) 메소드

IsDeveloperBuildInternal() 개인적인 메소드

private IsDeveloperBuildInternal ( ) : bool
리턴 bool
        private static extern bool IsDeveloperBuildInternal();
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public static bool IsDeveloperBuild()
 {
     if (Unsupported.IsDeveloperBuildInternal())
     {
         return(!Unsupported.s_FakeNonDeveloperBuild);
     }
     return(false);
 }
All Usage Examples Of UnityEditor.Unsupported::IsDeveloperBuildInternal