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!