• How ObjectData add PRIORITY and execute

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

    r20 python
    3
    0 Votes
    3 Posts
    635 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
    697 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
    699 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
    1k 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
    892 Views
    J
    Thank you.
  • Unusual Remove() Results

    r20 python
    4
    0 Votes
    4 Posts
    1k 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
    1k Views
    S
    Works perfectly. Thanks!
  • Hide tag from host object's tabs

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

    c++ r20
    3
    0 Votes
    3 Posts
    603 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
    786 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
    678 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
    420 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.
  • Frame selected objects correctly in camera

    python r19
    13
    0 Votes
    13 Posts
    3k Views
    r_giganteR
    Thanks a lot @AndreAnjos for sharing the code. I'll try to have a look at it and maybe contribute if/where needed. For the time being I'm glad to hear that you were able to tackle with it. Cheers, Riccardo