mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 12:18:22 +00:00
20 lines
628 B
C++
20 lines
628 B
C++
|
#include "StunImmunity.h"
|
||
|
#include "DestroyableComponent.h"
|
||
|
#include "ControllablePhysicsComponent.h"
|
||
|
|
||
|
void StunImmunity::OnStartup(Entity* self) {
|
||
|
auto* destroyableComponent = self->GetComponent<DestroyableComponent>();
|
||
|
if (destroyableComponent) {
|
||
|
destroyableComponent->SetStatusImmunity(
|
||
|
eStateChangeType::PUSH, false, false, true, true, false, false, false, false, true
|
||
|
);
|
||
|
}
|
||
|
|
||
|
auto* controllablePhysicsComponent = self->GetComponent<ControllablePhysicsComponent>();
|
||
|
if (controllablePhysicsComponent) {
|
||
|
controllablePhysicsComponent->SetStunImmunity(
|
||
|
eStateChangeType::PUSH, self->GetObjectID(), true
|
||
|
);
|
||
|
}
|
||
|
}
|