Browse Source

Fixed Usfxr sounds not playing in editor in Unity 5 #98

master
chrisgregan 10 years ago
parent
commit
3eeca83443
  1. 1
      Assets/Fungus/Thirdparty/Usfxr/Scripts/SfxrAudioPlayer.cs

1
Assets/Fungus/Thirdparty/Usfxr/Scripts/SfxrAudioPlayer.cs vendored

@ -56,6 +56,7 @@ public class SfxrAudioPlayer : MonoBehaviour {
soundSource.volume = 1f;
soundSource.pitch = 1f;
soundSource.priority = 128;
soundSource.Play();
}
void Update() {

Loading…
Cancel
Save