| 1660 | } |
| 1661 | |
| 1662 | EntityHandle EntitySystemHelpersBase::GetEntityHandle(FixedString const& guidString) |
| 1663 | { |
| 1664 | auto guid = Guid::ParseGuidString(guidString.GetStringView()); |
| 1665 | if (guid) { |
| 1666 | return GetEntityHandle(*guid); |
| 1667 | } else { |
| 1668 | return {}; |
| 1669 | } |
| 1670 | } |
| 1671 | |
| 1672 | EntityHandle EntitySystemHelpersBase::GetEntityHandle(Guid const& uuid) |
| 1673 | { |