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

◆ force_use_internal()

template<typename... Args>
requires std::constructible_from<Nodes::Generator::Logic, Args...>
void MayaFlux::Buffers::LogicProcessor::force_use_internal ( Args &&...  args)
inline

Forces the processor to use a new internal logic node.

This replaces the current logic node with a new one constructed from the provided arguments, ensuring the processor uses its own internal logic instead of an external one.

Definition at line 277 of file LogicProcessor.hpp.

278 {
279 m_pending_logic = std::make_shared<Nodes::Generator::Logic>(std::forward<Args>(args)...);
280 }
std::shared_ptr< Nodes::Generator::Logic > m_pending_logic
Pending logic node update.