mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 18:01:13 +00:00
Switch to dot texture for sparks, and drop particle size. A little less cartoony effect.
This commit is contained in:
parent
158717a56a
commit
14aa428871
1 changed files with 2 additions and 2 deletions
|
@ -231,8 +231,8 @@ R_RunSparkEffect (vec3_t org, int count, int ofuzz)
|
||||||
ofuzz * 0.08, vec3_origin, r_realtime + 9,
|
ofuzz * 0.08, vec3_origin, r_realtime + 9,
|
||||||
12 + (rand () & 3), 64 + (rand () & 31));
|
12 + (rand () & 3), 64 + (rand () & 31));
|
||||||
while (count--)
|
while (count--)
|
||||||
particle_new_random (pt_fallfadespark, part_tex_spark, org,
|
particle_new_random (pt_fallfadespark, part_tex_dot, org,
|
||||||
ofuzz * 0.75, 1, 96, r_realtime + 5,
|
ofuzz * 0.75, 0.7, 96, r_realtime + 5,
|
||||||
ramp[rand () & 7], 255);
|
ramp[rand () & 7], 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue