SOLVES!
Hello,
I’ve just updated my rhino and now I can’t see my objects in rendered view.
Also Pictureframe wont show its image anymore in Wireframe.
Left = WireFrame Right = Rendered
here’s the file:
EmptyFile.3dm (78.8 KB)
Anyone can check if they have the same problem?
Figured it out. It has to do something with a plugin:
Dim s As New DocObjects.ObjectEnumeratorSettings
s.HiddenObjects = True
For Each obj In RhinoDoc.ActiveDoc.Objects.GetObjectList(s)
Dim Mat As DocObjects.Material = obj.GetMaterial(True)
Mat.Transparency = 65
Mat.CommitChanges()
Next
This will let items disappear somehow…
For Each obj As DocObjects.Material In RhinoDoc.ActiveDoc.Materials
obj.Transparency = 65
obj.CommitChanges()
Next
Oke. Somehow… it changed the transparancy to 100 when i do this.
ah its between 0 and 1. 0.01 * 65…