2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "CppScripts.h"
|
|
|
|
|
|
|
|
class AgQbElevator : public CppScripts::Script {
|
|
|
|
public:
|
|
|
|
void OnStartup(Entity* self) override;
|
2023-12-29 04:24:30 +00:00
|
|
|
void OnQuickBuildComplete(Entity* self, Entity* target) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override;
|
|
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void killTimerStartup(Entity* self) const;
|
|
|
|
|
|
|
|
// constants
|
|
|
|
float endTime = 4.0f;
|
|
|
|
float startTime = 8.0f;
|
|
|
|
float killTime = 10.0f;
|
|
|
|
float proxRadius = 5.0f;
|
|
|
|
};
|