Attract-Mode Support Forum

Attract-Mode Support => Themes => Topic started by: flaviobello on July 18, 2021, 07:49:11 AM

Title: It's possible to use a Displayname artwork in displays?
Post by: flaviobello on July 18, 2021, 07:49:11 AM
I want to use a system specifc arwtork (like a logo) for each system.

Ex: If i choose Arcades, the display will show the arcade logo, if i choose neogeo, a neogeo logo, etc.

It's possible to make something like this in layouts?

thanks.
Title: Re: It's possible to use a Displayname artwork in displays?
Post by: progets on July 18, 2021, 12:10:15 PM
This is built into most layouts. Your artwork must match the display names and be placed into /attract/menu-art/wheel/<display_name>.png.
Title: Re: It's possible to use a Displayname artwork in displays?
Post by: jedione on July 18, 2021, 01:29:30 PM

Code: [Select]
local logo = fe.add_image( "system/[DisplayName]", 100, 1000, 500, 500);


//now put a folder in your layout "system" > mame.png, arcade.png, dreamcast.png, ext


just make shure the .png's  are labled the same as your systems....should be all good to go.... :P

Title: Re: It's possible to use a Displayname artwork in displays?
Post by: flaviobello on July 18, 2021, 03:16:15 PM
nice, gonna try today, thanks a lot!!