Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Unread
    • Recent
    • Tags
    • Users
    • Login
    1. Maxon Developers Forum
    2. peter_horvath
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 23
    • Best 3
    • Controversial 0
    • Groups 0

    peter_horvath

    @peter_horvath

    3
    Reputation
    8
    Profile views
    23
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    peter_horvath Unfollow Follow

    Best posts made by peter_horvath

    • Animated viewport preview in Node Materials

      I'd like to add support for animated previews in my custom node space. I assumed, that enabling Animate Preview on the Viewport tab of the material means that the GetMaterialParameters() function of my viewport material is called every time the frame changes in the scene.
      eed0004f-9cb2-44ac-a1ec-e387e9fc1811-image.png
      However that does not seem to be the case, nothing happens when moving the timeline. Am I missing something? Do you have an example of how to support animated previews?

      posted in Cinema 4D SDK c++
      P
      peter_horvath
    • RE: Particles and RenderDocument

      Hey Ferdinand,

      Nothing special about the context. Tried cloning with AliasTrans, but it does not help.

      I'm attaching a simple code taken from the manual in case you want to reproduce the issue. The code adds two commands, one calling RenderDocument() with the RENDERFLAGS::NODOCUMENTCLONE flag and one without. You can see, that the one with the flag does not render the particles. Note, that no manual cloning is involved in the example, just loading the document, which might indicate that it's indeed a bug.

      test_renderdocument.zip

      Thanks,
      Peter

      posted in Bugs
      P
      peter_horvath
    • Copy over additional nodes with a Node Material

      This might be a very unique use-case.
      We define a custom node system that is used in Node Materials. We have a shader that references another nodes from the scene, such as materials and objects. Currently when the Node Materials is copied over to a new scene, these references are lost. Ideally, the referenced nodes should be cloned and copied over to the new scene along with the material. Is it possible to do this with the current SDK?
      This was not an issue with our legacy material, since it was our custom MaterialData implementation, and so we had control over copying by overriding the CopyTo() method.

      posted in Cinema 4D SDK c++
      P
      peter_horvath

    Latest posts made by peter_horvath

    • RE: MoGraph data index and Multi-Instances

      Hi Ferdinand,

      Thank you, I will consider different approaches based on your reply and might file a feature request as you suggested if I can't find any solution.

      Thanks,
      Peter

      posted in Cinema 4D SDK
      P
      peter_horvath
    • RE: MoGraph data index and Multi-Instances

      Hi Ferdinand,

      Thanks for your feedback, Yes, I'm aware of the object structure. Let me explain a bit more what I'm trying to do and what I'm missing.

      Here's a simple example of a Cloner with two shapes, a Sphere and a Torus, and a Plain Effector with a Spherical Field. The effector sets the weight of the clones (1 to zero from the middle) and also modifies the shape order ("Modify Clone" is enabled), so that Torus shapes are in the middle and Spheres are outside the field. So the shape order is not necessarily the same as how the data is stored on the mograph tag. I'd like to export weight as user data per shape. In Instance or Render Instance mode I can read the mograph data index from the clones, that tells me the weight from the MoData tag.

      image.png

      In Multi-Instance mode, I would expect the same result. However, since the indexes are not available, I can not connect the MoGraph data to the instances and read the weights. As you said, in Multi-Instance mode there are reference shapes and Instance Objects per each reference shape in the cache. The InstanceObject can return the matrices and colors of the individual shape instances, but no indexes as far as I can see. I'm not sure how complicated is to generate this data, but would be nice to have.

      image.png

      Cheers,
      Peter

      posted in Cinema 4D SDK
      P
      peter_horvath
    • MoGraph data index and Multi-Instances

      When using a MoGraph Cloner in Instance or Render Instance mode, the MoGraph data index is available via the BC_ID_MODATAINDEX id in each clone.

      clone->GetDataInstance()->GetInt32(BC_ID_MODATAINDEX);
      

      This is the index of the clone in the data arrays of the MoGraph Data tag.

      Is this index available in Multi-Instance mode as well via the SDK? Via the InstanceObject maybe?
      We'd need this index to be able to export MoGraph attributes to each clone/instance.

      posted in Cinema 4D SDK c++
      P
      peter_horvath
    • RE: Hide port from input menu in the Node Editor

      Thanks for looking into it @m_adam.

      Maybe this is specific to Arnold, but there are shader parameters that are not linkable. It's a flag on the parameter. Typically, boolean and enum type parameters are not linkable, like the ones highlighted in the screenshot below. But could be any parameters really, depending on the shader code.

      image.png

      posted in Cinema 4D SDK
      P
      peter_horvath
    • RE: Input port menu in Node Editor does not respect order index

      Hi Ferdinand,

      Thank you for your reply. Sorry for not being completely clear. Yes, I meant maxon::nodes::ReqOrderIndex. I feel like it would be more natural if the input menu would match the order in the Attribute Editor, instead of listing the items in alphabetical order. Being able to control the behavior via the API could be welcome. I'll make a feature request, just in case. What's the best option to file an API request? Should I use the form in support.maxon.net or the contact form here?

      Thanks,
      Peter

      posted in Cinema 4D SDK
      P
      peter_horvath
    • RE: Distribute asset library as a zip file

      Hi Ferdinand,

      Thank you for the detailed description, it's very useful, I have a good understanding now how this should work. Yes, the main goal here is installer optimization. Unfortunately, hosting online is not an option. I'll give it a thorough testing to see if we hit any limitations with this approach, and we might drop the idea if so.

      Thanks,
      Peter

      posted in Cinema 4D SDK
      P
      peter_horvath
    • Input port menu in Node Editor does not respect order index

      We set the order index of the ports and they are displayed properly in the Attribute Editor, but the input port menu does not respect this and groups and ports are displayed in a "random" order, that does not match the UI and is quite confusing.
      5142e4ab-795f-40ed-b5ce-b53056094544-image.png
      Is this a limitation or is there a flag or other attribute we have to set to match the layout of the Attribute Editor?

      posted in Cinema 4D SDK c++
      P
      peter_horvath
    • Hide port from input menu in the Node Editor

      Is there a flag to hide a port from the input port menu in the Node Editor. We'd like to have the parameters displayed in the Attribute Manager, but there are some that are not linkable, thus it does not make sense to have them in the input port menu.
      1d27411e-c6d2-4667-8b56-57eea1b02413-image.png

      posted in Cinema 4D SDK c++
      P
      peter_horvath
    • Distribute asset library as a zip file

      Our plugin ships with a few material assets. I'm wondering if it's possible to install our custom asset library (asset database) as a zip file, instead of hundreds of files and folders.

      posted in Cinema 4D SDK 2024
      P
      peter_horvath
    • RE: Copy over additional nodes with a Node Material

      Sure, no worries, it's not a high priority, more like a nice to have feature. We can manage without this. I was just wondering if something like this could be possible already in the context of node materials. Thanks.

      posted in Cinema 4D SDK
      P
      peter_horvath