Add new floor pattern, add large circular lights.

master
Thomas Leathers 2020-12-17 23:23:38 -05:00
parent 342b40d454
commit d9cb9646b8
4 changed files with 23 additions and 0 deletions

View File

@ -20,6 +20,13 @@ minetest.register_node("modern_ish:floor_pattern_2", {
description = "patterned floor 2.",
is_ground_content = false,
})
minetest.register_node("modern_ish:floor_pattern_3", {
tiles = {"modern_ish_floor_pattern_3.png"},
groups = {snappy=1, choppy=2},
light_source = 0,
description = "patterned floor 3.",
is_ground_content = false,
})
minetest.register_node("modern_ish:floor_warning", {
tiles = {"modern_ish_floor_warning.png"},
groups = {snappy=1, choppy=2},

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 953 B

View File

@ -98,6 +98,22 @@ minetest.register_node("modern_ish:light_minilamp_4", {
},
})
minetest.register_node("modern_ish:round_light", {
tiles = {"modern_ish_round_light.png"},
inventory_image = "modern_ish_round_light.png",
groups = {snappy=1, choppy=2},
paramtype = "light",
light_source = 14,
walkable = false,
drawtype = "signlike",
sunlight_propagates = true,
paramtype2 = "wallmounted",
description = "a large, circular light.",
is_ground_content = false,
selection_box = {
type = "wallmounted",
},
})
--Other wallmounted things
minetest.register_node("modern_ish:wi_phone", {
tiles = {"modern_ish_wi_phone.png"},