| 784 | |
| 785 | |
| 786 | void ScriptModulationMatrix::TargetDataBase::timerCallback() |
| 787 | { |
| 788 | auto thisValue = getModValue(); |
| 789 | |
| 790 | if (thisValue != lastValue) |
| 791 | { |
| 792 | lastValue = thisValue; |
| 793 | dynamic_cast<ScriptComponent*>(sc.getObject())->sendRepaintMessage(); |
| 794 | } |
| 795 | } |
| 796 | |
| 797 | void ScriptModulationMatrix::TargetDataBase::init(const var& json) |
| 798 | { |
nothing calls this directly
no test coverage detected