2021-12-05 17:54:36 +00:00
|
|
|
#include "ForceVolumeServer.h"
|
|
|
|
#include "PhantomPhysicsComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
|
|
|
|
void ForceVolumeServer::OnStartup(Entity* self) {
|
|
|
|
auto* phantomPhysicsComponent = self->GetComponent<PhantomPhysicsComponent>();
|
|
|
|
|
|
|
|
if (phantomPhysicsComponent == nullptr) return;
|
|
|
|
|
|
|
|
const auto forceAmount = self->GetVar<float>(u"ForceAmt");
|
|
|
|
const auto forceX = self->GetVar<float>(u"ForceX");
|
|
|
|
const auto forceY = self->GetVar<float>(u"ForceY");
|
|
|
|
const auto forceZ = self->GetVar<float>(u"ForceZ");
|
|
|
|
|
|
|
|
phantomPhysicsComponent->SetEffectType(0); // PUSH
|
|
|
|
phantomPhysicsComponent->SetDirectionalMultiplier(forceAmount);
|
|
|
|
phantomPhysicsComponent->SetDirection({ forceX, forceY, forceZ });
|
|
|
|
phantomPhysicsComponent->SetPhysicsEffectActive(true);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
EntityManager::Instance()->SerializeEntity(self);
|
|
|
|
}
|