forked from VoxeLibre/VoxeLibre
Make pressure plates fully transparent
This commit is contained in:
parent
ad29d5dbb2
commit
7ac2abb0b8
|
@ -67,6 +67,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
||||||
wield_image = texture_off,
|
wield_image = texture_off,
|
||||||
wield_scale = { x=1, y=1, z=0.5 },
|
wield_scale = { x=1, y=1, z=0.5 },
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
selection_box = pp_box_off,
|
selection_box = pp_box_off,
|
||||||
node_box = pp_box_off,
|
node_box = pp_box_off,
|
||||||
groups = groups_off,
|
groups = groups_off,
|
||||||
|
@ -95,6 +96,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
||||||
wield_image = texture_on,
|
wield_image = texture_on,
|
||||||
wield_scale = { x=1, y=1, z=0.25 },
|
wield_scale = { x=1, y=1, z=0.25 },
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
selection_box = pp_box_on,
|
selection_box = pp_box_on,
|
||||||
node_box = pp_box_on,
|
node_box = pp_box_on,
|
||||||
groups = groups_on,
|
groups = groups_on,
|
||||||
|
|
Loading…
Reference in New Issue