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. 4
      Assets/Fungus/Audio/Scripts/Commands/PlaySound.cs

4
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;
@ -64,4 +64,4 @@ namespace Fungus
}
}
}
}

Loading…
Cancel
Save