mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
small changes
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@954 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
a75a0325ef
commit
d87c9d7b69
1 changed files with 3 additions and 5 deletions
|
@ -38,7 +38,6 @@ The engine has a few builtins.
|
||||||
#include "r_partset.h"
|
#include "r_partset.h"
|
||||||
|
|
||||||
int pt_explosion,
|
int pt_explosion,
|
||||||
pt_emp,
|
|
||||||
pt_pointfile,
|
pt_pointfile,
|
||||||
pt_entityparticles,
|
pt_entityparticles,
|
||||||
pt_darkfield,
|
pt_darkfield,
|
||||||
|
@ -1044,8 +1043,7 @@ void P_InitParticles (void)
|
||||||
Cvar_Register(&r_grenadetrail, particlecvargroupname);
|
Cvar_Register(&r_grenadetrail, particlecvargroupname);
|
||||||
|
|
||||||
pt_explosion = P_AllocateParticleType("te_explosion");
|
pt_explosion = P_AllocateParticleType("te_explosion");
|
||||||
pt_emp = P_AllocateParticleType("te_emp");
|
pt_pointfile = P_AllocateParticleType("pe_pointfile");
|
||||||
pt_pointfile = P_AllocateParticleType("te_pointfile");
|
|
||||||
pt_entityparticles = P_AllocateParticleType("ef_entityparticles");
|
pt_entityparticles = P_AllocateParticleType("ef_entityparticles");
|
||||||
pt_darkfield = P_AllocateParticleType("ef_darkfield");
|
pt_darkfield = P_AllocateParticleType("ef_darkfield");
|
||||||
pt_blob = P_AllocateParticleType("te_blob");
|
pt_blob = P_AllocateParticleType("te_blob");
|
||||||
|
@ -1075,8 +1073,8 @@ void P_InitParticles (void)
|
||||||
rt_lightning3 = P_AllocateParticleType("t_lightning3");
|
rt_lightning3 = P_AllocateParticleType("t_lightning3");
|
||||||
|
|
||||||
|
|
||||||
pt_spark = P_AllocateParticleType("pe_spark");
|
pt_spark = P_AllocateParticleType("te_spark");
|
||||||
pt_plasma = P_AllocateParticleType("pe_plasma");
|
pt_plasma = P_AllocateParticleType("te_plasma");
|
||||||
|
|
||||||
pe_default = P_AllocateParticleType("pe_default");
|
pe_default = P_AllocateParticleType("pe_default");
|
||||||
pe_size2 = P_AllocateParticleType("pe_size2");
|
pe_size2 = P_AllocateParticleType("pe_size2");
|
||||||
|
|
Loading…
Reference in a new issue