鏡像自
https://github.com/luanti-org/luanti.git
已同步 2025-11-09 03:25:28 +01:00
Make hud_get return aligment, offset and size. (#7006)
* Make hud_get return aligment and offset. * Return size aswell.
此提交包含在:
@@ -1865,6 +1865,15 @@ void push_hud_element(lua_State *L, HudElement *elem)
|
||||
lua_pushnumber(L, elem->dir);
|
||||
lua_setfield(L, -2, "direction");
|
||||
|
||||
push_v2f(L, elem->offset);
|
||||
lua_setfield(L, -2, "offset");
|
||||
|
||||
push_v2f(L, elem->align);
|
||||
lua_setfield(L, -2, "alignment");
|
||||
|
||||
push_v2s32(L, elem->size);
|
||||
lua_setfield(L, -2, "size");
|
||||
|
||||
// Deprecated, only for compatibility's sake
|
||||
lua_pushnumber(L, elem->dir);
|
||||
lua_setfield(L, -2, "dir");
|
||||
|
||||
新增問題並參考
封鎖使用者