1
0
forked from akanyan/mu3-mods

add offgeki

This commit is contained in:
2025-04-01 22:58:19 -06:00
parent 8c58151b81
commit 5308b02a17
12 changed files with 644 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using MU3.Util;
namespace MU3;
class patch_UIPlayerInfo : UIPlayerInfo
{
private ANM_PLY_life _playerLife;
extern private void orig_create();
private new void create()
{
orig_create();
if(Singleton<Mod.State>.instance.RemovePlayerHealthUI)
{
_playerLife.gameObject.SetActive(false);
}
}
}