Set transparency rules for many blocks

This commit is contained in:
Wuzzy 2017-06-13 14:46:21 +02:00
parent 4002fe123c
commit bb0123c789
8 changed files with 18 additions and 0 deletions

View file

@ -8,6 +8,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_on", {
wield_image = "jeija_solar_panel.png",
wield_scale = { x=1, y=1, z=3 },
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
selection_box = {
type = "fixed",
@ -41,6 +42,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_off", {
wield_image = "jeija_solar_panel.png",
wield_scale = { x=1, y=1, z=3 },
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
selection_box = {
type = "fixed",
@ -115,6 +117,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_inverted_on", {
wield_image = "jeija_solar_panel_inverted.png",
wield_scale = { x=1, y=1, z=3 },
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
selection_box = {
type = "fixed",
@ -148,6 +151,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_inverted_off", {
wield_image = "jeija_solar_panel_inverted.png",
wield_scale = { x=1, y=1, z=3 },
paramtype = "light",
sunlight_propagates = true,
is_ground_content = false,
selection_box = {
type = "fixed",