does anyone know how to make a scrolling game with one or two sprite/s as the scroller that changes when you move I have seen it done before but I have not been able to work it out myself.
thank you.
Offline
the scrolling background should be like this
when gf clicked forever set x to(((scroll x) + [480]) * [0])the same should be with y but with + 360 instead. if you want different scrolling background positions, do set x to scroll to scrollx + 480 * 1 to do 1 background up etc.(remember you will need more sprites for multiple scrolling backgrounds). the sprite that does the scrolling should be when left arrow pressed, change scrollx by -1,right arrow pressed, change scrollx by 1,up arrow pressed, change scrolly by 1,down arrow pressed, change scrolly by -1, but you can change the number though, forgot to mention that you need to make scrollx and y variables.
Offline
chrisbown wrote:
when gf clicked forever set x to(((scroll x) + [480]) * [0])
Fixed
Offline