![]() |
Murl Engine API
Version 2024.1
|
The ILazyNode graph node interface. More...
#include <murl_graph_i_lazy_node.h>
The ILazyNode graph node interface.
Public Member Functions | |
virtual INode * | GetNodeInterface ()=0 |
Get the mutable Graph::INode interface. More... | |
virtual const INode * | GetNodeInterface () const =0 |
Get the constant Graph::INode interface. More... | |
virtual Bool | SetLazyVisible (Bool isVisible)=0 |
Enable/disable output traversals after background tasks are finished. More... | |
virtual Bool | SetActiveAndLazyVisible (Bool enabled)=0 |
Enable/disable both logic and output traversals after background tasks are finished. More... | |
virtual Bool | IsIsLazyActivating () const =0 |
Check if node is activating but not yet visible. More... | |
|
pure virtual |
Get the mutable Graph::INode interface.
This method returns a mutable pointer to the node's Graph::INode interface, to be able to query or modify common node properties such as active state, visibility or ID.
|
pure virtual |
Get the constant Graph::INode interface.
This method returns a constant pointer to the node's Graph::INode interface, to be able to query common node properties such as active state, visibility or ID.
Enable/disable output traversals after background tasks are finished.
The 'visible' state controls whether or not output traversals are carried out on a node implementing this interface and its children.
isVisible | If true, output traversals are enabled. |
Enable/disable both logic and output traversals after background tasks are finished.
enabled | If true, both logic and output traversals are enabled. |
|
pure virtual |
Check if node is activating but not yet visible.