移植先:現在開いているシーン
移植元:リファレンスで読み込み、ネームスペースをrefにする。
===========
global proc MotionCopyRep()
{
string $c = "1:10" ; //コピーフレーム範囲指定//
string $p = "1:10" ; //ペーストフレーム範囲指定//
select -r
ref:CntrollerA
ref:CntrollerB
ref:CntrollerC
;
copyKey -t $c ;
select -clear;
select
-r
CntrollerA
CntrollerB
CntrollerC
;
pasteKey -t $p -o replace ;
//■2グループ目//
select -r
ref:CntrollerD
ref:CntrollerE
ref:CntrollerF
;
copyKey -t $c ;
select -clear;
select
-r
CntrollerD
CntrollerE
CntrollerF
;
pasteKey -t $p -o replace ;
//■3グループ目//
//■4グループ目//
}
MotionCopyRep();
===========
以上