Added A_StopAllSounds.

This commit is contained in:
Major Cooke 2020-02-29 12:10:40 -06:00 committed by Christoph Oelckers
commit 55284d46bf
7 changed files with 47 additions and 1 deletions

View file

@ -142,6 +142,14 @@ DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_StopSound, NativeStopSound)
return 0;
}
DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_StopAllSounds, S_StopAllActorSounds)
{
PARAM_SELF_PROLOGUE(AActor);
S_StopAllActorSounds(self);
return 0;
}
DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_SoundPitch, S_ChangeActorSoundPitch)
{
PARAM_SELF_PROLOGUE(AActor);