Example

custom box art

3

EnderCal1012 2022-09-12 19:39 (Edited)

i made some box art fo this example game using MS paint which totally is allowed. this feature can be used for a lot of things. athough somethimes it can come out lowres. ba dum tss.

SUS.nx | Open in app
2022-09-12 19:39

SP4CEBAR 2022-09-12 20:35 (Edited)

if you wanted to reduce the size of your code, you could replace this:

if down(0) then
    y=y+1
    wait vbl
    sprite 1,x,y,1
end if
if up(0) then
    y=y-1
    wait vbl
    sprite 1,x,y,1
end if
if left(0) then
    x=x-1
    wait vbl
    sprite 1,x,y,1
end if
if right(0) then
    x=x+1
    wait vbl
    sprite 1,x,y,1
end if

With this:

add x,left(0)-right(0)
add y,up(0)-down(0)
sprite 1,x,y,
wait vbl


nathanielbabiak 2022-09-14 03:42 (Edited)

Hey, did you get the screenshot issue resolved? I had commented here about it - any luck?


Log in to reply.