mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Tweaking the trails a bit more.
This commit is contained in:
parent
4873457160
commit
7553f2b0a4
1 changed files with 3 additions and 3 deletions
|
@ -491,8 +491,8 @@ R_RocketTrail (int type, entity_t *ent)
|
|||
|
||||
switch (type) {
|
||||
case 0: // rocket trail
|
||||
dist = 20;
|
||||
pdie = cl.time + 1;
|
||||
dist = 40;
|
||||
pdie = cl.time + 60;
|
||||
ptype = pt_smokering;
|
||||
pscale = lhrandom (10, 15);
|
||||
pcolor = (rand () & 3) + 12;
|
||||
|
@ -748,7 +748,7 @@ R_DrawParticles (void)
|
|||
part->org[2] += host_frametime * 30;
|
||||
break;
|
||||
case pt_smokering:
|
||||
if ((part->alpha -= host_frametime * 90) < 1)
|
||||
if ((part->alpha -= host_frametime * 130) < 1)
|
||||
part->die = -1;
|
||||
part->scale += host_frametime * 10;
|
||||
part->org[2] += host_frametime * 30;
|
||||
|
|
Loading…
Reference in a new issue