quick fixup

This commit is contained in:
msk
2022-02-14 13:02:43 -08:00
parent a9be72693c
commit f81069f658
3 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -13,14 +13,14 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
PackageName: TNH_Quality_of_Life_Improvements PackageName: TNH_Quality_of_Life_Improvements
Author: muskit Author: muskit
Version: 1.2.0 Version: 1.2.1
Icon: {fileID: 2800000, guid: 785b7946398f5314b95bf593d2d77d67, type: 3} Icon: {fileID: 2800000, guid: 785b7946398f5314b95bf593d2d77d67, type: 3}
ReadMe: {fileID: 102900000, guid: ab1d6dea017447a48ac348db588a6f35, type: 3} ReadMe: {fileID: 102900000, guid: ab1d6dea017447a48ac348db588a6f35, type: 3}
WebsiteURL: https://github.com/muskit/TNH-Quality-of-Life-Improvements WebsiteURL: https://github.com/muskit/TNH-Quality-of-Life-Improvements
Description: Quality of life improvements to the Take and Hold experience. Description: Quality of life improvements to the Take and Hold experience.
AdditionalDependencies: AdditionalDependencies:
- BepInEx-BepInExPack_H3VR-5.4.1700 - BepInEx-BepInExPack_H3VR-5.4.1700
StripNamespaces: 1 StripNamespaces: 0
AdditionalNamespaces: AdditionalNamespaces:
- TNHQoLImprovements - TNHQoLImprovements
BuildItems: BuildItems:
+4
View File
@@ -6,6 +6,7 @@ And... wait, which hold are you on again?
## Features ## Features
* Better health counter visibility * Better health counter visibility
* Health counter fade when aiming around it
* Token, hold, and wave counter on radar hand * Token, hold, and wave counter on radar hand
* Player count for online leaderboards; see how you stack up! * Player count for online leaderboards; see how you stack up!
* Won't work with [*TakeAndHoldTweaker*](https://h3vr.thunderstore.io/package/devyndamonster/TakeAndHoldTweaker/) installed * Won't work with [*TakeAndHoldTweaker*](https://h3vr.thunderstore.io/package/devyndamonster/TakeAndHoldTweaker/) installed
@@ -20,6 +21,9 @@ Toggle and customize these features in your mod manager's *Config editor*.
For any issues/ideas, please create an issue at the GitHub repository (linked on Thunderstore page). For any issues/ideas, please create an issue at the GitHub repository (linked on Thunderstore page).
## Changelog ## Changelog
1.2.1
* Changed leaderboard player count message for unavailability with TNHTweaker
**1.2.0** **1.2.0**
* HP counter text can now be hidden completely * HP counter text can now be hidden completely
* Added HP counter fading when pointing a firearm towards it, allowing better visiblity * Added HP counter fading when pointing a firearm towards it, allowing better visiblity
+1 -1
View File
@@ -33,7 +33,7 @@ namespace TNHQoLImprovements
if (Array.Exists<Assembly>(loadedAssemblies, x => x.GetName().Name == "TakeAndHoldTweaker")) if (Array.Exists<Assembly>(loadedAssemblies, x => x.GetName().Name == "TakeAndHoldTweaker"))
{ {
tnhTweakerInstalled = true; tnhTweakerInstalled = true;
this.gObjLoading.transform.GetChild(0).GetComponent<Text>().text = "<color=lightblue><size=30>Online player count is incompatible with TNHTweaker.</size></color>"; this.gObjLoading.transform.GetChild(0).GetComponent<Text>().text = "<color=lightblue><size=30>Online leaderboards player count unavailable for TNHTweaker.</size></color>";
this.gObjLoading.SetActive(true); this.gObjLoading.SetActive(true);
return; return;
} }