$append: Difference between revisions
Jump to navigation
Jump to search

m (Nesciuse moved page $append/en to $append without leaving a redirect: Move to proper place) |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{LanguageBar|title=$append}} | {{LanguageBar|title=$append}} | ||
{{this is a|QC command|name=$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.''}} | {{inline note | ''Please see [[$continue]] QC command for further info.''}} | ||
Line 36: | Line 35: | ||
[[Category:Modeling]] | [[Category:Modeling]] | ||
[[Category:Source]] | [[Category:Source]] |
Latest revision as of 21:04, 16 July 2025


$append
is a QC command available in all 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
- $prepend Add more options to the specified sequences or animations before any other option.
- $continue Add more options to the specified sequences or animations. Replaces both $prepend and $append QC commands.
- $definemacro
- $definevariable