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
    • Unread
    • Recent
    • Tags
    • Users
    • Login
    1. Home
    2. HolgerBiebrach
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 9
    • Best 0
    • Controversial 0
    • Groups 0

    HolgerBiebrach

    @HolgerBiebrach

    0
    Reputation
    97
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    HolgerBiebrach Unfollow Follow

    Latest posts made by HolgerBiebrach

    • RE: API for new behavior of opnening Windows in Layout

      Thank you @ferdinand . This is awesome. Thanks for taking the time.

      posted in Cinema 4D SDK
      H
      HolgerBiebrach
    • API for new behavior of opnening Windows in Layout

      Hello,
      Is there an Python API already for the new behaviour of some Commands like the Assetbrowser where the Window does open in the Layout not as a floating Window? I would like this for some of my Scripts.

      posted in Cinema 4D SDK r25 python windows macos
      H
      HolgerBiebrach
    • RE: Contentbrowser Python API

      Thanks Maxime. I will try to solve this differently for now. And update my Scripts again when the Python API is ready. Thanks again.

      posted in Cinema 4D SDK
      H
      HolgerBiebrach
    • Contentbrowser Python API

      Hello,
      I have updated my Scripts to R25. But I am shocked to find that the Contentbrowser seems to be gone. My Functions to merge Objects/Materials/Presets to the Scene with Python dont work anymore. I used this in S24 for example:

      c4d.documents.MergeDocument(doc,"preset://HB_RealtimeUtilityShaders.lib4d/HB_OVERWRITEMATERIAL",2):

      Now with R25 I cant find a way to load stuff from the Assetbrowser which makes it impossible to me to ship some of my Scripts with R25 compatibilty. Is there any solution or will this be possible in future?
      I think it is not a good Idea to get rid of the Contentbrowser with missing features in the assetbrowser.

      posted in Cinema 4D SDK
      H
      HolgerBiebrach
    • Modify Sketch&Toon Rendersettings

      Hello,
      How can I modify Sketch&Toon Rendersettings? Following Code does not print the correct vallues. Is this a Bug or something I need to add?

      rd= doc.GetActiveRenderData()
      
      print rd[c4d.OUTLINEMAT_SHADING_BACK]
      print rd[c4d.OUTLINEMAT_SHADING_QUANTISE_LEVEL]
      
      posted in Cinema 4D SDK python
      H
      HolgerBiebrach
    • Modify Spline Gui

      Hi, is there a way to modify the shape of a Spline in the Spline Gui? For example I want to edit the Curve in the Splinedeformer Shape Parameter. The Log only spits out c4d.SPLINEDEFORMEROBJECT_SPLINECONTROL
      How can I modify the cooridates of the spline points?

      posted in Cinema 4D SDK python
      H
      HolgerBiebrach
    • RE: Check if Object is Spline Type

      Hi Maxime. Thanks a lot. That helped me.

      posted in Cinema 4D SDK
      H
      HolgerBiebrach
    • Check if Object is Spline Type

      Hello, I need to check if an Object is a Spline. By that I mean not only a SplineObject but also any kind of Spline Generator like TextSpline, Mospline, Circlespline etc.

      With this Code I usually Check if a Object is a Generator or Deformer (Modifier). But I did not find a way for checking for Splines.

      obj_info = obj.GetInfo()
          is_generator = obj_info & c4d.OBJECT_GENERATOR
      
      posted in Cinema 4D SDK python
      H
      HolgerBiebrach