| 79 | //------------------------------------------------------------------------- |
| 80 | |
| 81 | void Entity::CreateAdditionalRequiredComponents() |
| 82 | { |
| 83 | EE_ASSERT( m_status == Status::Unloaded ); |
| 84 | Threading::RecursiveScopeLock myLock( m_internalStateMutex ); |
| 85 | |
| 86 | for ( auto pSystem : m_systems ) |
| 87 | { |
| 88 | pSystem->CreateAdditionalRequiredComponents( this ); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | void Entity::LoadComponents( EntityModel::LoadingContext const& loadingContext ) |
| 93 | { |
| 94 | EE_ASSERT( m_status == Status::Unloaded ); |
| 95 | Threading::RecursiveScopeLock myLock( m_internalStateMutex ); |
| 96 |
no test coverage detected