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

◆ remove_hooks_of_type()

void MayaFlux::Nodes::Generator::Logic::remove_hooks_of_type ( LogicEventType  type)

Definition at line 619 of file Logic.cpp.

620{
621 auto it = std::remove_if(m_all_callbacks.begin(), m_all_callbacks.end(),
622 [type](const LogicCallback& cb) {
623 return cb.event_type == type;
624 });
625 m_all_callbacks.erase(it, m_all_callbacks.end());
626}
std::vector< LogicCallback > m_all_callbacks
Collection of all callback functions.
Definition Logic.hpp:631

References m_all_callbacks.