在Autodesk Maya中的相机图像平面

时间:2015-03-26 21:52:16

标签: camera maya for-in-loop mel

我试图使用maya 2011中的相机烘焙脚本但是出现了图像平面错误。似乎Maya现在将变换节点放在图像平面上方。我现在也看到了imagePlane程序。任何人对如何将现有图像平面附加到复制相机或此转换节点的作用有任何想法?

string $oldCamera[] = `ls -l -sl` ;
string $results[] ;
string $curCam = $oldCamera[ 0 ] ;

string $listRelCam[] = `listRelatives -f -type "camera" $curCam` ;
string $newCamera[] = `duplicate -rr $curCam` ;

string $oldShape[] =`listRelatives -f -s $curCam` ;
string $newShape[] = `listRelatives -f -s $newCamera[ 0 ]` ;

// Attach an image plane

string $oldShape[] =`listRelatives -f -s $curCam` ;
string $newShape[] = `listRelatives -f -s $newCamera[ 0 ]` ; 
string $imagePlanes[] = `listConnections -d 1 ( $oldShape[ 0 ] + ".imagePlane" )` ; 

int $count = 0 ;

for ( $im in $imagePlanes ) {
    connectAttr -f ( $im + ".message" )( $newShape[ 0 ] + ".imagePlane[ " + $count + " ]" ) ;
    $count++ ;
}

我也是这样试过但没有成功。

int $count = 0 ;

for ( $im in $imagePlanes ) {
    $tempName = `imagePlane -q -n $im` ;
    connectAttr -f ( $tempName[ 0 ] + ".message" )( $newShape[ 0 ] + ".imagePlane[ " + $count + " ]" ) ;
    $count++ ;
}

1 个答案:

答案 0 :(得分:0)

imagePlane -e -detach imagePlane1; imagePlane -e -camera camera2;