[Mods]Advice on how to make custom Splash Screen
-
Raiden-Z last edited by
So guys, I have a question. How do I make my own custom Splash Screen for an Opera GX mod? I have some ideas for a new mod but I don't know how to carry out them without knowing how to make the splash screen in the first place.
From Raiken Sora/Raiden-Z
Owner of mod studio: Zandatsu Interactive -
burnout426 Volunteer last edited by burnout426
Install https://store.gx.me/mods/nsxjip/capybara-party/ and then goto the URL
chrome-extension://poigpnphnhiglllbbecbjlaicccglnpb/manifest.json
and look at thesplash_screen
section. You'll see it's just an mp4 video file that it references.So, use that as an example. (Make sure to use
"schema_version": 2
for themod
section like that manifest.json does. It's probably needed to supportsplash_screen
and other mods 2.0 stuff.) -
Raiden-Z last edited by
@burnout426 Yo man, sorry for late reply but thanks I'll check on it and let you know.
-
burnout426 Volunteer last edited by
@Raiden-Z Doesn't look like it. I might make an example mod later that does just a splash screen, but I would just try it out.
-
burnout426 Volunteer last edited by
Here's a minimum manifest.json to have a custom splash screen:
{ "manifest_version": 3, "name": "GX Splash", "version": "0.1", "icons": { "512": "512.png" }, "mod": { "schema_version": 2, "payload": { "splash_screen": [ { "id": "1", "name": "name", "path": "splash.mp4" } ] } } }
From what I've seen, splash.mp4 should be h.264 video (1080 x 1080) + aac audio in an mp4 container. The video duration should be 5 seconds. Other formats (like vp9 video + opus audio in a webm container) and resolutions might be supported too, but that at least is what one mod I tested uses.
-
Raiden-Z last edited by
@burnout426 Thank you, I'll try it out and please let me know if you have created the example mod