Sorry Diegs! Sure thing! Here's a quick example:
// Project: scrolltexture
// Created: 2016-02-03
// set window properties
SetWindowTitle( "scrolltexture" )
SetWindowSize( 640, 640, 0 )
// set display properties
SetVirtualResolution( 100, 100 )
SetOrientationAllowed( 1, 1, 1, 1 )
myimage = loadimage("myimage.png")
SetImageWrapU(myimage,1)
SetImageWrapV(myimage,1)
mysprite = CreateSprite(myimage)
setspritesize(myimage,100,100)
x#=0.0
y#=0.0
do
x#=x#+0.01
y#=y#+0.01
SetSpriteUVOffset(mysprite,x#,y#)
Print( ScreenFPS() )
Sync()
loop
You'll need to supply your own myimage.png in the media folder. Hope this helps!
p.s. there are examples for SetImageU and V in the help too.