Open JackTYM opened 2 years ago
I'm having the same issue, did you ever happen to find a fix?
In my experience gameOS uses screenshot for game images, and puts the logo on top. I do not included assets in pegasus.metadata.txt at all, but have properly named images instead:
clear logo: media/wheel box: media/box2dfront screenshots: media/screenshot videos: media/videos
I am only seeing these as the entries:
game.assets.screenshotList.forEach(v => mediaList.push(v));
game.assets.backgroundList.forEach(v => mediaList.push(v));
I think this is where the lack of support starts. I tried adding other items such as boxback and cartridge, but it did not have support for this. It seems to be in the api call (api.allGames.get(0)).
I got it to work. You need to change the GameDetails/GameView.qml file.
Line 62 under the mediaArray function just add the lines for your media you want.
if (game && game.assets.cartridge) { game.assets.cartridgeList.forEach(v => mediaList.push(v)); }
if (game && game.assets.boxBack) { game.assets.boxBackList.forEach(v => mediaList.push(v)); }
Hello! I started using gameOS today, and when trying to setup all the images, the only things that actually come up are the videos for each game.
I am using Skraper for my images, and I did notice that the generated gamelist.xml only generates tags for
and when I convert it to metadata.txt (using the linked converter) they only have
I attempted manually setting the metadata.txt options, but it didn't work (My attempt)
Once again, when rebooting the only thing that loads is the video
What I have tried: I doublechecked that the Skraper resources are being checked for
Tree Path Example
Anything else I can try to fix this?