HideUnselected

導入

v1.0

詳細

選択されていないオブジェクトまたはポリゴンを非表示にします。

スクリプト構文

HideUnselected( [Target], [PropertyName] );

パラメータ

パラメータ タイプ 説明
Target 文字列 オブジェクトのリスト。 このコマンドは、このリストのすべての非選択オブジェクトに適用されます。

デフォルト値: すべてのオブジェクト

PropertyName 文字列 設定する可視性パラメータ

デフォルト値: visibility

指定可能な値:

説明:

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

1. VBScript の例

NewScene

CreatePrim "Sphere", "MeshSurface"

Translate , -6, 0, 0, siAbsolute, siView, siObj, siXYZ, True, , , , , , , , , 0

CreatePrim "Torus", "MeshSurface"

CreatePrim "Cube", "MeshSurface"

Translate , 7, 0, 0, siAbsolute, siView, siObj, siXYZ, True, , , , , , , , , 0

SelectObj "sphere,cube"

logmessage "Selection before hiding: " & Selection.count & " objects"

for each obj in Selection

logmessage "    " & obj

next

MsgBox "About to perform HideUnselected..."

HideUnselected

logmessage "Selection after hiding: " & Selection.count & " objects"

for each obj in Selection

logmessage "    " & obj

next

2. VBScript の例

' Create a sphere, select some polygons and hide the unselected ones

NewScene 

SetDisplayMode "Camera", "shaded"

CreatePrim "Sphere", "MeshSurface"

SetValue "sphere.polymsh.geom.subdivu", 30

SetValue "sphere.polymsh.geom.subdivv", 30

SetValue "sphere.Scene_Material.Phong.diffuse.blue", 0

SetValue "sphere.Scene_Material.Phong.diffuse.red", 1

SetValue "sphere.Scene_Material.Phong.diffuse.green", 1

ActivatePolygonSelTool

SelectGeometryComponents "sphere.poly[168,169,170,198,199,200,258,259,260,288,289,290,133,134,162,163,191,192,221,222,251,252,282,283,313,314]"

HideUnselected

関連項目

HideAndUnselect ToggleVisibility