Scrolling a Sprite

Blitz3D Forums/Blitz3D Programming/Scrolling a Sprite

PaulJG(Posted 2003) [#1]
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.


Rob Farley(Posted 2003) [#2]
Load up the texture seperately so it has a handle. Then you can positiontexture.

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


PaulJG(Posted 2003) [#3]
Good thinking Batman.