Lua Animation Lib v4.5

One of Grimfate126's test pngs. - Image 1If you’re a coder, then you’ve probably spent some time tinkering with Daaa57150‘s AnimLib modifications in an attempt to animate sprites for your own purposes. Why not go back to the original, however, with this new update for Lua Animation Lib by Grimfate126?

Grimfate126 has released Lua Animation Lib version 4.5 (AnimLib v4.5), which fixes some persistent problems in the previous version. There are also a couple of changes that will definitely help coders out and speed up their work. Let’s see what Grimfate126 himself has to say about the release via his changelog:

Fixed:

  • Found a major flaw in sprite sheet animation blitting. The problem was, the lib calculated the width to height ratio in the blit function, when it should have been done in the loading function. It works both ways, but doing it the the blitting function meant that the lib was dividing (with is a costly calculation) every frame unnecessarily. I fixed it so that it calculates only once, in the loading function. This should provide a MASSIVE speed-up when using sprite sheets.

Changed:

  • Ive gotten rid of advanceBlit, since it was just taking up stack memory, and added the loop functionality in the normal blit function. The new blit functions is like this:
    • Code: function ANIM:blit(x, y, delay, numLoops)

          so just add the number of loops at the end. If the space is left blank, then the animation will continue
          forever.

  • The anim loading function has also been modified. Just the order of arguments, since the order in v4 was rather peculiar. The loading function is now:
    • Code: function ANIM.new(header, extension, frames, where)

Responses on our forums seem to be quite positive so give it a try, alright? Enjoy!

Download: AnimLib v4.5
Visit: PSP Development Forums

One of Grimfate126's test pngs. - Image 1If you’re a coder, then you’ve probably spent some time tinkering with Daaa57150‘s AnimLib modifications in an attempt to animate sprites for your own purposes. Why not go back to the original, however, with this new update for Lua Animation Lib by Grimfate126?

Grimfate126 has released Lua Animation Lib version 4.5 (AnimLib v4.5), which fixes some persistent problems in the previous version. There are also a couple of changes that will definitely help coders out and speed up their work. Let’s see what Grimfate126 himself has to say about the release via his changelog:

Fixed:

  • Found a major flaw in sprite sheet animation blitting. The problem was, the lib calculated the width to height ratio in the blit function, when it should have been done in the loading function. It works both ways, but doing it the the blitting function meant that the lib was dividing (with is a costly calculation) every frame unnecessarily. I fixed it so that it calculates only once, in the loading function. This should provide a MASSIVE speed-up when using sprite sheets.

Changed:

  • Ive gotten rid of advanceBlit, since it was just taking up stack memory, and added the loop functionality in the normal blit function. The new blit functions is like this:
    • Code: function ANIM:blit(x, y, delay, numLoops)

          so just add the number of loops at the end. If the space is left blank, then the animation will continue
          forever.

  • The anim loading function has also been modified. Just the order of arguments, since the order in v4 was rather peculiar. The loading function is now:
    • Code: function ANIM.new(header, extension, frames, where)

Responses on our forums seem to be quite positive so give it a try, alright? Enjoy!

Download: AnimLib v4.5
Visit: PSP Development Forums

Add a Comment

Your email address will not be published. Required fields are marked *