Pastes keys from the clipboard onto the selected channels of the selected module at the current frame
The pasteKeys command may only be used under these conditions:
Keys are then pasted starting at the current frame, unless the useFrame
option is used to specify a different starting frame.
Data editing
pasteKeys [-useFrame integer] |
None
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
useFrame | 1 | integer | — | Frame number at which to start pasting. If this option is not specified, the paste operation will begin at the current frame. |
void
// Select the X Rotation channel of the module right_foot, and paste // the keys within the clipboard to those channels, beginning at the // current frame. select right_foot; selectProperty "RotationX"; pasteKeys; |