...
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
r | 0 | — | — | Set range relative to start/end of current play range |
start | 0 | — | end | Sets the playRange start to the current frame |
end | 0 | — | start | Sets the playRange end to the current frame |
save | 0 | — | restore | Save current play range before applying play range changes. Can be restored by next playRange -restore call. |
restore | 0 | — | save | Restore the last saved play range before applying play range changes. |
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
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
...