Re: [Tutor] hey, a bit of a noob at python ut a question about animation...

2008-04-13 Thread Kent Johnson
John Jojo wrote: > I am trying to make a simple animation, and this is what I have. > > from livewires import games, color Please say which version of livewires you are using, the one from the livewires site is different from the one that comes with Dawson's book. > games.init(screen_width = 1

Re: [Tutor] hey, a bit of a noob at python ut a question about animation...

2008-04-12 Thread Alan Gauld
"John Jojo" <[EMAIL PROTECTED]> wrote > from livewires import games, color > ... > def main(): >wall_image = games.load_image("class.jpg", transparent = False) >games.screen.background = wall_image >animater = Animation() >games.screen.add(animater) >games.screen.mainloop() >

Re: [Tutor] hey, a bit of a noob at python ut a question about animation...

2008-04-12 Thread bob gailer
John Jojo wrote: I am trying to make a simple animation, and this is what I have.   from livewires import games, color games.init(screen_width = 1000, screen_height = 1000, fps = 50) class Animation(games.Sprite):     files1 = ["stick1.jpg"]     files2 = ["stick2.jpg"]     def __init

[Tutor] hey, a bit of a noob at python ut a question about animation...

2008-04-12 Thread John Jojo
I am trying to make a simple animation, and this is what I have. from livewires import games, color games.init(screen_width = 1000, screen_height = 1000, fps = 50) class Animation(games.Sprite): files1 = ["stick1.jpg"] files2 = ["stick2.jpg"] def __init__(self): self.animate1()