Is there any turotial/examples on simple sprite animation with wxPython.

There are some tutorials on the Pygame website:
http://www.pygame.org/docs/index.html

···

-----Original Message-----
From: Boris Boutillier [mailto:Boris.Boutillier@arteris.net]
Sent: Wednesday, February 11, 2004 10:58 AM
To: wxPython-users@lists.wxwindows.org
Subject: [wxPython-users] Is there any turotial/examples on simple
sprite animation with wxPython.

Hi all,

I'm starting a little game project for learning purpose mostly, it is
the kind of minesweeper game, I need to do some simple sprite animation
(circle moving on a board), I already found some double buffering
modules but I'm looking for some example or tutorials on making some
sprite animations (if possible without openGL).

Have you got this kind of URLs in your bookmarks.

Boris

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org

M. Vernier wrote:

There are some tutorials on the Pygame website:

I'm looking for some example or tutorials on making some sprite animations (if possible without openGL).

If you don't want to use PyGame, you should be able to do this just fine with straight wxPython. check out the

wxDragImage

example in the Demo for some ideas.

-Chris

···

--
Christopher Barker, Ph.D.
Oceanographer
                                         
NOAA/OR&R/HAZMAT (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception

Chris.Barker@noaa.gov

Thank you both, I'll have a look at your suggestions.

Boris