Hi guys, a lot of time far from 2D and now I can do just nothing!
3 questions:
1) I would to have a big background (much more big than screen size)
2) My sprite over this background must have their black square as transparent (the classical sprite background colour as transparent) but I can't do it!
Please look at the screenshot and here my code..
rem IMAGE OF MY BACKGROUND
load image "background.jpg",1
rem IMAGE OF A MAN
load image "uomo.bmp",2
rem Init app
sync on : sync rate 60
rem Tell all sprites that they should draw themselves FIRST
draw sprites first
rem Main loop
do
paste image 1,0,0
paste image 2,30,30
rem Update screen
sync
`
rem End loop
loop