summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2009-10-03 11:38:57 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:12 +0000
commit9be2d1add7fe8a18d1e7dc20bd25c33f0cd03ad2 (patch)
treefff69c7da1271724d240633f3677cd6723183648 /src/cgame
parent217ba13c618489a2c9d4d4384c42ce3d54b7959e (diff)
* Basilisk animation policy
* Fix broken lerping due to animating before positioning on parent tag
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_weapons.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cgame/cg_weapons.c b/src/cgame/cg_weapons.c
index 3f290b5d..0f72a378 100644
--- a/src/cgame/cg_weapons.c
+++ b/src/cgame/cg_weapons.c
@@ -976,7 +976,6 @@ void CG_AddPlayerWeapon( refEntity_t *parent, playerState_t *ps, centity_t *cent
gun.shadowPlane = parent->shadowPlane;
gun.renderfx = parent->renderfx;
- // set custom shading for railgun refire rate
if( ps )
{
gun.shaderRGBA[ 0 ] = 255;
@@ -1032,8 +1031,8 @@ void CG_AddPlayerWeapon( refEntity_t *parent, playerState_t *ps, centity_t *cent
if( !noGunModel )
{
- CG_WeaponAnimation( cent, &gun.oldframe, &gun.frame, &gun.backlerp );
CG_PositionEntityOnTag( &gun, parent, parent->hModel, "tag_weapon" );
+ CG_WeaponAnimation( cent, &gun.oldframe, &gun.frame, &gun.backlerp );
trap_R_AddRefEntityToScene( &gun );