Browse Source

No Music clip selected error

Changed to 'No sound clip selected', could make both more universal and say no audio clip selected.
master
kalenobrien15 9 years ago
parent
commit
708aa260a2
  1. 2
      Assets/Fungus/Audio/Scripts/Commands/PlaySound.cs

2
Assets/Fungus/Audio/Scripts/Commands/PlaySound.cs

@ -52,7 +52,7 @@ namespace Fungus
{
if (soundClip == null)
{
return "Error: No music clip selected";
return "Error: No sound clip selected";
}
return soundClip.name;

Loading…
Cancel
Save