Scrolling a Sprite

Blitz3D Forums/Blitz3D Programming/Scrolling a Sprite

Any ideas on how to scroll the texture on a sprite ?

I loaded the sprite up with the loadsprite command, so theres no handle to the texture it uses.

Load up the texture seperately so it has a handle. Then you can positiontexture.

a=createsprite()
b=loadtexture("fjklf")
entitytexture a,b

Good thinking Batman.