Hello,
How can i have two screens where the background can be seen through the foreground screen.
Ie the background is scrolling while the foreground screen has all the bobs etc.
Or if that can't be done then how do you keep bobs in place while the screen is scrolling
Thanks
Quote from: Lee DaBee on 28 Mar, 2019, 10:10 PM
Hello,
How can i have two screens where the background can be seen through the foreground screen.
Ie the background is scrolling while the foreground screen has all the bobs etc.
Or if that can't be done then how do you keep bobs in place while the screen is scrolling
Thanks
You need to look at the "Dual Playfield" instruction in the AMOS manual
It has a few restrictions in format and colour palette, but it works quite well.
Experiment with it a while and it should do what you want.
Thanks I'll have a fiddle around with that
Hello,
I've used the Dual Playfield command, which works in giving me the see through screen at the front, but the background screen which is scrolling using Amal, becomes split horizontally with each half being a copy of the other, also the display starts to creep up vertically too.
Quote from: Lee DaBee on 30 Mar, 2019, 08:15 PM
Hello,
I've used the Dual Playfield command, which works in giving me the see through screen at the front, but the background screen which is scrolling using Amal, becomes split horizontally with each half being a copy of the other, also the display starts to creep up vertically too.
I think this is a "feature" of Amiga screen handling, if you research the problem I've seen s few discussions on the subject, but never used any.
Try typing "amiga corkscrew scroller" into a search engine, to see if anyone has a suitable solution.
Regards
V1
Quote from: Lee DaBee on 30 Mar, 2019, 08:15 PM
Hello,
I've used the Dual Playfield command, which works in giving me the see through screen at the front, but the background screen which is scrolling using Amal, becomes split horizontally with each half being a copy of the other,
Can you post a screenshot to illustrate this?
Quote from: Lee DaBee on 30 Mar, 2019, 08:15 PMso the display starts to creep up vertically too.
That happens because you are scrolling the screen continuously and not resetting the X position to 0.
Consider a screen that is 320 pixels wide and set the x position to -320. It has now been scrolled 1.0 screens to the left and will have moved up by 1 pixel.
Quote from: Lonewolf10 on 28 Apr, 2019, 08:48 PM
That happens because you are scrolling the screen continuously and not resetting the X position to 0.
Consider a screen that is 320 pixels wide and set the x position to -320. It has now been scrolled 1.0 screens to the left and will have moved up by 1 pixel.
To be fair, it shouldn't happen, but it does, that's the way it is, so ALWAYS reset the X position and you'll be ok.