Skip to content

Commit f261903

Browse files
authored
Fixed seesaw platforms not being semisolid in mario maker phsysics
I'm in awe... how was this missed
1 parent 006c574 commit f261903

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

seesawplatform.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ function seesawplatform:init(x, y, size, callback, side)
2727
end
2828
end
2929

30+
--jump through bottom when mario maker physics are enabled
31+
if mariomakerphysics then
32+
self.PLATFORM = true
33+
end
34+
3035
--IMAGE STUFF
3136
self.drawable = false
3237

@@ -108,4 +113,4 @@ end
108113

109114
function seesawplatform:floorcollide(a, b)
110115
return false
111-
end
116+
end

0 commit comments

Comments
 (0)