mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
adding rising smoke
This commit is contained in:
parent
53c9732303
commit
16bc4735b1
1 changed files with 3 additions and 1 deletions
|
@ -627,14 +627,16 @@ R_DrawParticles (void)
|
|||
part->vel[2] -= grav;
|
||||
break;
|
||||
case pt_smoke:
|
||||
if ((part->alpha -= host_frametime * 128) < 1)
|
||||
if ((part->alpha -= host_frametime * 90) < 1)
|
||||
part->die = -1;
|
||||
part->scale += host_frametime * 6;
|
||||
part->org[2] += host_frametime * 30;
|
||||
break;
|
||||
case pt_smokecloud:
|
||||
if ((part->alpha -= host_frametime * 128) < 1)
|
||||
part->die = -1;
|
||||
part->scale += host_frametime * 60;
|
||||
part->org[2] += host_frametime * 90;
|
||||
break;
|
||||
case pt_bloodcloud:
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue