Introduced
1.0
Description
Unhides selected or given objects.
Scripting Syntax
SIUnhideObjects( [Target], [PropertyName] )
Parameters
|
Parameter |
Type |
Description |
|
Target |
List of objects. Default Value: Selected objects |
|
|
PropertyName |
Visibility parameter(s) to set. Default Value: visibility Possible Values: • visibility: View and Render visibility • viewvis: View visibility • rendvis: Render visibility • selectability: Selectability |
Examples
VBScript Example
'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"
Autodesk Softimage v7.5