Disappearing Tiles 4.5.9

warpedpipe

New member
Module: MetroidVania 4.5.9

Issue: Far Left side tiles disappear and change palette color. I have left and right edge for scroll enabled.

SkyBoundwallbug.gif
1710527486450.png
 

baardbi

Well-known member
Module: MetroidVania 4.5.9

Issue: Far Left side tiles disappear and change palette color. I have left and right edge for scroll enabled.

View attachment 8024
View attachment 8025
Try to put this at the top of your Handle Camera script:

Code:
;; Don't run this script on static screens (Left Edge + Right Edge)
LDA ScreenFlags00
AND #%00110000
CMP #%00110000
BNE +notStaticScreen
    RTS
+notStaticScreen:
 
Top Bottom