feat: minecart sound effects

This commit is contained in:
Fireblade
2026-05-08 03:41:44 -04:00
parent a8f31211bf
commit d82e1afd59
16 changed files with 388 additions and 53 deletions
@@ -9,15 +9,18 @@ private:
{
eControl_Music,
eControl_Sound,
eControl_CaveSounds
eControl_CaveSounds,
eControl_MinecartSounds
};
UIControl_Slider m_sliderMusic, m_sliderSound; // Sliders
UIControl_CheckBox m_checkboxCaveSounds; // Checkboxes
UIControl_CheckBox m_checkboxMinecartSounds;
UI_BEGIN_MAP_ELEMENTS_AND_NAMES(UIScene)
UI_MAP_ELEMENT( m_sliderMusic, "Music")
UI_MAP_ELEMENT( m_sliderSound, "Sound")
UI_MAP_ELEMENT( m_checkboxCaveSounds, "CaveSounds")
UI_MAP_ELEMENT( m_checkboxMinecartSounds, "MinecartSounds")
UI_END_MAP_ELEMENTS_AND_NAMES()
public: