How To

How To go to the next screen

0

aaro_sbx 2020-06-17 07:37

I have see a game were the screen scrolled from a Title screen to a game screen. I have tried to do this with the landscape screen (the moon one that jeanmilost said we could use) to a message screen. I am having trouble with the code to get to the message screen. I could use some help. I'm trying to impress my wife enough to get her to agree to buy some code writing software. I really want to start writing code and making games as a hobby/side hustle. Thanks for any help.


was8bit 2020-06-17 12:34

The visible screen is 20x16 but in memory the actual background size is 32x32....

This means you could have 2 full sized areas stacked on top of each other and easily use SCROLL to shift the view from one or the other

Scrolling left to right would be much trickier...

Also, one could do a fade-away where the tile screen "melts" away to reveal the game below... not that hard to do..

... which style are you interested in?


was8bit 2020-06-17 13:37

Here is a fade-away :)

https://lowresnx.inutilis.com/topic.php?id=1273


was8bit 2020-06-17 16:21

Here is vertical slide... :)

https://lowresnx.inutilis.com/topic.php?id=1274


was8bit 2020-06-17 21:13

Here is horizontal slide :)

https://lowresnx.inutilis.com/topic.php?id=1275


Log in to reply.