Solved Unsolo a Node?

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

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

Hi @ferdinand

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

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.

@m_adam

Thanks. Works as expected!