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.
33 lines
644 B
33 lines
644 B
10 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace Fungus.Script
|
||
|
{
|
||
|
[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.";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|