Criar um Material via lisp para render
Ola pessoal, alguém sabe se é possível criar um material (para render) via lisp, tipo associar textura, shader, etc em um código lisp?
0
Comments
-
[code](setq myMat
(vla-add
(vla-item
(vla-get-dictionaries
(vla-get-activedocument
(vlax-get-acad-object)
)
)
"ACAD_MATERIAL"
)
"myNewMaterial"
)
)
(entget (vlax-vla-object->ename myMat))[/code]
You will have to dig into the group codes and use entmod to change the settings.0 -
DXF info about materials:
http://docs.autodesk.com/ACD/2014/ENU/files/GUID-E540C5BB-E166-44FA-B36C-5C739878B272.htm0 -
Muito Obrigado!0
This discussion has been closed.