mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed: shadow alpha for translucent objects was not correct in the hardware renderer.
This commit is contained in:
parent
8547a55677
commit
5273ef360e
1 changed files with 2 additions and 2 deletions
|
@ -801,7 +801,7 @@ void HWSprite::Process(HWDrawInfo *di, AActor* thing, sector_t * sector, area_t
|
|||
z = thing->floorz;
|
||||
}
|
||||
// [RH] Make floatbobbing a renderer-only effect.
|
||||
else if (thing->flags2 & MF2_FLOATBOB)
|
||||
else
|
||||
{
|
||||
float fz = thing->GetBobOffset(vp.TicFrac);
|
||||
z += fz;
|
||||
|
@ -1135,7 +1135,7 @@ void HWSprite::Process(HWDrawInfo *di, AActor* thing, sector_t * sector, area_t
|
|||
{
|
||||
RenderStyle = STYLE_Stencil;
|
||||
ThingColor = MAKEARGB(255, 0, 0, 0);
|
||||
trans = 0.5f;
|
||||
trans *= 0.5f;
|
||||
hw_styleflags = STYLEHW_NoAlphaTest;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue