SettingsAreValid() public static method

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