Attract-Mode Support Forum
Attract-Mode Support => Themes => Topic started by: Ghostfur on February 08, 2017, 03:43:58 PM
-
Is it possible to show different backgrounds in the display menu? at each system
i trying to make this work but didnt find anything yet the only script i found is
// Load background based up emulator
local b_art = fe.add_image("backgrounds/Display Menu.png", 0, 0, flw, flh );
b_art.alpha=255;
But it doesnt seem to work maby someone can help me out :)
-
try this
// Load background based up emulator
local b_art = fe.add_image("backgrounds/[DisplayName]", 0, 0, flw, flh );
b_art.alpha=255;
put your BG.png's in your "backgrounds/" folder and name each one the same name as the "DisplayName" ie snes.png ext...
-
This is what I'm using.
//Add Artwork: System Flyer, x,y Co-ordinates height and width
local sysfl = fe.add_image("/Images/Systems/[Title].png", 100, 500, 780, 350);
For a background you'll either stretch the background picture (e.g. 0, 0, 1920, 1080) or if picture is already at proper resolution add it it without any co-ordinates (0,0,0,0). Plus if you have opted for not showing brackets in lists then [Title].png also won't include brackets.
[I have a separate layout.nut for dispaly-menu, so calling [Title] from there lists consoles/systems]
-
Wow thank you guys it works perfect :) ;D