From 354b09f5668c7d0ab8aafe938ca6b20a715cee09 Mon Sep 17 00:00:00 2001 From: Lance Ewing Date: Tue, 19 Mar 2024 00:26:28 +0000 Subject: [PATCH] Adding proper images for joystick. --- core/src/main/java/com/agifans/agile/GameScreen.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/agifans/agile/GameScreen.java b/core/src/main/java/com/agifans/agile/GameScreen.java index 884cd72..a304142 100644 --- a/core/src/main/java/com/agifans/agile/GameScreen.java +++ b/core/src/main/java/com/agifans/agile/GameScreen.java @@ -139,8 +139,8 @@ public GameScreen(Agile agile, AgileRunner agileRunner, DialogHandler dialogHand protected Touchpad createTouchpad() { Skin touchpadSkin = new Skin(); - touchpadSkin.add("touchBackground", new Texture("png/touchBackground.png")); - touchpadSkin.add("touchKnob", new Texture("png/touchKnob.png")); + touchpadSkin.add("touchBackground", new Texture("png/joystick_background.png")); + touchpadSkin.add("touchKnob", new Texture("png/joystick_knob.png")); TouchpadStyle touchpadStyle = new TouchpadStyle(); Drawable touchBackground = touchpadSkin.getDrawable("touchBackground"); Drawable touchKnob = touchpadSkin.getDrawable("touchKnob");