Command Make Editable confusion
-
Hello, i need to run Make Editable command via Python script. Aren't these the same thing?
A. c4d.CallCommand(12236) # Make Editable
B. c4d.CallCommand(c4d.MCOMMAND_MAKEEDITABLE)
Command A runs just fine unlike B. Am i missing something?Thanks.
-
The second is not a
c4d.CallCommand
but anc4d.utils.SendModelingCommand
comandcheers
-
Hey @Gaal-Dornik,
Thank you for reaching out to us and thank you @mogh for providing the answer and the link to our docs. I would also like to point out our SendModelingCommand examples on GitHub.
Cheers,
Ferdinand -
Got it! Thanks.