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

◆ NodeChainSemantics

Defines how to handle existing nodes when creating a new chain.

Enumerator
REPLACE_TARGET 

Unregister the target and register with the new chain node.

PRESERVE_BOTH 

Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal.

ONLY_CHAIN 

Only keep the new chain node, unregistering the source and target.

Definition at line 11 of file NodeSpec.hpp.

11 : uint8_t {
12 REPLACE_TARGET, ///< Unregister the target and register with the new chain node
13 PRESERVE_BOTH, ///< Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal
14 ONLY_CHAIN ///< Only keep the new chain node, unregistering the source and target
15};
@ PRESERVE_BOTH
Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal.
Definition NodeSpec.hpp:13
@ ONLY_CHAIN
Only keep the new chain node, unregistering the source and target.
Definition NodeSpec.hpp:14
@ REPLACE_TARGET
Unregister the target and register with the new chain node.
Definition NodeSpec.hpp:12