add attract_mode volume to config

This commit is contained in:
Anthony Samms
2025-11-01 14:11:48 -04:00
parent e477c86c6a
commit be138d4a50
2 changed files with 2 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ sound = 1.0
music = 1.0 music = 1.0
voice = 1.0 voice = 1.0
hitsound = 1.0 hitsound = 1.0
attract_mode = 1.0
[video] [video]
screen_width = 1280 screen_width = 1280

View File

@@ -75,6 +75,7 @@ class VolumeConfig(TypedDict):
music: float music: float
voice: float voice: float
hitsound: float hitsound: float
attract_mode: float
class VideoConfig(TypedDict): class VideoConfig(TypedDict):
screen_width: int screen_width: int