forked from VoxeLibre/VoxeLibre
Tweak wield scales of a few items
This commit is contained in:
parent
27c75caf25
commit
669c955da6
|
@ -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,
|
||||
|
|
|
@ -1663,7 +1663,7 @@ minetest.register_node("mcl_core:snow", {
|
|||
description = "Top Snow",
|
||||
tiles = {"default_snow.png"},
|
||||
wield_image = "default_snow.png",
|
||||
wield_scale = { x=1, y=1, z=2 },
|
||||
wield_scale = { x=1, y=1, z=1 },
|
||||
is_ground_content = true,
|
||||
paramtype = "light",
|
||||
buildable_to = true,
|
||||
|
|
|
@ -49,6 +49,7 @@ for _, row in ipairs(wool.dyes) do
|
|||
is_ground_content = false,
|
||||
tiles = {"wool_"..texture..".png"},
|
||||
wield_image = "wool_"..name..".png",
|
||||
wield_scale = { x=1, y=1, z=0.5 },
|
||||
groups = {handy=1, carpet=1,deco_block=1},
|
||||
sounds = mcl_sounds.node_sound_defaults(),
|
||||
paramtype = "light",
|
||||
|
|
Loading…
Reference in New Issue