移動先: 概要 戻り値 キーワード. Python 例.

概要

fcheck()

注意: オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。

fcheck は 「元に戻す」が不可能「照会」が不可能「編集」が不可能 です。

イメージを別のウィンドウに表示するために fcheck プログラムを起動します。

戻り値

なし

キーワード

display, images

Python 例

import maya.cmds as cmds

# View the image "myImage.iff"
#
cmds.fcheck( 'myImage.iff' )
# You can also display several images at once using filenames with
# wildcards (each in a separate window)
#
cmds.fcheck( 'myTest*' )
# You can display an animation using a trailing dot (.) on the
# filename.
#
cmds.fcheck( 'mySequence.' )