Hello, new. :)
I am interested in generating new takes within an existing project using the python API / SDK. I am at a loss for which library / calls to make to accomplish this. If anyone can point me to an example script that works with the same library that you can use to trigger auto takes, please share. Thank you very much in advance.
Edit: I notice in the script log that "New Take" and "Auto Take" record.
import c4d
#Welcome to the world of Python
def main():
c4d.CallCommand(300000116) # Script Log...
c4d.CallCommand(431000056) # New Take
c4d.CallCommand(431000081) # Auto Take
if __name__=='__main__':
main()
c4d.EventAdd()
So conceivably I can use this (not terribly excited about it, again new). But then I would be interested in the Layers within that auto generated Take of which the script log does not record (specifically am interested in toggling the "Solo" button via code in the Layers section within the newly created Take). This does not record so I was hoping there was a call to interact with that section.