mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-02 20:24:26 -07:00
50 lines
2.4 KiB
C#
50 lines
2.4 KiB
C#
using System.Reflection;
|
|
using HarmonyLib;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using FistVR;
|
|
|
|
namespace TNHQoLImprovements
|
|
{
|
|
public static class LeaderboardPlayerCountPatch
|
|
{
|
|
private static GameObject gObjLoading;
|
|
private static Text uiGlobalText;
|
|
|
|
public static void Patch(Harmony harmony)
|
|
{
|
|
var original = typeof(TNH_ScoreDisplay).GetMethod("Start", BindingFlags.NonPublic | BindingFlags.Instance);
|
|
var newfunc = typeof(LeaderboardPlayerCountPatch).GetMethod("Setup");
|
|
|
|
harmony.Patch(original, postfix: new HarmonyMethod(newfunc));
|
|
}
|
|
|
|
public static void Setup(TNH_ScoreDisplay __instance)
|
|
{
|
|
GameObject gObjLeaderboard = null;
|
|
gObjLoading = GameObject.Instantiate(MeatKitPlugin.bundle.LoadAsset<GameObject>("PlayerCount_LoadingText"));
|
|
if (__instance.gameObject.name == "_MainMenu") // lobby
|
|
{
|
|
gObjLeaderboard = __instance.transform.GetChild(3).gameObject; // MainMenuCanvas_RightFar
|
|
gObjLoading.transform.SetParent(gObjLeaderboard.transform, false);
|
|
gObjLoading.GetComponent<RectTransform>().pivot = new Vector2(0, 1);
|
|
gObjLoading.transform.localPosition = new Vector3(520, 380, 0);
|
|
gObjLoading.transform.GetChild(0).GetComponent<Text>().alignment = TextAnchor.UpperLeft;
|
|
}
|
|
if (__instance.gameObject.name == "_FinalScoreDisplay(Clone)") // game over room
|
|
{
|
|
gObjLeaderboard = __instance.transform.GetChild(0).gameObject; // ScoreCanvas_PastScores
|
|
gObjLoading.transform.SetParent(gObjLeaderboard.transform, false);
|
|
gObjLoading.GetComponent<RectTransform>().pivot = new Vector2(1, 1);
|
|
gObjLoading.transform.localPosition = new Vector3(-520, 380, 0);
|
|
gObjLoading.transform.GetChild(0).GetComponent<Text>().alignment = TextAnchor.UpperRight;
|
|
}
|
|
uiGlobalText = gObjLeaderboard.transform.GetChild(0).GetChild(2).GetComponent<Text>();
|
|
gObjLoading.transform.rotation = gObjLeaderboard.transform.rotation;
|
|
gObjLoading.transform.GetChild(0).GetComponent<Text>().font = uiGlobalText.font;
|
|
|
|
var playerCountComponent = gObjLeaderboard.AddComponent<LeaderboardPlayerCount>();
|
|
playerCountComponent.Init(__instance, uiGlobalText, gObjLoading);
|
|
}
|
|
}
|
|
} |