mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
CON: Add projectile workslike flag PROJECTILE_NOSETOWNERSHADE = 0x00200000 = 2097152 that prevents actors from inheriting a projectile's shade when shooting it.
git-svn-id: https://svn.eduke32.com/eduke32@5106 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
257e271162
commit
806bbe6d71
2 changed files with 5 additions and 2 deletions
|
@ -297,6 +297,7 @@ enum pflags_t {
|
||||||
PROJECTILE_FORCEIMPACT = 0x00040000,
|
PROJECTILE_FORCEIMPACT = 0x00040000,
|
||||||
PROJECTILE_REALCLIPDIST = 0x00080000,
|
PROJECTILE_REALCLIPDIST = 0x00080000,
|
||||||
PROJECTILE_ACCURATE = 0x00100000,
|
PROJECTILE_ACCURATE = 0x00100000,
|
||||||
|
PROJECTILE_NOSETOWNERSHADE = 0x00200000,
|
||||||
PROJECTILE_TYPE_MASK = PROJECTILE_HITSCAN|PROJECTILE_RPG|PROJECTILE_KNEE|PROJECTILE_BLOOD,
|
PROJECTILE_TYPE_MASK = PROJECTILE_HITSCAN|PROJECTILE_RPG|PROJECTILE_KNEE|PROJECTILE_BLOOD,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -894,7 +894,8 @@ static int32_t A_ShootCustom(const int32_t i, const int32_t atwith, int16_t sa,
|
||||||
switch (proj->workslike & PROJECTILE_TYPE_MASK)
|
switch (proj->workslike & PROJECTILE_TYPE_MASK)
|
||||||
{
|
{
|
||||||
case PROJECTILE_HITSCAN:
|
case PROJECTILE_HITSCAN:
|
||||||
if (s->extra >= 0) s->shade = proj->shade;
|
if (!(proj->workslike & PROJECTILE_NOSETOWNERSHADE) && s->extra >= 0)
|
||||||
|
s->shade = proj->shade;
|
||||||
|
|
||||||
if (p >= 0)
|
if (p >= 0)
|
||||||
P_PreFireHitscan(i, p, atwith, srcvect, &zvel, &sa,
|
P_PreFireHitscan(i, p, atwith, srcvect, &zvel, &sa,
|
||||||
|
@ -941,7 +942,8 @@ static int32_t A_ShootCustom(const int32_t i, const int32_t atwith, int16_t sa,
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
case PROJECTILE_RPG:
|
case PROJECTILE_RPG:
|
||||||
if (s->extra >= 0) s->shade = proj->shade;
|
if (!(proj->workslike & PROJECTILE_NOSETOWNERSHADE) && s->extra >= 0)
|
||||||
|
s->shade = proj->shade;
|
||||||
|
|
||||||
vel = proj->vel;
|
vel = proj->vel;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue