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

    Unsolo a Node?

    Cinema 4D SDK
    python 2023
    3
    5
    808
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      bentraje
      last edited by

      Hi,

      The sample script provides a way to solo a node.
      But how do I exactly unsolo it?

      Or is it just possible to iterate through all the nodes. And just manually brute force it myself.

      Something like this. And just call it a day.

      for node in node_list:
           node.solo = False
      

      Regards,
      Ben

      ferdinandF 1 Reply Last reply Reply Quote 0
      • ferdinandF
        ferdinand @bentraje
        last edited by

        Hello @bentraje,

        Thank you for reaching out to us. I assume you are talking about the Nodes API and solo_node_r26.py?

        Cheers,
        Ferdinand

        MAXON SDK Specialist
        developers.maxon.net

        B 1 Reply Last reply Reply Quote 0
        • B
          bentraje @ferdinand
          last edited by

          Hi @ferdinand

          Yes, I'm referring to that script.
          Is there a corresponding UNSOLO script?

          1 Reply Last reply Reply Quote 0
          • M
            m_adam
            last edited by

            Hi @bentraje to unsolo a node you need to pass an empty NodePath like so

            nimbusRef.SetPath(maxon.NIMBUS_PATH.SOLO, maxon.NodePath())
            

            Cheers,
            Maxime.

            MAXON SDK Specialist

            Development Blog, MAXON Registered Developer

            1 Reply Last reply Reply Quote 0
            • B
              bentraje
              last edited by

              @m_adam

              Thanks. Works as expected!

              1 Reply Last reply Reply Quote 0
              • First post
                Last post