- Fixed: Masked mid textures should get their light level from the frontsector they reference,

not from the sector they appear in.

SVN r3935 (trunk)
This commit is contained in:
Randy Heit 2012-11-03 02:50:33 +00:00
parent ecf700b47b
commit f8c1d5d520
1 changed files with 14 additions and 1 deletions

View File

@ -2427,7 +2427,20 @@ void R_StoreWallRange (int start, int stop)
}
ds_p->light = rw_light;
ds_p->lightstep = rw_lightstep;
// Masked midtextures should get the light level from the sector they reference,
// not from the current subsector, which is what the current wallshade value
// comes from. We make an exeption for polyobjects, however, since their "home"
// sector should be whichever one they move into.
if (curline->sidedef->Flags & WALLF_POLYOBJ)
{
ds_p->shade = wallshade;
}
else
{
ds_p->shade = LIGHT2SHADE(curline->sidedef->GetLightLevel(foggy, curline->frontsector->lightlevel)
+ r_actualextralight);
}
if (ds_p->bFogBoundary || ds_p->maskedtexturecol != -1)
{