| 489 | } |
| 490 | |
| 491 | void ResFX::SetValue(const char* key, float val)LNOEXCEPT |
| 492 | { |
| 493 | auto i = m_pBindingVar.find(key); |
| 494 | if (i != m_pBindingVar.end()) |
| 495 | { |
| 496 | for (auto& p : i->second) |
| 497 | { |
| 498 | if (p->GetValueType() == F2DEPVTYPE_FLOAT) |
| 499 | p->SetFloat(val); |
| 500 | } |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | void ResFX::SetValue(const char* key, fcyColor val)LNOEXCEPT |
| 505 | { |
no test coverage detected