Yes, you can use modes layout, commonlayout and systemlayout for that; just check the wiki for the places RetroFE will look for each file in each mode.
I'm aware of the different values for the 'mode' attribute, but they don't appear to work with menus, only with reloadable assets.
What I want to do is populate the main menu with images from my layout folder, something like this:
<!--Main Menu index 0-->
<menu type="custom"
mode="systemlayout" imageType="controller" scrollTime=".24" ...
So RetroFE will know to look inside the layout folder for the menu images, instead of the default path. Is that possible?
Thank you dlol, it works.
I want to know if it is possible to move the png of the controller that appear in the submenu wheel in a different location? ( i don't understand the instruction within layout.xml , i have just take a look to the wiki, but my understanding is not enough to do what i want).
Also, i would like to know if it's possible to put a png to replace the name of my system in the submenu wheel too.
Thx
To replace the system name with a png just open layout.xml and replace the following:
<!-- System Shortname: Located in layoutName/collections/systemName/system_artwork-->
<reloadableScrollingText type="shortname" mode="systemlayout" alpha="0" x="1340" y="540" font="fonts/Agency_FB.ttf" loadFontSize="70" fontSize="70" direction="vertical" xOrigin="left" alignment="justified" scrollingSpeed="0" startPosition="0" startTime="4" endTime="1"layer="7">
<onMenuEnter menuIndex="1">
<set duration=".01">
<animate type="alpha" to="1" algorithm="easeinquadratic"/>
</set>
</onMenuEnter>
<onMenuExit menuIndex="1">
<set duration=".01">
<animate type="alpha" to="0" algorithm="easeinquadratic"/>
</set>
</onMenuExit>
</reloadableScrollingText>
with:
<!-- System Logo: Located in layoutName/collections/systemName/system_artwork-->
<reloadableImage type="logo" mode="systemlayout" alpha="0" x="1340" y="540" direction="vertical" xOrigin="left" alignment="justified" scrollingSpeed="0" startPosition="0" startTime="4" endTime="1"layer="7">
<onMenuEnter menuIndex="1">
<set duration=".01">
<animate type="alpha" to="1" algorithm="easeinquadratic"/>
</set>
</onMenuEnter>
<onMenuExit menuIndex="1">
<set duration=".01">
<animate type="alpha" to="0" algorithm="easeinquadratic"/>
</set>
</onMenuExit>
</reloadableImage>
Basically replacing the reloadableText with a reloadableImage. Haven't tested it, but it should work.