From 6e4b138ecc91f588defad38082dcbf732c98bf86 Mon Sep 17 00:00:00 2001 From: Moksh Date: Thu, 14 Sep 2023 23:11:39 +1000 Subject: [PATCH] Bug Fixed --- .../com/csse3200/game/screens/LevelSelectScreen.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/core/src/main/com/csse3200/game/screens/LevelSelectScreen.java b/source/core/src/main/com/csse3200/game/screens/LevelSelectScreen.java index 3ef5e190b..00e7cf234 100644 --- a/source/core/src/main/com/csse3200/game/screens/LevelSelectScreen.java +++ b/source/core/src/main/com/csse3200/game/screens/LevelSelectScreen.java @@ -100,8 +100,11 @@ private void spawnPlanetBorders() { for (int[] planet : Planets.PLANETS) { Rectangle planetRect = new Rectangle(planet[0], planet[1], planet[2], planet[3]); if (planetRect.contains(mousePos.x, (float) Gdx.graphics.getHeight() - mousePos.y)) { - // If a planet is clicked it will load the level based on the planet + // If the mouse is over a planet, draw the planet border + Sprite planetBorder = new Sprite(new Texture("planets/planetBorder.png")); + batch.draw(planetBorder, planet[0] - 2.0f, planet[1] - 2.0f, planet[2] + 3.0f, planet[3] + 3.0f); if (Gdx.input.justTouched()) { + // If the planet is clicked, load the corresponding level dispose(); logger.info("Loading level {}", planet[4]); GameLevelData.setSelectedLevel(planet[4]); @@ -117,12 +120,9 @@ private void spawnPlanetBorders() { } } } - else { - Sprite planetBorder = new Sprite(new Texture("planets/planetBorder.png")); - batch.draw(planetBorder, planet[0] - 2.0f, planet[1] - 2.0f, planet[2] + 3.0f, planet[3] + 3.0f); - } } } + private void handleDesertPlanetClick() { // Implement logic for when the desert planet is clicked logger.info("Desert planet clicked.");