Skip to content

Commit 676c1ce

Browse files
authored
fix: reduce volume and overmodulation of main theme (#4298)
* fix: reduce volume and overmodulation of main theme * feat: use 0.5 as default music volume * chore: remove deprecated audio settings from default.cfg * fix: use lower quality level to reduce file size
1 parent d8f3a20 commit 676c1ce

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

engine/src/main/java/org/terasology/config/AudioConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class AudioConfig extends AutoConfig {
3535
public final Setting<Float> musicVolume =
3636
setting(
3737
type(Float.class),
38-
defaultValue(1.0f),
38+
defaultValue(0.5f),
3939
constraint(new NumberRangeConstraint<>(0.0f, 1.0f, true, true))
4040
);
4141

529 KB
Binary file not shown.

engine/src/main/resources/default.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
"mouseSensitivity": 0.25,
1414
"mouseYAxisInverted": false
1515
},
16-
"audio": {
17-
"soundVolume": 1.0,
18-
"musicVolume": 0.1,
19-
"disableSound": false
20-
},
2116
"rendering": {
2217
"pixelFormat": 24,
2318
"windowPosX": 379,

0 commit comments

Comments
 (0)