Compare commits

...

1 Commits

Author SHA1 Message Date
Aaron Suen 6b882536e6 Simplify collision boxes 1 year ago
  1. 9
      stones.lua

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

Loading…
Cancel
Save