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.
43 lines
787 B
43 lines
787 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
namespace Fungus |
|
{ |
|
[CommandInfo("Audio", |
|
"Play Sound", |
|
"Plays a sound effect. Multiple sound effects can play at the same time.")] |
|
public class PlaySound : Command |
|
{ |
|
public AudioClip soundClip; |
|
|
|
[Range(0,1)] |
|
public float volume = 1; |
|
|
|
public override void OnEnter() |
|
{ |
|
MusicController musicController = MusicController.GetInstance(); |
|
if (musicController != null) |
|
{ |
|
musicController.PlaySound(soundClip, volume); |
|
} |
|
|
|
Continue(); |
|
} |
|
|
|
public override string GetSummary() |
|
{ |
|
if (soundClip == null) |
|
{ |
|
return "Error: No music clip selected"; |
|
} |
|
|
|
return soundClip.name; |
|
} |
|
|
|
public override Color GetButtonColor() |
|
{ |
|
return new Color32(242, 209, 176, 255); |
|
} |
|
} |
|
|
|
} |