public static string GetVerboseWarning(GameGrowthEnvironment environment) { if (environment == GameGrowthEnvironment.Sandbox) { return(k_GameGrowthInSandboxWarning); } else if (DeltaDNAConfigurationHelper.IsInDevelopmentMode()) { return(k_DeltaDnaInDevWarning); } return(null); }
public static void LogStatus(GameGrowthEnvironment environment, bool warningOnly = false) { if (environment == GameGrowthEnvironment.Sandbox) { Debug.LogWarning(k_GameGrowthInSandboxMessage); } else { if (DeltaDNAConfigurationHelper.IsInDevelopmentMode()) { Debug.LogWarning(k_DeltaDnaInDevMessage); } else if (!warningOnly) { Debug.Log(k_GameGrowthInStoreMessage); } } }