Михаил Капелько 2 weeks ago
parent
commit
1377f37b60
2 changed files with 20 additions and 1 deletions
  1. +19
    -1
      v5/Window.py
  2. +1
    -0
      v5/res

+ 19
- 1
v5/Window.py 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
- 0
v5/res View File

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

Loading…
Cancel
Save