tune(audio): efectes a 48000 Hz u8 mono i ajust de volums per defecte

This commit is contained in:
2026-05-21 19:58:45 +02:00
parent 66faa07c00
commit ca6f863c0f
9 changed files with 3 additions and 3 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3 -3
View File
@@ -9,11 +9,11 @@
namespace Defaults::Audio { namespace Defaults::Audio {
constexpr bool ENABLED = true; // Audio habilitado por defecto constexpr bool ENABLED = true; // Audio habilitado por defecto
constexpr float VOLUME = 1.0F; // Volumen maestro (0..1) constexpr float VOLUME = 1.0F; // Volumen maestro (0..1) — 100%
constexpr bool MUSIC_ENABLED = true; // Música habilitada constexpr bool MUSIC_ENABLED = true; // Música habilitada
constexpr float MUSIC_VOLUME = 0.8F; // Volumen música (0..1) constexpr float MUSIC_VOLUME = 1.0F; // Volumen música (0..1) — 100%
constexpr bool SOUND_ENABLED = true; // Efectos habilitados constexpr bool SOUND_ENABLED = true; // Efectos habilitados
constexpr float SOUND_VOLUME = 1.0F; // Volumen efectos (0..1) constexpr float SOUND_VOLUME = 0.25F; // Volumen efectos (0..1) — 25%
constexpr float VOLUME_STEP = 0.05F; // Paso UI (5%) constexpr float VOLUME_STEP = 0.05F; // Paso UI (5%)
constexpr int FREQUENCY = 48000; // Frecuencia de muestreo (Hz) constexpr int FREQUENCY = 48000; // Frecuencia de muestreo (Hz)
constexpr int CROSSFADE_MS = 1500; // Crossfade por defecto entre pistas (ms) constexpr int CROSSFADE_MS = 1500; // Crossfade por defecto entre pistas (ms)