The Maxon SDK Team is currently short staffed due to the winter holidays. No forum support is being provided between 15/12/2025 and 5/1/2026. For details see Maxon SDK 2025 Winter Holidays.
  • Retrieving Deformed Splines

    c++ r20 sdk
    3
    0 Votes
    3 Posts
    662 Views
    J
    Thanks for the reply, it really helped me out. John
  • How ObjectData add PRIORITY and execute

    c++ r20
    3
    0 Votes
    3 Posts
    873 Views
    M
    @s_bach Thank you!
  • GetObject() on the Python Node inside the Xpresso

    r20 python
    3
    0 Votes
    3 Posts
    573 Views
    B
    @s_bach Thank you! Works as expected.
  • Print to Console for the Python Node in the Expresso Editor?

    r20 python
    4
    0 Votes
    4 Posts
    655 Views
    B
    Gotcha. Thanks for the reminder!
  • This topic is deleted!

    Moved
    3
    1
    0 Votes
    3 Posts
    25 Views
  • Plane by Python Generator

    python
    18
    0 Votes
    18 Posts
    4k Views
    M
    Yes, I'd like to see it of course. Maybe you can share it via Github so others can for and contribute to it.
  • BaseContainer equality ... are you kidding me

    c++ r20
    10
    0 Votes
    10 Posts
    2k Views
    ManuelM
    hello, oupss thanks i got the same warning and forgot to update the code here Cheers Manuel
  • Limit the doc.SearchObject() on the source document?

    r20 python
    5
    0 Votes
    5 Posts
    647 Views
    B
    @m_adam I have a handful of doc.SearchObject() so I was looking for an easier route. I guess there is no way around it except concatenating strings. Anyhow, thanks for the code and confirmation. Will tag this thread as closed. Have a great day ahead!
  • FBX Export plugin option setting with python

    Moved
    3
    0 Votes
    3 Posts
    2k Views
    J
    Thank you @m_adam I completed my exporter scripts to your help. I read Links, I will tagging next time. I'm studing c4d scripts. it still hard. Thank you again.
  • Getting Tag by name

    python r20
    4
    0 Votes
    4 Posts
    901 Views
    S
    @m_magalhaes Oh yeah I forgot to add the tags. I'm using Python by the way. You can count this post as solved.
  • Issue with locale support in R20 plugin

    4
    0 Votes
    4 Posts
    781 Views
    J
    Thank you.
  • Unusual Remove() Results

    r20 python
    4
    0 Votes
    4 Posts
    851 Views
    ManuelM
    hello, just a step to confirm @C4DS answer and if you look again at @r_gigante answer in this post it will make now fully sense. regarding your code i will go like this just to be a bit shorter and easier if i want to add or remove a tag from the list. safeTagList = [5617, 5600, 1604] tags = node.GetTags() for tag in tags: if tag not in safeTagList: tag.Remove() Cheers Manuel
  • Project Tool freeze after win10 update

    project tool
    9
    0 Votes
    9 Posts
    2k Views
    C
    I see, thanks for the quick reply. I will try it and if doesn't work I'll open a new thread about the topic. Cheers Christian
  • Lock / unlock plugin from Plugins menu

    8
    1
    0 Votes
    8 Posts
    1k Views
    mfersaouiM
    @Cairyn Thank you for your detailed reply.
  • Moving\Deleting nodes with Python

    python r20
    3
    0 Votes
    3 Posts
    903 Views
    S
    Works perfectly. Thanks!
  • Hide tag from host object's tabs

    c++ r19
    3
    0 Votes
    3 Posts
    481 Views
    rsodreR
    @m_magalhaes Ok, thanks
  • Getting Dependence of Object

    c++ r20
    3
    0 Votes
    3 Posts
    552 Views
    ManuelM
    hello, this topics will be considered as resolved if you have nothing to add. Cheers Manuel
  • Prevent GetClone() to copy the tags attached on the object?

    r20 python
    3
    0 Votes
    3 Posts
    683 Views
    B
    Thanks for the @r_gigante response. I'll stay away from the non-official method. Is this the reason why COPYFLAGS::PRIVATE_NO_TAGS is not included in the Python documentation of the GetClone() method? I'll use the clone everything then remove tags methodology instead.
  • Signal for actual closing C4D (not C4DPL_ENDPROGRAM)

    c++
    2
    0 Votes
    2 Posts
    590 Views
    M
    Hi @victor, C4DPL_ENDPROGRAM is called really at the end of Cinema 4D just before it quits. It's most likely that you search for C4DPL_ENDACTIVITY which is sent before any PluginEnd so it's the place to free the resources. For more information see Plugin Functions Manual: Shutdown. If you have any questions, please let me know. Cheers, Maxime.
  • Undo's and SendModelingCommand

    r20 python
    2
    0 Votes
    2 Posts
    393 Views
    M
    Hi @pim only UNDOTYPE_NEW is needed. Moreover, I would like to mention that SendModelingCommand offers the MODELINGCOMMANDFLAGS_CREATEUNDO flags in order to automatically creates undo. Cheers, Maxime.