From 9a710aa71278ebd717201fc3db03f96ea98f06b2 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 3 Jul 2005 22:28:37 +0000 Subject: * Removed misc_spriter from the source --- src/cgame/cg_ents.c | 4 ---- src/cgame/cg_local.h | 19 ------------------- 2 files changed, 23 deletions(-) (limited to 'src/cgame') diff --git a/src/cgame/cg_ents.c b/src/cgame/cg_ents.c index d3672465..44779bf6 100644 --- a/src/cgame/cg_ents.c +++ b/src/cgame/cg_ents.c @@ -992,10 +992,6 @@ static void CG_AddCEntity( centity_t *cent ) CG_Speaker( cent ); break; - case ET_SPRITER: - CG_Spriter( cent ); - break; - case ET_PARTICLE_SYSTEM: CG_ParticleSystemEntity( cent ); break; diff --git a/src/cgame/cg_local.h b/src/cgame/cg_local.h index 61c15f95..69c6946b 100644 --- a/src/cgame/cg_local.h +++ b/src/cgame/cg_local.h @@ -523,7 +523,6 @@ typedef enum LE_SPRITE_EXPLOSION, LE_FRAGMENT, LE_MOVE_SCALE_FADE, - LE_SPRITER, LE_FALL_SCALE_FADE, LE_FADE_RGB, LE_SCALE_FADE @@ -581,12 +580,6 @@ typedef struct localEntity_s refEntity_t refEntity; - //TA: random stuff for cg_spriter.c - vec3_t acceleration; - float initAlp, finalAlp; - float initRad, finalRad; - qboolean overdraw; - qboolean realLight; unsigned int sortKey; //TA: lightning bolt endpoint entities @@ -1597,18 +1590,6 @@ void CG_InitBuildables( ); void CG_HumanBuildableExplosion( vec3_t origin, vec3_t dir ); void CG_AlienBuildableExplosion( vec3_t origin, vec3_t dir ); -// -// cg_spriter.c -// -void CG_Spriter( centity_t *cent ); -void CG_LaunchSprite( const vec3_t p, const vec3_t vel, const vec3_t accel, - float spread, float bounce, - float initRad, float finalRad, - float initAlp, float finalAlp, - float rotation, - int startTime, int shaderTime, int duration, - qhandle_t hShader, qboolean overdraw, qboolean realLight ); - // // cg_animmapobj.c // -- cgit