Fixing NPC blinking: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(Marked for deletion due to being merged into another page.)
Line 1: Line 1:
{{prod|This article has been merged into [[General SDK Fixes]].}}
== Fixing the blinking bug ==
== Fixing the blinking bug ==



Revision as of 16:51, 22 February 2020

Template:Prod

Fixing the blinking bug

In source sdk2013 blinking has been broken for a while. Fixing this is as easy as removing a single line of code.

Go to "c_baseflex.cpp" to the following line

void C_BaseFlex::SetupWeights( const matrix3x4_t *pBoneToWorld, int nFlexWeightCount, float *pFlexWeights, float *pFlexDelayedWeights )

And remove the following line

m_iBlink = AddGlobalFlexController( "UH" );

Congratulations! You have successfully fixed npc blinking it was as easy as that