0ad/binaries/data/mods/public/gui/loading/sprites.xml
Vantha 38b71c1bac Add a Tips and Tricks page containing the loading screen tips
- Small popup page accessible from the main menu via Learn to Play.
- Lets the player read through the tips with 'Previous' and 'Next' buttons.
- Tips continue to be shown on the loading screen.
-> but there without the scrolling ability.

- Added two new hotkeys for quicker tip changing (item.prev and item.next)
-> set to the left and right arrows respectively by default.

- Responsible scripts are placed in gui/reference/tips/.
- The tip text files have been moved to gui/reference/tips/texts/.
- Tip image files have been moved to art/textures/ui/tips/.

- Added a series of new sprites (textures in art/textures/ui/tipdisplay/)
-> comprises a title decoration, a bullet point sprite, and a new button
style.
2024-09-30 06:22:47 +02:00

43 lines
1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<sprites>
<!-- PROGRESS BAR BACKGROUND-->
<sprite name="LoadingProgressBarBackground">
<image
texture="loading/progressbar/progressbar_background_left.png"
size="0%+0 32 64 0"
/>
<image
texture="loading/progressbar/progressbar_background_middle.png"
size="64 32 100%-64 0"
/>
<image
texture="loading/progressbar/progressbar_background_right.png"
size="100%-64 32 100%+0 0"
/>
</sprite>
<!-- PROGRESS BAR -->
<sprite name="LoadingProgressBarLeft">
<image
texture="loading/progressbar/progressbar_left.png"
real_texture_placement="16 6 32 26"
size="0 100% 100% 0"
/>
</sprite>
<sprite name="LoadingProgressBarMiddle">
<image
texture="loading/progressbar/progressbar_middle.png"
real_texture_placement="0 6 1 26"
size="0 100% 100% 0"
/>
</sprite>
<sprite name="LoadingProgressBarRight">
<image
texture="loading/progressbar/progressbar_right.png"
real_texture_placement="0 6 16 26"
size="0 100% 100% 0"
/>
</sprite>
</sprites>