SettingsAreValid() public static method

public static SettingsAreValid ( ) : bool
return bool
示例#1
0
 internal static bool IsAssetServerSetUp()
 {
     if (InternalEditorUtility.HasTeamLicense())
     {
         return(ASEditorBackend.SettingsAreValid());
     }
     return(false);
 }
示例#2
0
 internal static bool IsAssetServerSetUp()
 {
     return(InternalEditorUtility.HasPro() && ASEditorBackend.SettingsAreValid());
 }
示例#3
0
 internal static bool IsAssetServerSetUp() =>
 (InternalEditorUtility.HasTeamLicense() && ASEditorBackend.SettingsAreValid());