| 390 | } |
| 391 | |
| 392 | bool AFNodeManager::SetUInt64(const std::string& name, const uint64_t value) |
| 393 | { |
| 394 | auto index = GetIndex(name); |
| 395 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 396 | |
| 397 | return SetUInt64(index, value); |
| 398 | } |
| 399 | |
| 400 | bool AFNodeManager::SetFloat(const std::string& name, const float value) |
| 401 | { |