IsDeveloperBuildInternal() private method

private IsDeveloperBuildInternal ( ) : bool
return bool
コード例 #1
0
 public static bool IsDeveloperBuild()
 {
     if (Unsupported.IsDeveloperBuildInternal())
     {
         return(!Unsupported.s_FakeNonDeveloperBuild);
     }
     return(false);
 }
コード例 #2
0
ファイル: Unsupported.cs プロジェクト: zuohu/UnityDecompiled
 public static bool IsDeveloperBuild()
 {
     return(Unsupported.IsDeveloperBuildInternal() && !Unsupported.s_FakeNonDeveloperBuild);
 }