0 Members and 1 Guest are viewing this topic.
UPDATEJust got the scrolling background (which was in the original version) working. I still don't have my cable, so I'll upload in a few days.
Quote from: Deep Thought on December 07, 2010, 06:20:55 pmUPDATEJust got the scrolling background (which was in the original version) working. I still don't have my cable, so I'll upload in a few days.Nice! Is it parralax scrolling?
Awesome! I can't wait to see it with scrolling backgrounds. By the way, it's much better than mine: http://ourl.ca/4161/77152 (But mine was the first one in Axe. )Edit: I should update mine so it's not prgmLOL.
Wow this is amazing, so much better than mine. I've never tried messing with physics before, would someone be willing to teach me sometime?
Cool to hear it will be parralax scrolling. Will they be backgrounds that repeats vertically? If so, you could maybe use the code I used in Supersonic Ball to achieve my parralax scrolling. That would be much faster than just drawing 96 sprites.
For(Z,0,12Pt-On(Z*8-Q,0,{S+L+10}*8+R+Pic1)Endcopy(L6,L6+96,672)
I used this Code: [Select]For(Z,0,12Pt-On(Z*8-Q,0,{S+L+10}*8+R+Pic1)Endcopy(L6,L6+96,672)I used to use a for loop to copy the first row on the ones below one by one but then Quigibo gave me another code. Don't ask me how that copy code actually manages to work, though, as I have no clue.
Quote from: DJ Omnimaga on December 09, 2010, 12:29:47 amI used this Code: [Select]For(Z,0,12Pt-On(Z*8-Q,0,{S+L+10}*8+R+Pic1)Endcopy(L6,L6+96,672)I used to use a for loop to copy the first row on the ones below one by one but then Quigibo gave me another code. Don't ask me how that copy code actually manages to work, though, as I have no clue. I believe that should be For(Z,0,11) for even more speed. If you need speed, you can always scroll like this: http://ourl.ca/6248/110297Of course, since you will only have one sprite that will be scrolled, I think my method's a little overkill.