SIHideObjects

導入

v1.0

詳細

選択されているオブジェクトまたは指定のオブジェクトを非表示にします。

スクリプト構文

SIHideObjects( [Target], [PropertyName] );

パラメータ

パラメータ タイプ 説明
Target 文字列 オブジェクトのリスト

デフォルト値: 選択されたオブジェクト

PropertyName 文字列 設定する表示パラメータ

デフォルト値: visibility

指定可能な値:

説明:

visibility ビューとレンダの表示/非表示
viewvis View visibility
rendvis Render visibility
selectability 選択の可/不可

1. VBScript の例

NewScene

'Get two primitive objects, select them both and then hide them

CreatePrim "Cone", "MeshSurface"

CreatePrim "Sphere", "MeshSurface"

'Select all the polygon mesh children of the scene root and hide them

set objs = activesceneroot.children.filter(siPolyMeshType)

SIHideObjects objs

'Unhide them both and then hide only their render visibility

set objs = activesceneroot.children.filter(siPolyMeshType)

SIUnhideObjects objs

SIHideObjects objs, "rendvis"

2. VBScript の例

NewScene

'Get a primitive sphere, tag some polygons and then hide them

CreatePrim "Sphere", "MeshSurface"

SelectGeometryComponents "sphere.poly[19-21,27-29]"

SIHideObjects