fix texture loading, remove sound settings

This commit is contained in:
csd4ni3l
2025-11-17 16:12:10 +01:00
parent d177577058
commit 0a52c68656
2 changed files with 2 additions and 8 deletions

View File

@@ -7,5 +7,5 @@ _assets_dir = os.path.join(os.path.dirname(_module_dir), 'assets')
button_texture = arcade.gui.NinePatchTexture(64 // 4, 64 // 4, 64 // 4, 64 // 4, arcade.load_texture(os.path.join(_assets_dir, 'graphics', 'button.png')))
button_hovered_texture = arcade.gui.NinePatchTexture(64 // 4, 64 // 4, 64 // 4, 64 // 4, arcade.load_texture(os.path.join(_assets_dir, 'graphics', 'button_hovered.png')))
enemy_texture = arcade.load_texture("assets/graphics/enemy.png")
player_texture = arcade.load_texture("assets/graphics/player.png")
enemy_texture = arcade.load_texture(os.path.join(_assets_dir, 'graphics', 'enemy.png'))
player_texture = arcade.load_texture(os.path.join(_assets_dir, 'graphics', 'player.png'))