mirror of
https://github.com/mt-mods/signs_lib.git
synced 2024-11-05 01:20:18 +01:00
add initial_properties (#22)
* add initial_properties Adds initial_properties update so that 5.7dev doesn't throw an error when entering text on signs. * Remove newline --------- Co-authored-by: Niklp <89982526+Niklp09@users.noreply.github.com>
This commit is contained in:
parent
cd6bf1eabe
commit
1c881d6f22
14
api.lua
14
api.lua
|
@ -166,12 +166,14 @@ local ctexcache_wide = {}
|
|||
-- entity handling
|
||||
|
||||
minetest.register_entity("signs_lib:text", {
|
||||
collisionbox = { 0, 0, 0, 0, 0, 0 },
|
||||
visual = "mesh",
|
||||
mesh = "signs_lib_standard_sign_entity_wall.obj",
|
||||
textures = {},
|
||||
static_save = true,
|
||||
backface_culling = false,
|
||||
initial_properties = {
|
||||
collisionbox = { 0, 0, 0, 0, 0, 0 },
|
||||
visual = "mesh",
|
||||
mesh = "signs_lib_standard_sign_entity_wall.obj",
|
||||
textures = {},
|
||||
static_save = true,
|
||||
backface_culling = false,
|
||||
},
|
||||
on_activate = function(self)
|
||||
local node = minetest.get_node(self.object:get_pos())
|
||||
if minetest.get_item_group(node.name, "sign") == 0 then
|
||||
|
|
Loading…
Reference in New Issue
Block a user