I often work with files coming from other people.
Some of their layers have set object’s color to be different from Layer color.
Can somebody help me with a macro that makes all objects display color to match the layer assigned color?
Oh I see.
Over the long time I m using Rhino, I got a good knowledge of its use, but I now strive to increase my work speed.
Since its not possible to be done with a macro, can it be scripted?
Any volunteers?
(I wish I had the time to learn a bit scripting…)
Sub ResetObjectColor
Dim arrObjects : arrObjects = Rhino.AllObjects
If IsArray(arrObjects) Then
Call Rhino.ObjectColorSource(arrObjects, 0)
End If
End Sub