| 118 | } |
| 119 | |
| 120 | bool AFCEntity::IsRealTime(const std::string& name) const |
| 121 | { |
| 122 | ARK_ASSERT_RET_VAL(class_meta_ != nullptr, false); |
| 123 | |
| 124 | auto index = class_meta_->GetIndex(name); |
| 125 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 126 | |
| 127 | return IsRealTime(index); |
| 128 | } |
| 129 | |
| 130 | bool AFCEntity::IsRealTime(const uint32_t index) const |
| 131 | { |