Simplify collision boxes #3

Closed
Warr1024 wants to merge 1 commits from Warr1024/lc_liberties:stonecollision into master
  1. 9
      stones.lua

@ -47,6 +47,10 @@ local function reg(name, basename, basedef)
type = "fixed",
fixed = {-7/16, -8/16, -7/16, 7/16, 2/16, 7/16}
},
collision_box = {
type = "fixed",
fixed = {-7/16, -8/16, -7/16, 7/16, 2/16, 7/16}
},
tiles = {
@ -91,7 +95,10 @@ local function reg(name, basename, basedef)
type = "fixed",
fixed = {-6/16, -8/16, -6/16, 6/16, 0/16, 6/16}
},
collision_box = {
type = "fixed",
fixed = {-6/16, -8/16, -6/16, 6/16, 0/16, 6/16}
},
tiles = {
basedef.tiles[1]

Loading…
Cancel
Save