-- title: raster2 -- author: mieki256 -- desc: OVR test -- script: lua t=0 x=96 y=24 function TIC() local spd=2 if btn(0) then y=y-spd end if btn(1) then y=y+spd end if btn(2) then x=x-spd end if btn(3) then x=x+spd end cls(13) map(0,0) t=t+1 end --function SCN(row) function BDR(row) local rx,ry local sx,sy=x/10,y/5 rx=sx*math.cos(math.rad(3*t+4*row)) ry=sy*math.sin(math.rad(2*t+4*row)) poke(0x3FF9,rx) -- Screen Offset x poke(0x3FFA,ry) -- Screen Offset y end function OVR() local col=0 local scale=2 spr(257+t%60//30*2, x,y,col,scale,0,0,2,2) col=12 print("HELLO WORLD!",84,84,col) end