mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
c415d0520a
* Implement some trigger event calls and command handlers * add zone summary dimissed GM * break and remove log * some cleanup in Gather Targets and blocking out * fix default value of unlock for play cinematic * Log on errors add enum for physics effect type simplify nipoint3 logic check arg count add enum for End behavior * tryparse for nipoint3 * totally didn't forget to include it * bleh c++ is blah * ??? * address feedback * Fix for #1028
23 lines
839 B
C++
23 lines
839 B
C++
#include "ForceVolumeServer.h"
|
|
#include "PhantomPhysicsComponent.h"
|
|
#include "EntityManager.h"
|
|
#include "ePhysicsEffectType.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(ePhysicsEffectType::PUSH);
|
|
phantomPhysicsComponent->SetDirectionalMultiplier(forceAmount);
|
|
phantomPhysicsComponent->SetDirection({ forceX, forceY, forceZ });
|
|
phantomPhysicsComponent->SetPhysicsEffectActive(true);
|
|
|
|
EntityManager::Instance()->SerializeEntity(self);
|
|
}
|