- Added A_SetTics.
SVN r3851 (trunk)
This commit is contained in:
parent
3bfe7b74f4
commit
a94cf9d548
2 changed files with 15 additions and 4 deletions
|
|
@ -4449,3 +4449,17 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_RadiusGive)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
// A_SetTics
|
||||
//
|
||||
//==========================================================================
|
||||
|
||||
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_SetTics)
|
||||
{
|
||||
ACTION_PARAM_START(1);
|
||||
ACTION_PARAM_INT(tics_to_set, 0);
|
||||
|
||||
self->tics = tics_to_set;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue