Tweak wield scales of a few items
This commit is contained in:
parent
27c75caf25
commit
669c955da6
3 changed files with 5 additions and 1 deletions
|
@ -64,6 +64,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
|||
drawtype = "nodebox",
|
||||
tiles = {texture_off},
|
||||
wield_image = texture_off,
|
||||
wield_scale = { x=1, y=1, z=0.5 },
|
||||
paramtype = "light",
|
||||
selection_box = pp_box_off,
|
||||
node_box = pp_box_off,
|
||||
|
@ -89,6 +90,8 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture
|
|||
minetest.register_node(onstate, {
|
||||
drawtype = "nodebox",
|
||||
tiles = {texture_on},
|
||||
wield_image = texture_on,
|
||||
wield_scale = { x=1, y=1, z=0.25 },
|
||||
paramtype = "light",
|
||||
selection_box = pp_box_on,
|
||||
node_box = pp_box_on,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue