You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
672 B
34 lines
672 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
namespace Fungus.Script |
|
{ |
|
[CommandCategory("Audio")] |
|
[CommandName("Set Music Volume")] |
|
[HelpText("Sets the game music volume level.")] |
|
public class SetMusicVolume : FungusCommand |
|
{ |
|
[Range(0,1)] |
|
public float volume = 1; |
|
|
|
[Range(0,30)] |
|
public float fadeDuration; |
|
|
|
public override void OnEnter() |
|
{ |
|
MusicController musicController = MusicController.GetInstance(); |
|
if (musicController != null) |
|
{ |
|
musicController.SetMusicVolume(volume, fadeDuration); |
|
} |
|
|
|
Continue(); |
|
} |
|
|
|
public override string GetSummary() |
|
{ |
|
return "Set to " + volume + " over " + fadeDuration + " seconds."; |
|
} |
|
} |
|
|
|
} |