...
Scroll tablelayout | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Scroll tablelayout | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
selected | 0 | — | — | If specified, and no arguments are passed in to the command, the selected modules will have their animation data copied |
create | 0 | — | leaveTimeAlone | If specified, a new clip will be created as the target clip, with the name provided by the first argument to the command |
leaveTimeAlone | 0 | — | create | If specified, the target clip will not have it`s time related attributes changed Start_Frame, Clip_Offset, and Duration) |
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
// create a Clip and a Marker |
...
create Clip "clip1"; |
...
create Marker "marker1"; |
...
...
// animate the marker |
...
// to represent data being copied |
...
setTime 0; |
...
setKey Translation 0 0 0; |
...
setTime 20; |
...
setKey Translation 100 100 100; |
...
...
// create a 2nd Clip |
...
// copy marker1 to clip2 |
...
copyClip clip2 marker1 -create; |
Scroll pagebreak |
---|
Additional information
...