diff --git a/.vscode/settings.json b/.vscode/settings.json index 96cff9f79..175af935e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -51,7 +51,7 @@ "temp/": true, "Temp/": true }, - "dotnet.defaultSolution": "HeavenStudio.sln", + "dotnet.defaultSolution": "HeavenStudioNightlyLogo.sln", "files.autoSave": "off", "editor.inlineSuggest.showToolbar": "always", "editor.definitionLinkOpensInPeek": true, diff --git a/Assets/Resources/Prefabs/Common/MainMenu/Logo.prefab b/Assets/Resources/Prefabs/Common/MainMenu/Logo.prefab index d59e35b4f..f660ecd0b 100644 --- a/Assets/Resources/Prefabs/Common/MainMenu/Logo.prefab +++ b/Assets/Resources/Prefabs/Common/MainMenu/Logo.prefab @@ -162,7 +162,7 @@ SpriteRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 9 - m_Sprite: {fileID: -7339447033508519927, guid: c7a7c198fa143ea4f99a0b134dc5d17f, type: 3} + m_Sprite: {fileID: 4223198500495046962, guid: c7a7c198fa143ea4f99a0b134dc5d17f, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 diff --git a/Assets/Scripts/TitleManager.cs b/Assets/Scripts/TitleManager.cs index e53624f1f..25237b170 100644 --- a/Assets/Scripts/TitleManager.cs +++ b/Assets/Scripts/TitleManager.cs @@ -60,6 +60,9 @@ namespace HeavenStudio [SerializeField] private GameObject[] otherHiddenOnMouse; //static bool firstBoot = true; Unused value - Marc + [Header("Nightly Menu Stuff")] + [SerializeField] private RawImage topGradient; + private AudioSource musicSource; private double songPosBeat; @@ -103,10 +106,13 @@ namespace HeavenStudio #if HEAVENSTUDIO_PROD versionText.text = GlobalGameManager.friendlyReleaseName; + topGradient.color = new Color(0.9490197f, 0.3607843f, 0.1058824f, 1f); #elif UNITY_EDITOR versionText.text = "EDITOR"; + topGradient.color = new Color(0.9490197f, 0.3607843f, 0.1058824f, 1f); #else versionText.text = Application.buildGUID.Substring(0, 8) + " " + AppInfo.Date.ToString("dd/MM/yyyy hh:mm:ss"); + topGradient.color = new Color(0.764706f, 0.3686275f, 0.7411765f, 1f); #endif } diff --git a/ProjectSettings/BurstAotSettings_StandaloneOSX.json b/ProjectSettings/BurstAotSettings_StandaloneOSX.json new file mode 100644 index 000000000..56f4abebb --- /dev/null +++ b/ProjectSettings/BurstAotSettings_StandaloneOSX.json @@ -0,0 +1,16 @@ +{ + "MonoBehaviour": { + "Version": 4, + "EnableBurstCompilation": true, + "EnableOptimisations": true, + "EnableSafetyChecks": false, + "EnableDebugInAllBuilds": false, + "UsePlatformSDKLinker": false, + "CpuMinTargetX32": 0, + "CpuMaxTargetX32": 0, + "CpuMinTargetX64": 0, + "CpuMaxTargetX64": 0, + "CpuTargetsX64": 72, + "OptimizeFor": 0 + } +}