ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
imagePlane [-camera string] [-counter boolean] [-detach] [-dropFrame boolean] [-fileName string] [-frameDuration int] [-height float] [-imageSize int int] [-lookThrough string] [-maintainRatio boolean] [-name string] [-negTimesOK boolean] [-numFrames int] [-quickTime boolean] [-showInAllViews boolean] [-timeCode int] [-timeCodeTrack boolean] [-timeScale int] [-twentyFourHourMax boolean] [-width float]
imagePlane は、取り消し可能、照会可能、および編集可能です。
imagePlane コマンドを使用すると、1 つのイメージ プレーンのさまざまなプロパティ、およびそのイメージ プレーンが使用しているムービーに対して、照会を実行できます。このコマンドは、作成と編集もサポートしています。このコマンドには、imagePlane ノードまたはカメラのいずれかのオブジェクトを渡すことができます。カメラを渡した場合は、カメラにアタッチされたイメージ プレーン(存在する場合)が使用されます。オブジェクトを渡さない場合は、現在の選択範囲が使用されます。現在、ほとんどのムービー関連の照会は、64 ビット Windows システム上でのみ機能します。boolean |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-quickTime(-qt)
|
boolean
|
|||
|
||||
-timeCodeTrack(-tt)
|
boolean
|
|||
|
||||
-dropFrame(-df)
|
boolean
|
|||
|
||||
-twentyFourHourMax(-tf)
|
boolean
|
|||
|
||||
-negTimesOK(-nt)
|
boolean
|
|||
|
||||
-counter(-cn)
|
boolean
|
|||
|
||||
-timeScale(-ts)
|
int
|
|||
|
||||
-frameDuration(-fd)
|
int
|
|||
|
||||
-numFrames(-nf)
|
int
|
|||
|
||||
-timeCode(-tc)
|
int
|
|||
|
||||
-width(-w)
|
float
|
|||
|
||||
-height(-h)
|
float
|
|||
|
||||
-name(-n)
|
string
|
|||
|
||||
-fileName(-fn)
|
string
|
|||
|
||||
-imageSize(-iz)
|
int int
|
|||
|
||||
-maintainRatio(-mr)
|
boolean
|
|||
|
||||
-camera(-c)
|
string
|
|||
|
||||
-lookThrough(-lt)
|
string
|
|||
|
||||
-showInAllViews(-sia)
|
boolean
|
|||
|
||||
-detach(-d)
|
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// create image plane with width and height example string $myImagePlane[] = `imagePlane -w 100 -h 50` ; // create image plane with width and maintainRatio off string $myImagePlane[] = `imagePlane -w 100 -mr false` ; // create free image plane with look through camera specified. string $myImagePlane[] = `imagePlane -lt "persp"` ; // create free image plane with look through camera specified let it only show when looking through this specified camera. string $myImagePlane[] = `imagePlane -lt "persp" -sia false` ; // edit image plane example imagePlane -e -w 100 -h 200 -mr false $myImagePlane[1] ; // edit free image plane with look through camera specified. imagePlane -e -lt "side" $myImagePlane[1]; // query image width height example imagePlane -q -w -h $myImagePlane[1] ; // Create image plane with name imagePlane -n "Foo" ; imagePlane -w 100 -h 50 -n "Foo" ; // query loaded image ratio imagePlane -q -iz $myImagePlane[1]; // Create image plane under a specified camera string $camera[] = `camera`; imagePlane -camera $camera[1];