Scrolling after a warp

K_diesel

New member
In version 4.5.9, there is an issue with the static screen where it starts scrolling after warping in the Metroidvania module, especially when I run into it. Sometimes, when I jump on it, it doesn't scroll. Please let me know if this is a known issue or if there might be a setting on that screen that I'm missing. It's supposed to warp in to a static screen. Thank you!
 

Attachments

  • scroll-warp-issue.gif
    scroll-warp-issue.gif
    1.4 MB · Views: 6

smilehero65

Active member
In version 4.5.9, there is an issue with the static screen where it starts scrolling after warping in the Metroidvania module, especially when I run into it. Sometimes, when I jump on it, it doesn't scroll. Please let me know if this is a known issue or if there might be a setting on that screen that I'm missing. It's supposed to warp in to a static screen. Thank you!
You need to stop the scrolling.
In your Warp Tile, add this before the WarpToScreen Code:

Code:
LDA #%11000010
STA scrollByte
 

K_diesel

New member
Your example didn't work for me for some reason, but I did search on the forum using "scrollByte" and found this snippet of code that worked.

LDA scrollByte
AND #%00111110
ORA #%00000010
STA scrollByte
 

smilehero65

Active member
Your example didn't work for me for some reason, but I did search on the forum using "scrollByte" and found this snippet of code that worked.

LDA scrollByte
AND #%00111110
ORA #%00000010
STA scrollByte
LOL can't believe I had it wrong for my demo!
Man 🤣🤣🤣🤣🤣
 

K_diesel

New member
What do you mean by the "seem glitch"? Not sure, but it did fix the issue with the scrolling on a static screen.
 

TheRetroBro

Active member
What do you mean by the "seem glitch"? Not sure, but it did fix the issue with the scrolling on a static screen.
sometimes when youre moving in a scrolling level if the next screen begins to load and you warp the next screen (warp to screen) will get a seem glitch and load the wrong tiles. Its odd I havent found a single peerson who can solve it
 

K_diesel

New member
I don't know, but if I run into the same issue, and I probably will :D, I'll let you know. I don't have warps to other scrolling screens yet.
 
Top Bottom