mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
* - render partial sprites on the front side of a portal for actors behind it.
This commit is contained in:
parent
ca95371a27
commit
51991ef22d
2 changed files with 10 additions and 1 deletions
|
@ -376,5 +376,6 @@ inline float Dist2(float x1,float y1,float x2,float y2)
|
|||
|
||||
void gl_SetDynSpriteLight(AActor *self, float x, float y, float z, subsector_t *subsec);
|
||||
void gl_SetDynSpriteLight(AActor *actor, particle_t *particle);
|
||||
void gl_RenderActorsInPortal(FGLLinePortal *glport);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -214,7 +214,15 @@ void GLWall::PutPortal(int ptype)
|
|||
|
||||
case PORTALTYPE_LINETOLINE:
|
||||
portal=GLPortal::FindPortal(lineportal);
|
||||
if (!portal) portal=new GLLineToLinePortal(lineportal);
|
||||
if (!portal)
|
||||
{
|
||||
line_t *otherside = lineportal->lines[0]->mDestination;
|
||||
if (otherside != NULL)
|
||||
{
|
||||
gl_RenderActorsInPortal(linePortalToGL[otherside->portalindex]);
|
||||
}
|
||||
portal = new GLLineToLinePortal(lineportal);
|
||||
}
|
||||
portal->AddLine(this);
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue