$append

From Valve Developer Community
Revision as of 14:38, 14 April 2023 by Debiddo (talk | contribs) (Clarify how $append works with examples)
Jump to navigation Jump to search
English (en)Translate (Translate)

Template:Entity

Please see $continue QC command for further info.

Allows you to add more options to the specified sequences or animations after declared.

Syntax

 $append "SequenceName" <options>

Examples

$sequence "idle" a_idle {
	loop fps 40
	iklock "rfoot" 1 0
	iklock "lfoot" 1 0
}

// more QC stuff \\

// add this options after all other $sequence options
$append "idle" noautoik x y z

See also