Go to: Synopsis. Return value. Related. Flags. MEL examples.
showHidden [-above] [-allObjects] [-below] [-lastHidden]
[objects...]
showHidden is undoable, NOT queryable, and NOT editable.
The showHidden command is used to make invisible objects visible. If no flags are specified, only the objects given to the command will be made visible. If a parent of an object is invisible, the object will still be invisible. Invisibility is inherited. To ensure the object becomes visible, use the -a/above flag. This forces all invisible ancestors of the object(s) to be visible. If the -b/below flag is used, any invisible objects below the object will be made visible. To make all objects visible, use the -all/allObjects flag.See also: hide
None
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-above(-a)
|
|
![]() |
||
|
||||
-allObjects(-all)
|
|
![]() |
||
|
||||
-below(-b)
|
|
![]() |
||
|
||||
-lastHidden(-lh)
|
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
// create a sphere and group it, then hide the sphere and the group. sphere -n sphere1; group -n group1; hide group1 sphere1; // make the sphere visible. Note that you still can't see it // because the group is invisible. showHidden sphere1; // make the sphere and the group visible. showHidden -above sphere1; // make everything visible. This will make the cameras (which are // normally invisible) visible as well. showHidden -all;