v11.0 (2013)
Texture Editor ビューのチェッカーボード モードを設定します。
SetCheckerboardMode( Checkerboard, [TextureEditor] ); |
パラメータ | タイプ | 説明 |
---|---|---|
Checkerboard | Boolean | Texture Editor ビューのチェッカーボード モードを有効にする場合は true、それ以外は false にします。 |
TextureEditor | Texture Editor ビュー オブジェクト。 |
チェッカーボード設定を更新する Texture Editor ビュー。 デフォルト値: 指定しない場合、変更はすべての Texture Editor ビューに適用されます。 |
# Get the Texture Editor view object oView = Application.Desktop.ActiveLayout.CreateView2( "Texture Editor", "MyTextureEditor" ); # Turn on the checkerboard mode of the view Application.SetCheckerboardMode( True, oView ); |