mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
25 lines
900 B
C++
25 lines
900 B
C++
|
#include "WblRobotCitizen.h"
|
||
|
#include "MovementAIComponent.h"
|
||
|
#include "RenderComponent.h"
|
||
|
|
||
|
void WblRobotCitizen::OnStartup(Entity* self) {
|
||
|
auto movementAIComponent = self->GetComponent<MovementAIComponent>();
|
||
|
if (!movementAIComponent) return;
|
||
|
// movementAIComponent->Resume();
|
||
|
}
|
||
|
|
||
|
void WblRobotCitizen::OnUse(Entity* self, Entity* user) {
|
||
|
// auto movementAIComponent = self->GetComponent<MovementAIComponent>();
|
||
|
// if (!movementAIComponent) movementAIComponent->Pause();
|
||
|
auto face = NiQuaternion::LookAt(self->GetPosition(), user->GetPosition());
|
||
|
self->SetRotation(face);
|
||
|
auto timer = RenderComponent::PlayAnimation(self, "wave");
|
||
|
self->AddTimer("animation time", timer);
|
||
|
}
|
||
|
|
||
|
void WblRobotCitizen::OnTimerDone(Entity* self, std::string timerName) {
|
||
|
auto movementAIComponent = self->GetComponent<MovementAIComponent>();
|
||
|
if (!movementAIComponent) return;
|
||
|
// movementAIComponent->Resume();
|
||
|
}
|