Sp3 5 ecs #70

Merged
maverickdgg merged 2 commits from SP3-5-ECS into main 2022-09-30 20:36:03 +08:00
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@
#include "../Events/SHComponentRemovedEvent.h"
//#include "Scene/SHSceneNode.h"
#include "SH_API.h"
#include "Events/SHEventManager.hpp"
#include <cassert>
@ -330,7 +331,7 @@ namespace SHADE
SHComponentRemovedEvent eventData;
eventData.eid = entityID;
eventData.addedComponentType = ComponentFamily::GetID<T>();
eventData.removedComponentType = ComponentFamily::GetID<T>();
SHEventManager::BroadcastEvent<SHComponentRemovedEvent>(eventData, SH_COMPONENT_REMOVED_EVENT);
}