Entity:SendViewModelMatchingSequence
Description
Sends sequence animation to the view model. It is recommended to use this for view model animations, instead of Entity:ResetSequence.
This function is only usable on view models.
Sequences 0-6 will not be looped regardless if they're marked as a looped animation or not.
Issue Tracker: 3229
Issue Tracker: 3229
Arguments
Example
Converting an ACT_VM_* enumeration to a sequence usable by the function.
local VModel = self:GetOwner():GetViewModel()
local EnumToSeq = VModel:SelectWeightedSequence( ACT_VM_PRIMARYATTACK )
VModel:SendViewModelMatchingSequence( EnumToSeq )
Output: Sends the primary attack enumeration sequence to the view model and plays it.