Skip to content

Commit

Permalink
final build
Browse files Browse the repository at this point in the history
  • Loading branch information
alixhami committed Jul 27, 2017
1 parent 3ad4b3c commit 3fbb85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions Assets/Scripts/GameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,7 @@ IEnumerator ChangeTracks (AudioClip track) {
music.clip = track;
music.volume = maxMusicVolume;
music.Play();
//music.volume = 0f;
//audioVolume = music.volume;

//while (music.volume < maxMusicVolume) {
// audioVolume += musicFadeSpeed;
// music.volume = audioVolume;
// yield return new WaitForSeconds(0.01f);
//}

}

public void GameOver (string score, string feedback) {
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/LimoGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void Play (bool survival) {
CreateLimo (fastSpawnInterval, limoDestinations[0]);
} else {
stopwatch.ResetTime ();
StartCoroutine(CreateMultipleLimos(slowSpawnInterval, 37f));
StartCoroutine(CreateMultipleLimos(slowSpawnInterval, 38f));
}
}

Expand Down

0 comments on commit 3fbb85b

Please sign in to comment.