| 3153 | } |
| 3154 | |
| 3155 | float ScriptingApi::Content::ScriptTable::getTableValue(float inputValue) |
| 3156 | { |
| 3157 | if (auto t = getCachedTable()) |
| 3158 | { |
| 3159 | if (SampleLookupTable *st = dynamic_cast<SampleLookupTable*>(t)) |
| 3160 | { |
| 3161 | return st->getInterpolatedValue(inputValue, sendNotificationAsync); |
| 3162 | } |
| 3163 | } |
| 3164 | |
| 3165 | return 0.0f; |
| 3166 | }; |
| 3167 | |
| 3168 | |
| 3169 | void ScriptingApi::Content::ScriptTable::setSnapValues(var snapValueArray) |
no test coverage detected