mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-08-01 16:20:40 -07:00
remove joke func. that kills the long-deprecated "Leaderboard Player Count" mod; clean up logging
This commit is contained in:
@@ -8,7 +8,6 @@ namespace TNHQoLImprovements
|
||||
{
|
||||
public static class LeaderboardPlayerCountPatch
|
||||
{
|
||||
private static GameObject gObjLoading;
|
||||
private static Text uiGlobalText;
|
||||
|
||||
public static void Patch(Harmony harmony)
|
||||
@@ -22,29 +21,18 @@ namespace TNHQoLImprovements
|
||||
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);
|
||||
playerCountComponent.Init(__instance, uiGlobalText);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user