diff --git a/Assets/BuildProfile.asset b/Assets/BuildProfile.asset index 0ad2367..12acfc2 100644 --- a/Assets/BuildProfile.asset +++ b/Assets/BuildProfile.asset @@ -26,5 +26,5 @@ MonoBehaviour: ApplyHarmonyPatches: 1 BuildItems: - {fileID: 11400000, guid: ccaff18373cd99848b344316974e6d46, type: 2} - BuildAction: 1 + BuildAction: 2 OutputProfile: C:/Users/Alex/AppData/Roaming/r2modmanPlus-local/H3VR/profiles/dev diff --git a/Assets/MeatKit/MeatKitPlugin.cs b/Assets/MeatKit/MeatKitPlugin.cs index ac79819..b95b9af 100644 --- a/Assets/MeatKit/MeatKitPlugin.cs +++ b/Assets/MeatKit/MeatKitPlugin.cs @@ -103,7 +103,7 @@ public static AssetBundle bundle; } else { - Logger.LogInfo(String.Format("Couldn't find a TNH game. Trying again...({0}/10)", i)); + Logger.LogInfo(String.Format("Couldn't find a TNH game. Trying again...({0}/10)", i+1)); yield return new WaitForEndOfFrame(); } } diff --git a/Assets/README.md b/Assets/README.md index 2abfb6b..54b3c6a 100644 --- a/Assets/README.md +++ b/Assets/README.md @@ -5,8 +5,9 @@ And... wait, which hold are you on again? **This mod adds quality of life improvements to the *Take and Hold* experience that help with these questions, and then some.** ## Features +* Health counter toggle * Better health counter visibility -* Health counter fade when aiming around it +* Health counter fade/hide when aiming around it * Token, hold, and wave counter on radar hand * Player count for online leaderboards; see how you stack up! * Disabled if [*TakeAndHoldTweaker*](https://h3vr.thunderstore.io/package/devyndamonster/TakeAndHoldTweaker/) is installed diff --git a/Assets/_Scripts/InPlay.cs b/Assets/_Scripts/InPlay.cs index 555b1b3..e6767ef 100644 --- a/Assets/_Scripts/InPlay.cs +++ b/Assets/_Scripts/InPlay.cs @@ -10,14 +10,6 @@ namespace TNHQoLImprovements { public static TNH_Manager tnhManager; - public static bool InHold() - { - if (tnhManager == null) - return false; - - return tnhManager.Phase == TNH_Phase.Hold; - } - void Start() { tnhManager = FindObjectOfType(); diff --git a/README.md b/README.md index f5c6ea0..ddcfeeb 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,6 @@ Numbered tokens at item stations
Player count for online leaderboards (won't work w/ *TNHTweaker* installed)

-Features are modifiable via the mod manager's *Config editor*. +Features are modifiable via your mod manager's *Config editor*. **This mod is built on [MeatKit](https://github.com/H3VR-Modding/MeatKit).** diff --git a/preview/aimhide.png b/preview/aimhide.png new file mode 100644 index 0000000..540b31a Binary files /dev/null and b/preview/aimhide.png differ diff --git a/preview/hp.png b/preview/hp.png new file mode 100644 index 0000000..5f37280 Binary files /dev/null and b/preview/hp.png differ diff --git a/preview/item station.png b/preview/item station.png new file mode 100644 index 0000000..3546e24 Binary files /dev/null and b/preview/item station.png differ diff --git a/preview/leaderboard.png b/preview/leaderboard.png new file mode 100644 index 0000000..8f5b1b8 Binary files /dev/null and b/preview/leaderboard.png differ diff --git a/preview/stats.png b/preview/stats.png new file mode 100644 index 0000000..496db0a Binary files /dev/null and b/preview/stats.png differ diff --git a/preview/stats_new.png b/preview/stats_new.png new file mode 100644 index 0000000..a3b4a99 Binary files /dev/null and b/preview/stats_new.png differ