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
($append)
 
No edit summary
 
(10 intermediate revisions by 7 users not shown)
Line 1: Line 1:
Allows you to add more options to the specifed [[$animation]] or [[$sequence]]
{{LanguageBar|title=$append}}
{{this is a|QC command|name=$append}} 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.''}}


== Syntax ==
==Syntax==


  $append <animation/sequence name>
<source lang=php>
  $append "SequenceName" <options>
</source>


[[Category:QC Commands|append]]__NOTOC__
== Examples ==
 
<source lang=php>
 
$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
 
</source>
 
== See also ==
* [[$prepend]] Add more options to the specified [[$sequence|sequences]] or [[$animation|animations]] '''before''' any other option.
* [[$continue]] Add more options to the specified [[$sequence|sequences]] or [[$animation|animations]]. '''Replaces''' both [[$prepend]] and [[$append]] QC commands.
* [[$definemacro]]
* [[$definevariable]]
 
__NOTOC__
 
[[Category:Modeling]]
[[Category:Source]]

Latest revision as of 21:04, 16 July 2025

English (en)Translate (Translate)

$append is a QC command 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