| 124 | } |
| 125 | |
| 126 | void ModuleRouterValue::onExternalTriggerTriggered(Trigger * t) |
| 127 | { |
| 128 | if (outModule == nullptr) return; |
| 129 | if (!enabled->boolValue() || forceDisabled) return; |
| 130 | if(t == sourceValue) outModule->handleRoutedModuleValue(sourceValue, routeParams.get()); |
| 131 | } |
| 132 | |
| 133 | void ModuleRouterValue::childStructureChanged(ControllableContainer* cc) |
| 134 | { |
nothing calls this directly
no test coverage detected