| 237 | } |
| 238 | |
| 239 | float AFNodeManager::GetFloat(const std::string& name) const |
| 240 | { |
| 241 | auto index = GetIndex(name); |
| 242 | ARK_ASSERT_RET_VAL(index > 0, NULL_FLOAT); |
| 243 | |
| 244 | return GetFloat(index); |
| 245 | } |
| 246 | |
| 247 | double AFNodeManager::GetDouble(const std::string& name) const |
| 248 | { |