diff options
| author | Caladius <Caladius@users.noreply.github.com> | 2024-12-03 11:44:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-03 09:44:10 -0700 |
| commit | 82d70a2029ed743c19ec3a8ace4f8221e0840824 (patch) | |
| tree | 5fd164fada0e689923f9dbb571db4ee32cd2590d /soh/assets | |
| parent | 8b60cea1f96b1e6ea10f7c37323879bc67123cca (diff) | |
Add Timer Display Window (#4553)
* Add new timer window and display options
* Fix overflow spacing
* Icons for Timers
* Swap Labels for Icons.
* Additional Timers
* Navi Timer Icon
* Clean up unused Defines.
* Code clean up and double check. Ready for Review
* Update from Suggestions
* Update magic numbers, correct indentations hopefully
* One moooooore thing
* Undo z_param change
* Updates
Diffstat (limited to 'soh/assets')
| -rw-r--r-- | soh/assets/custom/textures/parameter_static/gMoon.rgba32.png | bin | 0 -> 6114 bytes | |||
| -rw-r--r-- | soh/assets/custom/textures/parameter_static/gNavi.rgba32.png | bin | 0 -> 6275 bytes | |||
| -rw-r--r-- | soh/assets/custom/textures/parameter_static/gSun.rgba32.png | bin | 0 -> 6448 bytes | |||
| -rw-r--r-- | soh/assets/soh_assets.h | 9 |
4 files changed, 9 insertions, 0 deletions
diff --git a/soh/assets/custom/textures/parameter_static/gMoon.rgba32.png b/soh/assets/custom/textures/parameter_static/gMoon.rgba32.png Binary files differnew file mode 100644 index 000000000..9c1afa577 --- /dev/null +++ b/soh/assets/custom/textures/parameter_static/gMoon.rgba32.png diff --git a/soh/assets/custom/textures/parameter_static/gNavi.rgba32.png b/soh/assets/custom/textures/parameter_static/gNavi.rgba32.png Binary files differnew file mode 100644 index 000000000..aae12c339 --- /dev/null +++ b/soh/assets/custom/textures/parameter_static/gNavi.rgba32.png diff --git a/soh/assets/custom/textures/parameter_static/gSun.rgba32.png b/soh/assets/custom/textures/parameter_static/gSun.rgba32.png Binary files differnew file mode 100644 index 000000000..954726e05 --- /dev/null +++ b/soh/assets/custom/textures/parameter_static/gSun.rgba32.png diff --git a/soh/assets/soh_assets.h b/soh/assets/soh_assets.h index c0acacf21..568a87963 100644 --- a/soh/assets/soh_assets.h +++ b/soh/assets/soh_assets.h @@ -106,6 +106,15 @@ static const ALIGN_ASSET(2) char gSplitEntranceTex[] = dgSplitEntrance; #define dgBossSoul "__OTR__textures/parameter_static/gBossSoul" static const ALIGN_ASSET(2) char gBossSoulTex[] = dgBossSoul; +#define dgMoonIcon "__OTR__textures/parameter_static/gMoon" +static const ALIGN_ASSET(2) char gMoonIconTex[] = dgMoonIcon; + +#define dgSunIcon "__OTR__textures/parameter_static/gSun" +static const ALIGN_ASSET(2) char gSunIconTex[] = dgSunIcon; + +#define dgNaviIcon "__OTR__textures/parameter_static/gNavi" +static const ALIGN_ASSET(2) char gNaviIconTex[] = dgNaviIcon; + #define dgFileSelMQButtonTex "__OTR__textures/title_static/gFileSelMQButtonTex" static const ALIGN_ASSET(2) char gFileSelMQButtonTex[] = dgFileSelMQButtonTex; |
