I have been using LoadAnimImages to use frames in my 2d animations. Is it possible to load a certain row, like in this image for example:
, using this command?
If so, or not, how?
, using this command?If so, or not, how?
, using this command?LoadAnimImage("my image", 24,24, 10*rownum, 10)
Graphics 640,480,0,2 Global img = LoadAnimImage("dg_armor32.bmp", 32,32,10, 10) Global frame = 0 While Not KeyDown(1) Cls DrawImage img, MouseX(), MouseY(), frame If MouseHit(1) Then frame = frame +1 If frame > 9 Then frame = 0 Flip Wend End