| 217 | } |
| 218 | |
| 219 | void ParticleEffect::SetParameterValue(const StringView& emitterTrackName, const StringView& paramName, const Variant& value) |
| 220 | { |
| 221 | auto param = GetParameter(emitterTrackName, paramName); |
| 222 | CHECK(param); |
| 223 | param->SetValue(value); |
| 224 | } |
| 225 | |
| 226 | void ParticleEffect::ResetParameters() |
| 227 | { |
no test coverage detected