Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameFlag argumentsArgument typeExclusive toComments
r0Set range relative to start/end of current play range
start0endSets the playRange start to the current frame
end0startSets the playRange end to the current frame
save0restoreSave current play range before applying play range changes. Can be restored by next playRange -restore call.
restore0saveRestore the last saved play range before applying play range changes.

Return value

void

Examples

Code Block
languagetext
playRange -save;

...


playRange 340 345;

...


playRange -restore;

...


// This sequence of commands saves the current play range, 

...


// then sets it to a new range; enabling you to restore

...


// the original range at any time.
  

...

// set start of play Range to 50

...


playRange -start 50;

...



// set end of play Range to 200

...


playRange -end 200;

Scroll pagebreak

Additional information

...