Hello! My first day on GBPro!
Im simply trying to find out how the different commands work.
I've started working with sprites, and drew a 12 image long image strip. I also gave each image a background which I don't want appearing in the exe. The transparency is a "bright pink" color, or (255,192,255).
sync on
sync rate 40
create animated sprite 1,"C:\Users\Owner\Desktop\strip.png",12,1,1
set image colorkey 255,192,255
set sprite 1,0,1
sprite 1,0,0,1
do
play sprite 1,1,12,50
sync
loop
I've tested the transparent color in Paint, and it returned 255,192,255. However, when I run the exe, the color is not transparent. I know something's wrong with the code above, anyone clue me in a bit?
Thanks ^^