UnityEditor.Unsupported.IsDeveloperBuildInternal C# (CSharp) Method

IsDeveloperBuildInternal() private method

private IsDeveloperBuildInternal ( ) : bool
return 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