現時点においてオブジェクト モデルでサポートされているのは、グループの作成とそのグループへのメンバ追加だけです。 グループからメンバを削除する場合、またはメンバ自体を削除する場合は、Softimage ネイティブ コマンドを使用します。
' Set my workspace Set oRoot = ActiveProject.ActiveScene.Root ' Create a new model called "MyModel" Set oModel = oRoot.AddNull( "MyModel" ) ' Create a new polymesh sphere called "MySphere" Set oSphere = oRoot.AddGeometry( "Sphere", _ "MeshSurface", "MySphere" ) ' Create a new group containing the sphere Set oGroup = oRoot.AddGroup( oSphere, "MyGroup" ) ' Print the names of the group members LogMessage oGroup & " contains... " For Each o In oGroup.Members LogMessage o.Name Next