| 1108 | |
| 1109 | |
| 1110 | float Engine::getParamSmoothValue(Module* module, int paramId) { |
| 1111 | if (internal->smoothModule == module && internal->smoothParamId == paramId) |
| 1112 | return internal->smoothValue; |
| 1113 | return module->params[paramId].getValue(); |
| 1114 | } |
| 1115 | |
| 1116 | |
| 1117 | void Engine::addParamHandle(ParamHandle* paramHandle) { |