pyanimation

A pygame animation package


Keywords
pygame, animation, pyanimation
License
MIT
Install
pip install pyanimation==0.7

Documentation

Pyanimation

A python module to easily create animations in pygame

https://raw.githubusercontent.com/estevaofon/pyanimation/master/examples/images/spritesheet.png

Setup

$ pip install pyanimation

Code sample

girl = Animation("images/spritesheet.png")
girl.create_animation(0, 0, 125, 125, "run")
screen.blit(girl.update_surface(), (girl.x, girl.y))

Look in the example folder for complete examples.

https://raw.githubusercontent.com/estevaofon/pyanimation/master/examples/images/showcase.gif

Quick Guide

Tutorial - Portuguese