1
0
鏡像自 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.
此提交包含在:
lisacvuk
2018-02-04 10:17:46 +01:00
提交者 Loïc Blot
父節點 735fc2a1f2
當前提交 4f5090ff68

查看文件

@@ -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");