This article's documentation is for anything that uses the Source engine. Click here for more information.

$append: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Remove wrong Entity Categories)
mNo edit summary
Line 1: Line 1:
{{lang|$append|$title=$append}}
{{lang|$append|$title=$append}}
'''{{ent|$append|}}''' is a [[:Category:QC_Commands|QC command]] available in all {{src|4}} games.
{{This is a|c0|name=$append}} It allows you to add more options to the specified [[$sequence|sequences]] or [[$animation|animations]] after declared.
Allows you to add more options to the specified [[$sequence|sequences]] or [[$animation|animations]] after declared.
{{inline note | ''Please see [[$continue]] QC command for further info.''}}
{{inline note | ''Please see [[$continue]] QC command for further info.''}}



Revision as of 12:13, 22 September 2023

English (en)Translate (Translate)

$append is a c0 available in all Source Source games. It allows you to add more options to the specified sequences or animations after declared.

Please see $continue QC command for further info.

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