@m_adam it's strange, but this small script works fine without any problems with cinema 4d s22. cinema 4d r20 show this error only.
Latest posts made by wob
-
RE: problem with loading plugin in python_init.py
-
problem with loading plugin in python_init.py
hello! i try to start cinema 4d, auto-load scene with python_init.py script and auto-start render-exporter. i wrote this simple script to do it:
import c4d def main(): c4d.documents.LoadFile(path_to_scene) c4d.CallCommand(exporter_command) if __name__=='__main__': main()
works fine, but i found that if scene contains plugin "Signal", i get message "several plugins used in this project are missing (Signal)". another plugins of this scene load fine. what am I doing wrong?
thank you!
-
any way to close cinema 4d from the python script
is there any way to close cinema 4d app from the python script? i foundrestart cinema 4d command only in python sdk but what's about quit / exit command? is it possible?
i need it to free RAM after exporting scene in standalone render via python script.
thanks.
-
pop-up dialog windows and c4dpy : the problem
hello, i try to open any type of cinema 4d dialog window with my script via c4dpy (open file, save file dialogs etc) and get nothing. it seems like c4dpy ignores any type of pop-up windows. how can i use usual dialog windows or pop-up dialogs with c4dpy? is there any way to do this?
thanks!
-
How to run Python script at moment scene is opened?
I'm trying to write cinema 4d python script, that will auto-run render function when scene is opened. How to run Python script at moment scene is opened?
Thanks