Set Transparency For Objects Individually - Rhino For Windows Home » How To Reduce Transparency Of Objects In Rhino » Set Transparency For Objects Individually - Rhino For Windows Maybe your like How To Reheat French Fries In Air Fryer How To Relieve Foot Pain From Standing All Day How To Relieve Hip Pain While Sleeping How To Remember Pre Trip Inspection Cdl How To Remove A Hacker From My Phone Number Set transparency for objects individually Rhino Rhino for Windows lawrenceyy February 8, 2016, 7:43pm 1 Lets say I have a complex closed polysrf that defines a region and I want to manipulate/move objects within it while making sure that the objects stay within the region. Is there any way to ghost out closed polysrf so that it is still there as a reference, but transparent enough to see through it (so I can see and select the objects). It is also preferable that when I click on an object that the region is not possible to select, since I don’t want to deal with the selection menu every time I select the objects. I know there is a transparency option in the display options, but I don’t want everything to be transparent. I know that I could apply a transparent material, but I’m looking for something closer to the hide/unhide function. wim (Wim Dekeyser) February 8, 2016, 7:51pm 2 You can either use the Lock / Unlock function or assign a specific -other- display mode to that one object. For example, your viewport can be in shaded but that one object in wireframe. Use SetObjectDisplayMode. Marc (Marc Gibeault) February 8, 2016, 7:51pm 3 Locking the object would work well in this situation. You won’t be able to select it, so the selection menu won’t come up. And you have an option to choose the transparency of locked objects. Pasted image641×554 32.6 KB 2 Likes lawrenceyy February 8, 2016, 7:54pm 4 That’s it. Thanks for the tip. DanBayn February 8, 2016, 7:55pm 5 Unless I misunderstand, it seems that you want to lock the objects and make them transparent at the same time. I wrote a little script for that a long time ago: import rhinoscriptsyntax as rs def LockAndGhost(): objects = rs.GetObjects("Select object to lock",0 , True, True) if objects is None: return else: rs.EnableRedraw(False) for object in objects: rs.SelectObject(object) rs.Command("_SetObjectDisplayMode Mode=Ghost", False) rs.LockObject(object) rs.EnableRedraw(True) if __name__ == "__main__": LockAndGhost() …and to reverse this: import rhinoscriptsyntax as rs def UnLockAndUnghost(): objects = rs.AllObjects() if objects is None: return else: rs.EnableRedraw(False) for object in objects: if rs.IsObjectLocked(object): rs.UnlockObject(object) rs.SelectObject(object) rs.Command("_SetObjectDisplayMode _Mode=UseView _Enter", False) rs.EnableRedraw(True) rs.UnselectAllObjects() if __name__ == "__main__": UnLockAndUnghost() Hope this is useful, Dan Related topics Topic Replies Views Activity Make wireframe or surface transparent? Serengeti (Rhino WIP) 2 505 December 23, 2017 How to display objects as transparent in shaded mode? Rhino windows 4 1063 December 16, 2025 How to display select objects half transparent? Rhino for Mac 4 1963 May 28, 2016 How does one make an object translucent whilst rest are solid? Rhino for Windows 9 591 July 2, 2018 Pen view no transparency for locked objects Rhino for Windows windows 7 91 March 3, 2025 Tag » How To Reduce Transparency Of Objects In Rhino Making Transparent Objects On A Layer...how? - Rhino For Windows Rhino - Set Object Properties To Transparent Or Translucent In View Can't Adjust Object Transparency : R/rhino - Reddit Making Objects Transparent Material.Transparency Property - Rhino Developer Docs Set Transparency Of Ghosted View Via Macro/python - Rhino Using Transparency | Unreal Engine 4.27 Documentation Materials - Enscape Transparent Objects - Land FX To Change Object Transparency | Navisworks Products 10 Useful Tips We Bet You Didn't Know Existed In Rhino 15 Rhino TIPS While Working With Grasshopper - Bim Corner Rhino Notes 2 - UO Blogs