Skip to content
This repository has been archived by the owner on Mar 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'fix-for-real-this-time'
Browse files Browse the repository at this point in the history
  • Loading branch information
synap5e committed Jun 23, 2015
2 parents ff70d4a + 85d1961 commit 26d8003
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Assets/Maya/Player Model/Hands_To_Unity.fbm.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Assets/Scripts/AudioController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ public void changeVolume(){
float musicVolume = GetComponent<SettingsController>().musicVolume/10f;
foreach (AudioSource a in audiosourceDic.Keys)
a.volume = masterVolume * soundEffectsVolume * audiosourceDic[a];
musicSource.volume = masterVolume * musicVolume;
if (musicSource)
musicSource.volume = masterVolume * musicVolume;
}


Expand Down

0 comments on commit 26d8003

Please sign in to comment.