DeeChael / HoYoI

miHoYo/HoYoVerse games UI in minecraft!
MIT License
5 stars 1 forks source link

HoYoI (Aka. HoYo UI, HoUI)

Introduction

This mod simply adds miHoYo/HoYoVerse games UI for Minecraft (like Genshin Impact, Honkai: Star Rial) with vanilla-like style.
Now HoYoI only implemented Genshin Style, Star Rail Style is still working in progress.
Genshin style loading screen has two theme: light and dark. In reallife time 19:00 ~ 7:00 next day the ui will be dark theme.

Screenshots

Genshin Style

Starting game This loading screen will only show once when the game starting. Because NeoForge has an early display, so this feature is broken on NeoForge platform. Ingame loading This loading screen will be normally seen in the game, the picture in the center and the tips at the bottom are all random, customizable and localized (I'll talk about how to customize below). Pause screen The ESC pause screen in the game, the "M" button in the sidebar is Mod List button, for Fabric, you need install Mod Menu to open the Mod List screen.

Star Rail Style

WIP

Customization

You can customize the center picture and bottom tips in loading screen.

FIRST: Create a resource pack (Check Minecraft Wiki)

Tips

SECOND: Create a file in assets/{yourpack}/tips folder with name {languageCode}.json like "en_us.json"
THIRD: Edit the file like the example shown below

[
  {
    "title": "Example Tip 1",
    "desc": [
      "Line 1",
      "Line 2"
    ]
  },
  {
    "title": "Example Tip 2",
    "desc": [
      "Line 1",
      "Line 2",
      "Line 3",
      "Line 4" // I don't suggest over 4 lines
    ]
  },
  ...
]

FOURTH: Load your resource pack

Center picture

SECOND: Put pictures with png format in assets/{yourpack}/textures/ui/regions folder with any filename you like
THIRD: Load your resource pack

Credits