Gesture Animations: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
After struggling to create attack gesture activities that didn't completely seize control of the model and studying the [[.QC Commands]] list this technique was developed.  After making an animation "attack.smd" containing the animation including lines like the following in the models QC file:
:''Main article: [[$animation#Blending]]''
 
After struggling to create attack gesture activities that didn't completely seize control of the model and studying the [[:Category:QC Commands|QC command]] list this technique was developed.  After making an animation "attack.smd" containing the animation including lines like the following in the models QC file:





Revision as of 07:31, 12 January 2009

Main article: $animation#Blending

After struggling to create attack gesture activities that didn't completely seize control of the model and studying the QC command list this technique was developed. After making an animation "attack.smd" containing the animation including lines like the following in the models QC file:


$animation a_attack "attack"

$animation b_attack "attack" subtract a_attack 0

$sequence weapon_attack "b_attack" activity ACT_HL2MP_GESTURE_RANGE_ATTACK_SMG1 1 fps 60 delta


Subtracting frame 0 of the attack animation from the rest of the animation then using it as a "delta" type sequence seems to do the job, "attack" can now be overlaid over other similar animations like idling, crouching and running.