| 1143 | |
| 1144 | |
| 1145 | float Engine::getParamSmoothValue(Module* module, int paramId) { |
| 1146 | if (internal->smoothModule == module && internal->smoothParamId == paramId) |
| 1147 | return internal->smoothValue; |
| 1148 | return module->params[paramId].getValue(); |
| 1149 | } |
| 1150 | |
| 1151 | |
| 1152 | void Engine::addParamHandle(ParamHandle* paramHandle) { |