This commit is contained in:
Михаил Капелько
2024-06-17 00:02:02 +03:00
parent 674d5795dc
commit 1377f37b60
2 changed files with 20 additions and 1 deletions

View File

@@ -2,8 +2,26 @@ import arcade
class Window(arcade.Window):
def __init__(self):
super().__init__(800, 600, "OGS Memory")
super().__init__(900, 600, "OGS Memory")
arcade.set_background_color(arcade.color.WHITE)
self.all_sprites = arcade.SpriteList()
# Animated begin button.
player = arcade.AnimatedTimeBasedSprite()
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)
a = arcade.sprite.AnimationKeyframe(i, 700, tex)
player.frames.append(a)
player.center_x = 300
player.center_y = 200
self.all_sprites.append(player)
def on_draw(self):
arcade.start_render()
arcade.draw_circle_filled(400, 300, 15, arcade.color.BLUE)
self.all_sprites.draw()
def on_update(self, delta):
self.all_sprites.update_animation()

1
v5/res Symbolic link
View File

@@ -0,0 +1 @@
../res