mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
colored explosion smoke
This commit is contained in:
parent
288ec4251c
commit
0e5262c2ea
1 changed files with 15 additions and 6 deletions
|
@ -169,11 +169,19 @@ R_ParticleExplosion (vec3_t org)
|
|||
/*
|
||||
R_NewExplosion (org);
|
||||
*/
|
||||
particle_new_random (pt_smokecloud, part_tex_smoke, org, 4,
|
||||
30, 8, r_realtime + 5, (rand () & 7) + 8,
|
||||
128 + (rand () & 63));
|
||||
if (cl_surprise->int_val)
|
||||
{
|
||||
particle_new_random (pt_smokecloud, part_tex_smoke, org, 4,
|
||||
30, 8, r_realtime + 5,
|
||||
(rand () & 255),
|
||||
128 + (rand () & 63));
|
||||
} else {
|
||||
particle_new_random (pt_smokecloud, part_tex_smoke, org, 4,
|
||||
30, 8, r_realtime + 5,
|
||||
(rand () & 7) + 8,
|
||||
128 + (rand () & 63));
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
R_ParticleExplosion2 (vec3_t org, int colorStart, int colorLength)
|
||||
{
|
||||
|
@ -187,8 +195,9 @@ R_ParticleExplosion2 (vec3_t org, int colorStart, int colorLength)
|
|||
|
||||
for (i = 0; i < j; i++) {
|
||||
particle_new_random (pt_blob, part_tex_dot, org, 16, 2, 256,
|
||||
(r_realtime + 0.3),
|
||||
(colorStart + (colorMod % colorLength)), 255);
|
||||
(r_realtime + 0.3),
|
||||
(colorStart + (colorMod % colorLength)),
|
||||
255);
|
||||
colorMod++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue