Items can no longer bounc past the end of level. Slight modification to item bounce speed, may need more adjustments.

This commit is contained in:
Storm Dragon
2025-02-11 22:50:26 -05:00
parent 8530993fa9
commit c6adc193a1
4 changed files with 31 additions and 18 deletions

View File

@@ -55,7 +55,10 @@ class CoffinObject(Object):
self.yPos,
item_type,
self.sounds,
direction
direction,
self.level.leftBoundary,
self.level.rightBoundary
)
return True
return False