From eab47305629d96d19626e10b649ba4247d1f55f5 Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Sat, 23 Dec 2023 21:20:31 +0000
Subject: [PATCH] Added loading screen, moved tilemap generation to coroutine
---
Assets/Scripts/Enums/SoundNames.cs | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/Assets/Scripts/Enums/SoundNames.cs b/Assets/Scripts/Enums/SoundNames.cs
index 4c49e15..8f8b201 100644
--- a/Assets/Scripts/Enums/SoundNames.cs
+++ b/Assets/Scripts/Enums/SoundNames.cs
@@ -10,23 +10,24 @@
None = 0,
#region music
- MusicHappy,
+ MusicHappy = 1,
+ MusicMainMenu = 8,
#endregion
#region player sounds
- PlayerDeathSound,
- PlayerHit,
+ PlayerDeathSound = 2,
+ PlayerHit = 3,
#endregion
#region SFX
- Money,
- ButtonOnHover,
- ButtonOnClick,
- ButtonOnSave,
+ Money = 4,
+ ButtonOnHover = 5,
+ ButtonOnClick = 6,
+ ButtonOnSave = 7,
#endregion
}
--
Gitblit v1.10.0