- scriptified the TimeFreezer powerup.
This commit is contained in:
parent
7fd35069d5
commit
15f30886cd
5 changed files with 143 additions and 129 deletions
|
|
@ -1852,6 +1852,15 @@ void S_PauseSound (bool notmusic, bool notsfx)
|
|||
}
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(DObject, S_PauseSound)
|
||||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_BOOL(notmusic);
|
||||
PARAM_BOOL(notsfx);
|
||||
S_PauseSound(notmusic, notsfx);
|
||||
return 0;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
// S_ResumeSound
|
||||
|
|
@ -1873,6 +1882,14 @@ void S_ResumeSound (bool notsfx)
|
|||
}
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(DObject, S_ResumeSound)
|
||||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_BOOL(notsfx);
|
||||
S_ResumeSound(notsfx);
|
||||
return 0;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
// S_SetSoundPaused
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue