Added GZDoom version of SpriteAngle and SpriteRotation.

This commit is contained in:
Major Cooke 2016-07-28 16:47:04 -05:00 committed by Christoph Oelckers
parent 50765f8b79
commit 36705b0f04
1 changed files with 5 additions and 1 deletions

View File

@ -722,7 +722,11 @@ void GLSprite::Process(AActor* thing, sector_t * sector, int thruportal)
{ {
bool mirror; bool mirror;
DAngle ang = (thingpos - ViewPos).Angle(); DAngle ang = (thingpos - ViewPos).Angle();
FTextureID patch = gl_GetSpriteFrame(spritenum, thing->frame, -1, (ang - thing->Angles.Yaw).BAMs(), &mirror); FTextureID patch;
if (thing->flags7 & MF7_SPRITEANGLE)
patch = gl_GetSpriteFrame(spritenum, thing->frame, -1, (thing->SpriteAngle).BAMs(), &mirror);
else
patch = gl_GetSpriteFrame(spritenum, thing->frame, -1, (ang - (thing->Angles.Yaw + thing->SpriteRotation)).BAMs(), &mirror);
if (!patch.isValid()) return; if (!patch.isValid()) return;
int type = thing->renderflags & RF_SPRITETYPEMASK; int type = thing->renderflags & RF_SPRITETYPEMASK;
gltexture = FMaterial::ValidateTexture(patch, (type == RF_FACESPRITE), false); gltexture = FMaterial::ValidateTexture(patch, (type == RF_FACESPRITE), false);