Viewmodel Prediction Fix: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with 'Apply this patch to '''game/shared/baseviewmodel_shared.cpp''' <source lang="cpp"> @@ -392,12 +392,12 @@ } // Add model-specific bob even if no weapon associated (for head bo…')
 
No edit summary
Line 1: Line 1:
{{otherlang2
|ru=Viewmodel Prediction Fix:ru
}}
Apply this patch to '''game/shared/baseviewmodel_shared.cpp'''
Apply this patch to '''game/shared/baseviewmodel_shared.cpp'''
<source lang="cpp">
<source lang="cpp">

Revision as of 21:56, 12 May 2013

Template:Otherlang2

Apply this patch to game/shared/baseviewmodel_shared.cpp

@@ -392,12 +392,12 @@
 	}
 	// Add model-specific bob even if no weapon associated (for head bob for off hand models)
 	AddViewModelBob( owner, vmorigin, vmangles );
-	// Add lag
-	CalcViewModelLag( vmorigin, vmangles, vmangoriginal );
 
 #if defined( CLIENT_DLL )
 	if ( !prediction->InPrediction() )
 	{
+		// Add lag
+		CalcViewModelLag( vmorigin, vmangles, vmangoriginal );
 		// Let the viewmodel shake at about 10% of the amplitude of the player's view
 		vieweffects->ApplyShake( vmorigin, vmangles, 0.1 );	
 	}