@Holo wrote:
Hi guys, for some reason this doesn’t make B a child of A:
import rhinoscriptsyntax as rs rs.AddLayer("A") rs.AddLayer("B", parent="A")
but this does:
import rhinoscriptsyntax as rs rs.AddLayer("A") rs.AddLayer("B", color=(255,0,255), parent="A")
So not adding a color messes something up.
Cheers
Posts: 6
Participants: 3