set data
| 358 | |
| 359 | // set data |
| 360 | bool AFNodeManager::SetBool(const std::string& name, bool value) |
| 361 | { |
| 362 | auto index = GetIndex(name); |
| 363 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 364 | |
| 365 | return SetBool(index, value); |
| 366 | } |
| 367 | |
| 368 | bool AFNodeManager::SetInt32(const std::string& name, const int32_t value) |
| 369 | { |