mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Make pressure plates fully transparent
This commit is contained in:
parent
ad29d5dbb2
commit
7ac2abb0b8
1 changed files with 2 additions and 0 deletions
|
@ -67,6 +67,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
|||
wield_image = texture_off,
|
||||
wield_scale = { x=1, y=1, z=0.5 },
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
selection_box = pp_box_off,
|
||||
node_box = pp_box_off,
|
||||
groups = groups_off,
|
||||
|
@ -95,6 +96,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
|||
wield_image = texture_on,
|
||||
wield_scale = { x=1, y=1, z=0.25 },
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
selection_box = pp_box_on,
|
||||
node_box = pp_box_on,
|
||||
groups = groups_on,
|
||||
|
|
Loading…
Reference in a new issue