| 406 | } |
| 407 | |
| 408 | bool AFNodeManager::SetDouble(const std::string& name, const double value) |
| 409 | { |
| 410 | auto index = GetIndex(name); |
| 411 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 412 | |
| 413 | return SetDouble(index, value); |
| 414 | } |
| 415 | |
| 416 | bool AFNodeManager::SetString(const std::string& name, const std::string& value) |
| 417 | { |