mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Boats: Lower boat collision box top
Standing on a boat makes you appear to "hover" over it since this collision box is way too high. Lower it so that it's low enough to look normal when walking on top of a boat
This commit is contained in:
parent
3e5f3f28d2
commit
fc902a77de
@ -34,7 +34,7 @@ end
|
|||||||
|
|
||||||
local boat = {
|
local boat = {
|
||||||
physical = true,
|
physical = true,
|
||||||
collisionbox = {-0.5, -0.35, -0.5, 0.5, 0.3, 0.5},
|
collisionbox = {-0.5, -0.35, -0.5, 0.5, 0.15, 0.5},
|
||||||
visual = "mesh",
|
visual = "mesh",
|
||||||
mesh = "boats_boat.obj",
|
mesh = "boats_boat.obj",
|
||||||
textures = {"default_wood.png"},
|
textures = {"default_wood.png"},
|
||||||
|
Loading…
Reference in New Issue
Block a user