mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 21:41:57 +00:00
Tweak teleport effect a little. Particles not so absurdly large.
This commit is contained in:
parent
603a88c160
commit
39115d98a7
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ R_TeleportSplash (vec3_t org)
|
||||||
VectorNormalize (dir);
|
VectorNormalize (dir);
|
||||||
vel = 50 + (rand () & 63);
|
vel = 50 + (rand () & 63);
|
||||||
VectorScale (dir, vel, pvel);
|
VectorScale (dir, vel, pvel);
|
||||||
particle_new (pt_grav, part_tex_dot, porg, 1.5, pvel,
|
particle_new (pt_grav, part_tex_dot, porg, 0.6, pvel,
|
||||||
(cl.time + 0.2 + (rand () & 7) * 0.02),
|
(cl.time + 0.2 + (rand () & 7) * 0.02),
|
||||||
(7 + (rand () & 7)), 255);
|
(7 + (rand () & 7)), 255);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue