mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Decouple entity minimap markers from nametags replacing with show_on_minimap property (#10443)
This commit is contained in:
parent
b826e39730
commit
660115c1ab
11 changed files with 85 additions and 11 deletions
|
@ -331,6 +331,7 @@ void read_object_properties(lua_State *L, int index,
|
|||
getfloatfield(L, -1, "zoom_fov", prop->zoom_fov);
|
||||
getboolfield(L, -1, "use_texture_alpha", prop->use_texture_alpha);
|
||||
getboolfield(L, -1, "shaded", prop->shaded);
|
||||
getboolfield(L, -1, "show_on_minimap", prop->show_on_minimap);
|
||||
|
||||
getstringfield(L, -1, "damage_texture_modifier", prop->damage_texture_modifier);
|
||||
}
|
||||
|
@ -419,6 +420,8 @@ void push_object_properties(lua_State *L, ObjectProperties *prop)
|
|||
lua_setfield(L, -2, "shaded");
|
||||
lua_pushlstring(L, prop->damage_texture_modifier.c_str(), prop->damage_texture_modifier.size());
|
||||
lua_setfield(L, -2, "damage_texture_modifier");
|
||||
lua_pushboolean(L, prop->show_on_minimap);
|
||||
lua_setfield(L, -2, "show_on_minimap");
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue