$continue: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
 ($continue)  | 
				mNo edit summary  | 
				||
| Line 1: | Line 1: | ||
The '''$continue''' is a [[QC command]].  | |||
Place this immediately after a [[$definemacro|macro]] to trick the parser in thinking that you're on the same line.  | Place this immediately after a [[$definemacro|macro]] to trick the parser in thinking that you're on the same line.  | ||
Revision as of 04:29, 2 January 2012
The $continue is a QC command. Place this immediately after a macro to trick the parser in thinking that you're on the same line.
Syntax
$continue <macroname>
Example
$definemacro SpyMeleeGestureAttackIKRelease gesturename filename activityname \\
$sequence $gesturename$ { \\
	$filename$ \\
	weightlist SpymeleeRightArmBlend \\
	subtract $gesturename$ 0 \\
	delta \\
	ikrule lhand release \\
	ikrule rhand release \\
	iklock rfoot 1 0 iklock lfoot 1 0 \\
 	activity $activityname$ 1 \\
} \\
$continue $gesturename$