Hi,
I understand that there is a working script from Donovan Keith in this thread.
In his script, he uses GetClone
. I'm guessing to have another copy of the object.
I'm trying to rewrite the script without using the GetClone
method.
Is this possible?
Here is my script so far:
import c4d
from c4d import utils
res = c4d.utils.SendModelingCommand(
command = c4d.MCOMMAND_MAKEEDITABLE,
list = op,
mode = c4d.MODELINGCOMMANDMODE_ALL,
doc = doc )
c4d.EventAdd()
With this script, it gives me an error of
TypeError: GeListNode_mp_subscript expected Description identifier, not long
Did a google search but it doesn't give me any relevant hits.
Is there a way around this?
Thank you for looking at my problem