hud events update

This commit is contained in:
MihailRis
2024-02-19 04:22:27 +03:00
parent cac963bd7b
commit 9d82e3416b
4 changed files with 16 additions and 2 deletions
+6 -2
View File
@@ -4,6 +4,8 @@
#include "lua/libhud.h"
#include "lua/LuaState.h"
#include "../../frontend/hud.h"
#include "../../objects/Player.h"
#include "../../files/files.h"
#include "../../engine.h"
@@ -21,7 +23,8 @@ void scripting::on_frontend_init(Hud* hud) {
for (auto& pack : scripting::engine->getContentPacks()) {
if (state->getglobal(pack.id+".hudopen")) {
state->callNoThrow(0);
state->pushinteger(hud->getPlayer()->getId());
state->callNoThrow(1);
}
}
}
@@ -30,7 +33,8 @@ void scripting::on_frontend_close() {
scripting::hud = nullptr;
for (auto& pack : scripting::engine->getContentPacks()) {
if (state->getglobal(pack.id+".hudclose")) {
state->callNoThrow(0);
state->pushinteger(hud->getPlayer()->getId());
state->callNoThrow(1);
}
}
}