forked from mtcontrib/signs_lib
a5e711d354
if available on a given sign. The sign must have a "foo:bar_widefont" variant, with the horizontal scaling set appropriately (about half of the normal value for the narrow-font sign) Add new corresponding API to anto-generate those signs where desired; use this feature in default wood and steel signs
41 lines
1.4 KiB
Lua
41 lines
1.4 KiB
Lua
-- Definitions for standard minetest_game wooden and steel wall signs
|
|
|
|
signs_lib.register_sign("default:sign_wall_wood", {
|
|
description = "Wooden wall sign",
|
|
inventory_image = "signs_lib_sign_wall_wooden_inv.png",
|
|
tiles = {
|
|
"signs_lib_sign_wall_wooden.png",
|
|
"signs_lib_sign_wall_wooden_edges.png",
|
|
},
|
|
entity_info = "standard",
|
|
allow_hanging = true,
|
|
allow_widefont = true
|
|
})
|
|
|
|
signs_lib.register_sign("default:sign_wall_steel", {
|
|
description = "Steel wall sign",
|
|
inventory_image = "signs_lib_sign_wall_steel_inv.png",
|
|
tiles = {
|
|
"signs_lib_sign_wall_steel.png",
|
|
"signs_lib_sign_wall_steel_edges.png",
|
|
},
|
|
groups = signs_lib.standard_steel_groups,
|
|
sounds = signs_lib.standard_steel_sign_sounds,
|
|
locked = true,
|
|
entity_info = "standard",
|
|
allow_hanging = true,
|
|
allow_widefont = true
|
|
})
|
|
|
|
minetest.register_alias("signs:sign_hanging", "default:sign_wall_wood_hanging")
|
|
minetest.register_alias("basic_signs:hanging_sign", "default:sign_wall_wood_hanging")
|
|
|
|
table.insert(signs_lib.lbm_restore_nodes, "signs:sign_hanging")
|
|
table.insert(signs_lib.lbm_restore_nodes, "basic_signs:hanging_sign")
|
|
|
|
-- insert the old wood sign-on-fencepost into signs_lib's conversion LBM
|
|
|
|
table.insert(signs_lib.old_fenceposts_with_signs, "signs:sign_post")
|
|
signs_lib.old_fenceposts["signs:sign_post"] = "default:fence_wood"
|
|
signs_lib.old_fenceposts_replacement_signs["signs:sign_post"] = "default:sign_wall_wood_onpole"
|