mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Add nametag background setting and object property (#10937)
This commit is contained in:
@@ -312,6 +312,17 @@ void read_object_properties(lua_State *L, int index,
|
||||
prop->nametag_color = color;
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
lua_getfield(L, -1, "nametag_bgcolor");
|
||||
if (!lua_isnil(L, -1)) {
|
||||
if (lua_toboolean(L, -1)) {
|
||||
video::SColor color;
|
||||
if (read_color(L, -1, &color))
|
||||
prop->nametag_bgcolor = color;
|
||||
} else {
|
||||
prop->nametag_bgcolor = nullopt;
|
||||
}
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
lua_getfield(L, -1, "automatic_face_movement_max_rotation_per_sec");
|
||||
if (lua_isnumber(L, -1)) {
|
||||
@@ -403,6 +414,13 @@ void push_object_properties(lua_State *L, ObjectProperties *prop)
|
||||
lua_setfield(L, -2, "nametag");
|
||||
push_ARGB8(L, prop->nametag_color);
|
||||
lua_setfield(L, -2, "nametag_color");
|
||||
if (prop->nametag_bgcolor) {
|
||||
push_ARGB8(L, prop->nametag_bgcolor.value());
|
||||
lua_setfield(L, -2, "nametag_bgcolor");
|
||||
} else {
|
||||
lua_pushboolean(L, false);
|
||||
lua_setfield(L, -2, "nametag_bgcolor");
|
||||
}
|
||||
lua_pushnumber(L, prop->automatic_face_movement_max_rotation_per_sec);
|
||||
lua_setfield(L, -2, "automatic_face_movement_max_rotation_per_sec");
|
||||
lua_pushlstring(L, prop->infotext.c_str(), prop->infotext.size());
|
||||
|
Reference in New Issue
Block a user