• 0 Votes
    4 Posts
    533 Views
    chuanzhenC
    @m_magalhaes Thanks, hope to fix it in a future release.
  • Executing action after the scene is rendered

    2
    0 Votes
    2 Posts
    451 Views
    r_giganteR
    Hi pe_matthewalexander , thanks for reaching out us. With regard to your question I suggest the following options (which strongly depend on the context you're supposed to run) implement a MessageData::CoreMessage() and check for EVMSG_RAYTRACER_FINISHED to be dispatched; use the BaseDocument::RenderDocument() to fire and control the render execution use the Remote effect as described here to have an external script being run upon rendering being completed implement your own VideoPostData (assuming you're willing to move to C++) Best, Riccardo
  • 0 Votes
    2 Posts
    511 Views
    r_giganteR
    Hi temple, thanks for reaching out us. With regard to your question, I confirm that it's not possible to switch to Python 3.x since R20 is compiled against Python 2.x. Best, Riccardo
  • Python Node Executing Twice (R20.059 Bug?)

    r20 python
    4
    0 Votes
    4 Posts
    574 Views
    M
    My workaround still works for earlier version so you don't really need to check for version but it's up to you. Cheers, Maxime.
  • Create Quicktab Radio Buttons

    r20 python
    4
    0 Votes
    4 Posts
    672 Views
    B
    @s_bach Thank you. Works as expected.
  • Updating Tool Settings?

    2
    0 Votes
    2 Posts
    568 Views
    S
    Hello, which tool do you actually want to configure? best wishes, Sebastian
  • Unable to Modify the Input Port of the Math Node

    r20 python
    3
    0 Votes
    3 Posts
    643 Views
    B
    RE: appears they need a little bit more love. Thanks for the clarification. The code works as expected!
  • Press "Yes" when document is opened?

    r20 python
    5
    0 Votes
    5 Posts
    699 Views
    B
    @s_bach RE: The dialog box is not opened when you load the document. The dialog box is opened when you try to save it using CallCommand(). Thanks for the clarification. The code you presented works as expected. Thank you!
  • Retrieving Deformed Splines

    c++ r20 sdk
    3
    0 Votes
    3 Posts
    712 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
    999 Views
    M
    @s_bach Thank you!
  • GetObject() on the Python Node inside the Xpresso

    r20 python
    3
    0 Votes
    3 Posts
    616 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
    693 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
    688 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
    983 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
    866 Views
    J
    Thank you.
  • Unusual Remove() Results

    r20 python
    4
    0 Votes
    4 Posts
    947 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