$append: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
(Preparing page for move. This action was perfomed by a bot under supervision.)
Line 1: Line 1:
{{lang|$append|$title=$append}}
{{langsp|title=$append}}
{{This is a|c0|name=$append}} It allows you to add more options to the specified [[$sequence|sequences]] or [[$animation|animations]] after declared.
It 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.''}}


Line 32: Line 32:
* [[$definevariable]]
* [[$definevariable]]


[[Category:Modeling]]
__NOTOC__
[[Category:QC Commands|A]]
[[Category:Source]]__NOTOC__

Revision as of 13:25, 9 January 2024

English (en)Translate (Translate)
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