mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
ASTExtension: Fixed IsGripping check for Knuckles losers
This commit is contained in:
parent
6ac165f4a8
commit
c8c9dd89aa
3 changed files with 3 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="BTKUILib">
|
<Reference Include="BTKUILib">
|
||||||
<HintPath>..\.ManagedLibs\BTKUILib.dll</HintPath>
|
<HintPath>..\.ManagedLibs\BTKUILib.dll</HintPath>
|
||||||
|
<Private>False</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -441,7 +441,7 @@ public class ASTExtensionMod : MelonMod
|
||||||
|
|
||||||
private static bool IsGripping()
|
private static bool IsGripping()
|
||||||
{
|
{
|
||||||
return CVRInputManager.Instance.gripLeftValue > 0.50f ||
|
return CVRInputManager.Instance.gripLeftValue > 0.50f &&
|
||||||
CVRInputManager.Instance.gripRightValue > 0.50f;
|
CVRInputManager.Instance.gripRightValue > 0.50f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,6 @@
|
||||||
],
|
],
|
||||||
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r35/ASTExtension.dll",
|
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r35/ASTExtension.dll",
|
||||||
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ASTExtension/",
|
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/ASTExtension/",
|
||||||
"changelog": "- Fixed an issue where the parameter calibration process would sometimes result in the mouth pointer being misplaced when generated.",
|
"changelog": "- Fixed an issue where the parameter calibration process would sometimes result in the mouth pointer being misplaced when generated.\n- Fixed IsGripping check for Knuckles controllers not requiring *both* hands as intended.",
|
||||||
"embedcolor": "#f61963"
|
"embedcolor": "#f61963"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue