Sdk/Entity: Fix removed components sometimes not being removed

This commit is contained in:
Lynix 2017-04-22 12:59:06 +02:00
parent 140e52203d
commit ec310b9577
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ namespace Ndk
HandledObject(std::move(entity)), HandledObject(std::move(entity)),
m_components(std::move(entity.m_components)), m_components(std::move(entity.m_components)),
m_componentBits(std::move(entity.m_componentBits)), m_componentBits(std::move(entity.m_componentBits)),
m_removedComponentBits(std::move(entity.m_removedComponentBits)),
m_systemBits(std::move(entity.m_systemBits)), m_systemBits(std::move(entity.m_systemBits)),
m_id(entity.m_id), m_id(entity.m_id),
m_world(entity.m_world), m_world(entity.m_world),