Author Topic: It's possible to use a Displayname artwork in displays?  (Read 2118 times)

flaviobello

  • Jr. Member
  • **
  • Posts: 12
    • View Profile
It's possible to use a Displayname artwork in displays?
« 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.

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: It's possible to use a Displayname artwork in displays?
« Reply #1 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.

jedione

  • Hero Member
  • *****
  • Posts: 1135
  • punktoe
    • View Profile
Re: It's possible to use a Displayname artwork in displays?
« Reply #2 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

« Last Edit: July 18, 2021, 01:31:16 PM by jedione »
help a friend....

flaviobello

  • Jr. Member
  • **
  • Posts: 12
    • View Profile
Re: It's possible to use a Displayname artwork in displays?
« Reply #3 on: July 18, 2021, 03:16:15 PM »
nice, gonna try today, thanks a lot!!