Skip to content

Commit

Permalink
Merge pull request #286 from Revolutionary-Games/274-volume-multipliers
Browse files Browse the repository at this point in the history
Tweaked all volume multipliers
Fixes #274
  • Loading branch information
Moopli committed Feb 16, 2015
2 parents 34c4655 + 5db57a6 commit 2de8285
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/main_menu/setup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ local function setupSound()
local soundSource = SoundSourceComponent()
soundSource.ambientSoundSource = true
soundSource.autoLoop = true
soundSource.volumeMultiplier = 0.4
soundSource.volumeMultiplier = 0.8
ambientEntity:addComponent(soundSource)
soundSource:addSound("main-menu-theme-1", "main-menu-theme-1.ogg")
soundSource:addSound("main-menu-theme-2", "main-menu-theme-2.ogg")
Expand Down
2 changes: 1 addition & 1 deletion scripts/microbe_editor/setup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ local function setupSound()
local soundSource = SoundSourceComponent()
soundSource.autoLoop = true
soundSource.ambientSoundSource = true
soundSource.volumeMultiplier = 0.4
soundSource.volumeMultiplier = 0.6
ambientEntity:addComponent(soundSource)
-- Sound
soundSource:addSound("microbe-editor-theme-1", "microbe-editor-theme-1.ogg")
Expand Down
4 changes: 2 additions & 2 deletions scripts/microbe_stage/setup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ local function setupSound()
local soundSource = SoundSourceComponent()
soundSource.ambientSoundSource = true
soundSource.autoLoop = true
soundSource.volumeMultiplier = 0.12
soundSource.volumeMultiplier = 0.5
ambientEntity:addComponent(soundSource)
-- Sound
soundSource:addSound("microbe-theme-1", "microbe-theme-1.ogg")
Expand All @@ -422,7 +422,7 @@ local function setupSound()
soundSource:addSound("microbe-theme-7", "microbe-theme-7.ogg")
local ambientEntity2 = Entity("ambience2")
local soundSource = SoundSourceComponent()
soundSource.volumeMultiplier = 0.4
soundSource.volumeMultiplier = 0.3
soundSource.ambientSoundSource = true
ambientSound = soundSource:addSound("microbe-ambient", "soundeffects/microbe-ambience.ogg")
soundSource.autoLoop = true
Expand Down

0 comments on commit 2de8285

Please sign in to comment.