- skriptified the skybox actors.
- fixed code generation for internal pointed arrays, they were missing a pointer dereference.
This commit is contained in:
parent
a9ef73528d
commit
6dc1bb8475
7 changed files with 182 additions and 177 deletions
|
|
@ -676,6 +676,12 @@ unsigned P_GetSkyboxPortal(AActor *actor)
|
|||
return i;
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(FSectorPortal, GetSkyboxPortal)
|
||||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_OBJECT(actor, AActor);
|
||||
ACTION_RETURN_INT(P_GetSkyboxPortal(actor));
|
||||
}
|
||||
//============================================================================
|
||||
//
|
||||
// P_GetPortal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue