SettingsAreValid() public static méthode

public static SettingsAreValid ( ) : bool
Résultat bool
Exemple #1
0
 internal static bool IsAssetServerSetUp()
 {
     if (InternalEditorUtility.HasTeamLicense())
     {
         return(ASEditorBackend.SettingsAreValid());
     }
     return(false);
 }
 internal static bool IsAssetServerSetUp()
 {
     return(InternalEditorUtility.HasPro() && ASEditorBackend.SettingsAreValid());
 }
Exemple #3
0
 internal static bool IsAssetServerSetUp() =>
 (InternalEditorUtility.HasTeamLicense() && ASEditorBackend.SettingsAreValid());