MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ set_in_network()

void MayaFlux::Nodes::Node::set_in_network ( bool  networked)
inline

Marks the node as being part of a NodeNetwork.

Parameters
networkedTrue if the node is managed within a NodeNetwork

This method sets a flag indicating whether the node is part of a NodeNetwork. When set, certain behaviors such as event firing may be disabled to prevent redundant or conflicting notifications.

Definition at line 584 of file Node.hpp.

584{ m_networked_node = networked; }
bool m_networked_node
Flag indicating if the node is part of a NodeNetwork This flag is used to disable event firing when t...
Definition Node.hpp:421