make selected object visible or invisible in outliner

Anonymous

make selected object visible or invisible in outliner

Anonymous
Not applicable

hi,

i met a file that contain some object(group,joint and curve) that invisible in outliner but the object is able to find through node editor or hypergraph.. i had checked on ignore "Hidden in Outliner", checked the shapeNode's "visibility" and "LOD visibility", and also the viewport, but it still invisible in outliner.  I have attached a screenshot along with this post, do anyone have any idea on this? Your help is much appreciated, thank you

0 Likes
Reply
Accepted solutions (1)
2,525 Views
2 Replies
  • maya
Replies (2)

jmreinhart
Advisor
Advisor
Accepted solution

You can go to outliner > display > ignore hidden in outliner. Or select the hidden nodes and run this script to unhide them.

$sel = `ls -sl`;

for ($each_object in $sel){
    setAttr ($each_object + ".hiddenInOutliner") false;
    AEdagNodeCommonRefreshOutliners();
}
0 Likes

Anonymous
Not applicable

 @jmreinhart 

 hi thanks for reply but i had try the "ignore hidden in outliner" before..but that can't make the object show in outliner..
 

0 Likes