• DrawLine Obscured by objects

    python
    5
    1
    0 Votes
    5 Posts
    1k Views
    chuanzhenC
    @m_magalhaes Thanks ,it works well,I modified the code according to your answer. 1 draw line not obscured by any object.solved 2 before i just draw line in MouseImput() (not add Draw() funtion),as above pic/code, Now i draw line in Draw(),it works well.solved
  • Convenience function for Combobox

    r19 python macos
    5
    0 Votes
    5 Posts
    1k Views
    S
    Thank you again, @m_adam! I ended up using the C++ method, and it worked like a charm. Also, I appreciate the link to the *args and **kwargs at pythontips.com. It was very helpful to understand those concepts. I do have (many) more questions, but I'll start new posts since they're not related to this topic. My Best, Eric
  • Sampling some object's material color channel

    c++ r19 r20
    7
    0 Votes
    7 Posts
    1k Views
    rsodreR
    @r_gigante Nice one, thanks!
  • Tangent space, point clouds and multi UV materials

    3
    0 Votes
    3 Posts
    822 Views
    kbarK
    Hi Aurelein! Great to see the importer is happening. Just thought this old blog post of mine might help you. http://tools4polygons.blogspot.com/2015/12/multiple-uvs-and-lightmaps-in-c4d.html Cheers, Kent
  • Any way to get the originally point pos before posemorph tag?

    7
    0 Votes
    7 Posts
    1k Views
    M
    @m_magalhaes thank for your help!
  • Data Dump Python Function

    9
    0 Votes
    9 Posts
    2k Views
    ManuelM
    hello, if you don't have anything else to add, i'll mark this topic as "solved" Cheers Manuel
  • 0 Votes
    3 Posts
    528 Views
    B
    @m_adam Interesting. I never thought of doing it that way. Thanks for the response. It works as expected. Have a great day ahead!
  • Specify additional directories for DLL dependencies

    3
    0 Votes
    3 Posts
    771 Views
    F
    @r_gigante said in Specify additional directories for DLL dependencies: If I end up with some workaround I'll come back here but for the time being I consider it solved. OK, thanks for the info! /Filip
  • Modify FBX Exporter?

    r20 python
    5
    0 Votes
    5 Posts
    1k Views
    B
    Sure sure we can label at as solved at the moment. Thanks again for the help!
  • Ignore missing plugins - NodeData

    r19 r20 c++
    8
    0 Votes
    8 Posts
    1k Views
    S
    Hello, I don't think you have to do anything else in Write(). WriteObject() should only write the nodes that you inserted into the list head. If you don't add outdated nodes to your list head, they are not written into the file. best wishes, Sebastian
  • Questions about NodeData::CopyTo()

    8
    0 Votes
    8 Posts
    2k Views
    M
    @m_magalhaes Thank you for your patient answers.
  • merge BaceCointainer from one object to another.

    python
    6
    0 Votes
    6 Posts
    1k Views
    ManuelM
    yea, sometime a direct approach is better. By the way, and for those who are reading this post, you can use the ids found in Ospline.h (i'm pretty sure you found them but just in case) SPLINEOBJECT_INTERPOLATION_NONE SPLINEOBJECT_INTERPOLATION_NATURAL SPLINEOBJECT_INTERPOLATION_UNIFORM SPLINEOBJECT_INTERPOLATION_ADAPTIVE SPLINEOBJECT_INTERPOLATION_SUBDIV Cheers Manuel
  • Strange issue: Plugin not loading

    10
    0 Votes
    10 Posts
    3k Views
    F
    This has deviated a bit from the original question, so I will mark this as solved and open a new thread with the remaining questions. Thanks for the input everybody!
  • Treeview adding a new item as an child

    python r20
    4
    0 Votes
    4 Posts
    1k Views
    r_giganteR
    @mp5gosu this completely makes sense and it's indeed a valuable recommendation but I wasn't sure about Pim's requirement here on deriving from Cinema 4D base classes. Cheers, R
  • 0 Votes
    3 Posts
    495 Views
    P
    Yes, I do the same. I can check whether the obj is dirty and set the nbits again. Thank you.
  • BuildNgon() with only two inner edges crashes

    c++ r20 classic api
    8
    0 Votes
    8 Posts
    1k Views
    r_giganteR
    Hi Frank, thanks for following up With regard to your latest question, there are no means to "ask" the Ngon system about that. Checking for the number of vertexes an n-gon is going to use before deciding to use it, it's a reasonable way to proceed. Cheers, Riccardo
  • Retrieve tags that have only "logical" Priority Data?

    r20 python
    3
    0 Votes
    3 Posts
    716 Views
    B
    @m_magalhaes said in Retrieve tags that have only "logical" Priority Data?: descTag = tag.GetDescription(c4d.DESCFLAGS_DESC_NONE) bc = descTag.GetParameter(c4d.EXPRESSION_PRIORITY) if bc[c4d.DESC_NAME] is not None: print tag Thanks @m_magalhaes. Works as expected! Just a little change from c4d.DESCFLAGS_DESC_NONE to c4d.DESCFLAGS_DESC_0 Thanks again. Have a great day ahead!
  • Save node data in Read and Write

    5
    0 Votes
    5 Posts
    1k Views
    M
    @m_adam Thank your for your answer
  • Importing a Class file with Imports

    3
    0 Votes
    3 Posts
    639 Views
    ?
    Hi Maxime, Thank you for the reply. I will give your suggestions a try. -Kevin
  • Copying / cloning a Volume Builder object.

    python r20
    4
    2
    0 Votes
    4 Posts
    857 Views
    P
    @r_gigante said in Copying / cloning a Volume Builder object.: AliasTrans Great news, I will try it. Thanks. Edit: Yes, everything is ok now! But to be honest, I do not fully understand the functionality. The manual says "Normally Cinema 4D provides an alias translator when needed, for example in NodeData.CopyTo(). However, to copy objects manually use: ..." So, the advise is to use this functionality when copying objects? I see the functionality is here since R17, but this is the first time I came across this issue and this solution.