Navigation

    • Register
    • Login
    • Search
    1. Home
    2. HolgerBiebrach
    H

    HolgerBiebrach

    @HolgerBiebrach

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

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    HolgerBiebrach Follow

    Best posts made by HolgerBiebrach

    This user does not have any upvoted posts yet.

    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 •
    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 •
    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 •
    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 •
    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 •
    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 •
    RE: Check if Object is Spline Type

    Hi Maxime. Thanks a lot. That helped me.

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