DeactivateElements

導入

v1.0

詳細

3D オブジェクトを無効にします。

アクティブ エレメントとは、選択可能なコンポーネントを持つオブジェクトです(ポイント、ポリゴン、エッジなど)。 アクティブ エレメントは特殊な色で強調表示されます。

注: SelectionList 引数にエラーが含まれる場合、コマンドは失敗します。

スクリプト構文

DeactivateElements( [SelectionList] );

パラメータ

パラメータ タイプ 説明
SelectionList 文字列 無効にする 3D オブジェクトのリスト

デフォルト値: 現在選択されている値

VBScript の例

' The following uses "DeactivateElements" so that selection of points 

' components is no longer possible on the object called "cylinder"

NewScene

CreatePrim "Cylinder", "MeshSurface"

CreatePrim "Cone", "MeshSurface"

Translate , 3.48352677058841, 0.127331217177334, -1.27331217177334E-02, _

					siRelative, siView, siObj, siXYZ

AddToSelection "cylinder"

SetSelFilter "point"

DeactivateElements "cylinder"

logMessage "cylinder should no longer be active"

logMessage "i.e.: selection of points components should no longer be possible on it."

関連項目

ActivateElements SetActiveElements SetAndToggleActiveElements ToggleActiveElements