2021-12-05 17:54:36 +00:00
|
|
|
#include "ActNinjaTurret.h"
|
2023-12-29 04:24:30 +00:00
|
|
|
#include "eQuickBuildState.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-12-29 04:24:30 +00:00
|
|
|
void ActNinjaTurret::OnQuickBuildNotifyState(Entity* self, eQuickBuildState state) {
|
|
|
|
if (state == eQuickBuildState::COMPLETED) {
|
2021-12-05 17:54:36 +00:00
|
|
|
self->SetVar(u"AmBuilt", true);
|
2023-12-29 04:24:30 +00:00
|
|
|
} else if (state == eQuickBuildState::RESETTING) {
|
2021-12-05 17:54:36 +00:00
|
|
|
self->SetVar(u"AmBuilt", false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ActNinjaTurret::OnFireEventServerSide(Entity* self, Entity* sender, std::string args, int32_t param1, int32_t param2,
|
|
|
|
int32_t param3) {
|
|
|
|
if (args == "ISpawned" && self->GetVar<bool>(u"AmBuilt")) {
|
|
|
|
sender->Smash();
|
|
|
|
}
|
|
|
|
}
|