From 5a366d02db239d4396df28eaea8c96fc63e25ca2 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sat, 14 Jun 2025 13:41:28 +0200 Subject: [PATCH] Use correct tags for the constellation art --- .../scene/milkyway/constellations/constellation_art.asset | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/assets/scene/milkyway/constellations/constellation_art.asset b/data/assets/scene/milkyway/constellations/constellation_art.asset index b2ced6af18..4b8b898efe 100644 --- a/data/assets/scene/milkyway/constellations/constellation_art.asset +++ b/data/assets/scene/milkyway/constellations/constellation_art.asset @@ -89,7 +89,7 @@ local function createConstellations(baseIdentifier, guiPath, constellationfile) Opacity = 0.1, DimInAtmosphere = true }, - Tag = { "image_constellation", "zodiac_" .. group, "daytime_hidden" }, + Tag = { "image_constellation", "constellation_art_" .. group, "daytime_hidden" }, GUI = { Name = name .. " Image", Path = "/Milky Way/Constellations/" .. guiPath, @@ -138,7 +138,7 @@ local ShowZodiacArt = { Identifier = "os.constellation_art.ShowZodiacArt", Name = "Show zodiac", Command = [[ - openspace.fadeIn("{zodiac}") + openspace.fadeIn("{constellation_art_zodiac}") ]], Documentation = "Enables and fades up zodiac art work", GuiPath = "/Constellations/Art", @@ -149,7 +149,7 @@ local HideZodiacArt = { Identifier = "os.constellation_art.HideZodiacArt", Name = "Hide zodiac", Command = [[ - openspace.fadeOut("{zodiac}") + openspace.fadeOut("{constellation_art_zodiac}") ]], Documentation = "Fades down zodiac art work", GuiPath = "/Constellations/Art",