' The following example uses ToggleSelection to
' toggle the selection state of the objects
NewScene
CreatePrim "Cone", "MeshSurface"
CreatePrim "Sphere", "MeshSurface"
Translate , 6.53800806588703, 4.58524492486573, -0.458524492486574, _
siRelative, siView, siObj, siXYZ
CreatePrim "Cube", "MeshSurface"
Translate , 9.25561382821357, -5.05552645562117, 0.505552645562117, _
siRelative, siView, siObj, siXYZ
AddToSelection "cone", , True
ToggleSelection "cube, sphere"
logMessage "Cone remains selected, cube is no longer selected"
logMessage "and Sphere becomes selected" |