| 752 | {} |
| 753 | |
| 754 | std::optional<ComponentTypeIndex> EntitySystemHelpersBase::GetComponentIndex(ExtComponentType type) const |
| 755 | { |
| 756 | auto idx = components_[(unsigned)type].ComponentIndex; |
| 757 | if (idx != UndefinedComponent && GetEntityWorld()->ComponentOps.Get(idx) != nullptr) { |
| 758 | return idx; |
| 759 | } else { |
| 760 | return {}; |
| 761 | } |
| 762 | } |
| 763 | |
| 764 | STDString SimplifyComponentName(StringView name) |
| 765 | { |
no test coverage detected