Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush Python 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. Yakuza
    3. Topics
    Y
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 21
    • Groups 0

    Topics

    • Y

      Legacy Code still a thing?

      Watching Ignoring Scheduled Pinned Locked Moved Cinema 4D SDK 2024 c++ windows
      11
      0 Votes
      11 Posts
      2k Views
      Y
      Oh sorry, thank you. I totally missed that.
    • Y

      Plug-in running fine on one OS but not another

      Watching Ignoring Scheduled Pinned Locked Moved Cinema 4D SDK windows sdk
      13
      1
      0 Votes
      13 Posts
      2k Views
      Y
      @ferdinand Yes. it's solved. Thank you.
    • Y

      Project Tool Stops At Non-Existent Path

      Watching Ignoring Scheduled Pinned Locked Moved Cinema 4D SDK project tool sdk
      4
      1
      0 Votes
      4 Posts
      934 Views
      M
      Hi @Yakuza just in case you do have space in your Cinema 4D space, so the projectool don't understand clearly your input so you need to escape it by adding "" so something like: kernel_app_64bit.exe g_updateproject="D:\MAXON_CODE\Maxon Cinema 4D 2023_CODE\sdk" Cheers, Maxime.
    • Y

      C++ Debugging Setup

      Watching Ignoring Scheduled Pinned Locked Moved Cinema 4D SDK
      6
      0 Votes
      6 Posts
      1k Views
      ManuelM
      hello, We need to ask if you are compiling the SDK, your own project, etc. Different question, you should open a different thread It will help other people to find the thread. Cheers, Manuel
    • Y

      Allocation of PrefsDialogObject

      Watching Ignoring Scheduled Pinned Locked Moved Cinema 4D SDK
      4
      0 Votes
      4 Posts
      1k Views
      M
      In your specific example, it could look like this: static maxon::Result<NodeData*> Alloc() { iferr_scope; return NewObj(SoloPrefs) iferr_return; } And when you construct your NodeDataclass, you have to access the actual value of maxon::Result: SoloPrefs::Alloc().GetValue(); Note, if that allocation fails that you can access the error with GetError(). There have changed lots of things, Sebastian already posted the links to the relevant documentation.