Files
H3VR-TNH-Quality-of-Life-Im…/Assets/_Scripts/LeaderboardPlayerCountPatch.cs
T

38 lines
1.4 KiB
C#
Raw Normal View History

2022-01-26 01:23:39 -08:00
using System.Reflection;
using HarmonyLib;
2022-01-22 20:13:49 -08:00
using UnityEngine;
using UnityEngine.UI;
using FistVR;
namespace TNHQoLImprovements
{
2022-01-26 01:23:39 -08:00
public static class LeaderboardPlayerCountPatch
2022-01-22 20:13:49 -08:00
{
private static Text uiGlobalText;
2022-01-26 01:23:39 -08:00
public static void Patch(Harmony harmony)
2022-01-22 20:13:49 -08:00
{
2022-01-26 01:23:39 -08:00
var original = typeof(TNH_ScoreDisplay).GetMethod("Start", BindingFlags.NonPublic | BindingFlags.Instance);
var newfunc = typeof(LeaderboardPlayerCountPatch).GetMethod("Setup");
harmony.Patch(original, postfix: new HarmonyMethod(newfunc));
2022-01-22 20:13:49 -08:00
}
public static void Setup(TNH_ScoreDisplay __instance)
{
GameObject gObjLeaderboard = null;
if (__instance.gameObject.name == "_MainMenu") // lobby
{
gObjLeaderboard = __instance.transform.GetChild(3).gameObject; // MainMenuCanvas_RightFar
}
if (__instance.gameObject.name == "_FinalScoreDisplay(Clone)") // game over room
{
gObjLeaderboard = __instance.transform.GetChild(0).gameObject; // ScoreCanvas_PastScores
}
uiGlobalText = gObjLeaderboard.transform.GetChild(0).GetChild(2).GetComponent<Text>();
var playerCountComponent = gObjLeaderboard.AddComponent<LeaderboardPlayerCount>();
playerCountComponent.Init(__instance, uiGlobalText);
2022-01-22 20:13:49 -08:00
}
}
}