d
This commit is contained in:
@@ -3,7 +3,7 @@ import arcade
|
||||
class Window(arcade.Window):
|
||||
def __init__(self):
|
||||
super().__init__(900, 600, "OGS Memory")
|
||||
arcade.set_background_color(arcade.color.WHITE)
|
||||
arcade.set_background_color(arcade.color.GRAY)
|
||||
self.all_sprites = arcade.SpriteList()
|
||||
|
||||
# Animated begin button.
|
||||
@@ -11,6 +11,7 @@ class Window(arcade.Window):
|
||||
for i in range(2):
|
||||
tex = arcade.load_texture("res/buttons_begin.png", x = i*350, y = 0, width = 350, height = 100)
|
||||
player.append_texture(tex)
|
||||
player.color = arcade.color.BLUE
|
||||
a = arcade.sprite.AnimationKeyframe(i, 700, tex)
|
||||
player.frames.append(a)
|
||||
player.center_x = 300
|
||||
|
||||
Reference in New Issue
Block a user