On 28/05/2018 at 01:56, xxxxxxxx wrote:
This issue has been addressed with Cinema 4D R19. Since then you can send the needed MSG_DESCRIPTION_CHECKUPDATE via Python.
So in a script changing the mode of a MoGraph cloner looks like so:Ö
cloner[c4d.ID_MG_MOTIONGENERATOR_MODE] = 2 # set desired mode
# send message MSG_DESCRIPTION_CHECKUPDATE for proper update
msg = {}
msg['doc'] = doc
msg['drawflags'] = 0
msg['descid'] = c4d.DescID(c4d.ID_MG_MOTIONGENERATOR_MODE)
cloner.Message(c4d.MSG_DESCRIPTION_CHECKUPDATE, msg)
c4d.EventAdd()