Post #1 · Posted at 2025-11-30 02:48:48pm 2.2 months ago
Hey guys, sorry if this is a dumbass question. I'm currently prodding about with SM5 themes to fit my kind of obnoxious aesthetic, and in doing so have noticed that, while banners and jackets show up just fine for individual songs, the banners and jackets representing each individual folder aren't appearing in select music. I had a look at other themes to compare and noticed that banners did show up in the default theme and older SM5 themes, but weren't being read in more (relatively) recent ones. Is there any way I can fix this via .lua or .ini files?
Also I apologize, I'm a clueless newbie when it comes to coding but I'm trying my best!
UPDATE: I found this in an older thread, but I'm not sure which .lua file to add it to and where. Any pointers?
Also I apologize, I'm a clueless newbie when it comes to coding but I'm trying my best!
UPDATE: I found this in an older thread, but I'm not sure which .lua file to add it to and where. Any pointers?
Quote
function GetSongGroupJacketPath(groupName)
if not SONGMAN: DoesSongGroupExist(groupName) then return nil
else
local temp = split("/",SONGMAN:GetSongGroupBannerPath(groupName));
local jacket = "";
for i=1,#temp-1 do
jacket = jacket..temp[i].."/"
end;
if #temp > 1 then
jacket = jacket.."jacket.png"
return jacket
else
return nil
end
end
end
if not SONGMAN: DoesSongGroupExist(groupName) then return nil
else
local temp = split("/",SONGMAN:GetSongGroupBannerPath(groupName));
local jacket = "";
for i=1,#temp-1 do
jacket = jacket..temp[i].."/"
end;
if #temp > 1 then
jacket = jacket.."jacket.png"
return jacket
else
return nil
end
end
end
