| 342 | } |
| 343 | |
| 344 | bool AFCEntity::SetFloat(const std::string& name, const float value) |
| 345 | { |
| 346 | ARK_ASSERT_RET_VAL(m_pNodeManager != nullptr, false); |
| 347 | |
| 348 | return m_pNodeManager->SetFloat(name, value); |
| 349 | } |
| 350 | |
| 351 | bool AFCEntity::SetDouble(const std::string& name, const double value) |
| 352 | { |
no outgoing calls
no test coverage detected