Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Unread
    • Recent
    • Tags
    • Users
    • Login
    1. Maxon Developers Forum
    2. wob
    3. Posts
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by wob

    • RE: problem with loading plugin in python_init.py

      @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.

      posted in Cinema 4D SDK
      W
      wob
    • 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!

      posted in Cinema 4D SDK
      W
      wob
    • 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.

      posted in Cinema 4D SDK
      W
      wob
    • 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!

      posted in Cinema 4D SDK
      W
      wob
    • 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

      posted in Cinema 4D SDK python r20 r21
      W
      wob