v1.0
ビューイング
非表示になっている選択オブジェクトまたは指定オブジェクトを表示します。
SIUnhideObjects( [Target], [PropertyName] ); |
パラメータ | タイプ | 詳細 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Target | 文字列 | オブジェクトのリスト。
デフォルト値: 選択されたオブジェクト |
||||||||||
PropertyName | 文字列 | 設定する表示パラメータ
デフォルト値: visibility
|
'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 'Now unhide only the cone SIUnhideObjects "cone" |