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
"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()
>
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
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()