Add tetris, make main menu buttons smaller, change some texts

This commit is contained in:
csd4ni3l
2025-09-20 18:44:35 +02:00
parent 5f22c2ed9c
commit 183eca33c5
9 changed files with 227 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ class Game(arcade.gui.UIView):
self.pypresence_client.update(state="Playing Pong inside notifications!")
self.anchor = self.add_widget(arcade.gui.UIAnchorLayout(size_hint=(1, 1)))
self.info_label = self.anchor.add(arcade.gui.UILabel("Press keys inside this window to interact with the game\nYou can see the game inside notifications.", font_size=24, multiline=True))
self.info_label = self.anchor.add(arcade.gui.UILabel("Use arrow keys or WASD to move\nYou can see the game inside notifications.", font_size=24, multiline=True))
self.running = True
self.last_update_time = time.perf_counter()