mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 22:39:22 +00:00
Move many mods to Deprecated folder, fix spelling
This commit is contained in:
parent
5e822cec8d
commit
0042590aa6
539 changed files with 7475 additions and 3120 deletions
31
.Deprecated/IKAdjustments/Integrations/BTKUIAddon.cs
Normal file
31
.Deprecated/IKAdjustments/Integrations/BTKUIAddon.cs
Normal file
|
@ -0,0 +1,31 @@
|
|||
using System.Runtime.CompilerServices;
|
||||
using BTKUILib;
|
||||
using BTKUILib.UIObjects;
|
||||
using MelonLoader;
|
||||
using NAK.IKAdjustments.Systems;
|
||||
|
||||
namespace NAK.IKAdjustments.Integrations;
|
||||
|
||||
public static class BTKUIAddon
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||
public static void Initialize()
|
||||
{
|
||||
//Add myself to the Misc Menu
|
||||
Page miscPage = QuickMenuAPI.MiscTabPage;
|
||||
Category miscCategory = miscPage.AddCategory(IKAdjustments.SettingsCategory);
|
||||
|
||||
// Add button
|
||||
miscCategory.AddButton("Tracking Adjust", "",
|
||||
"Adjust tracking points in this mode. Grip to adjust. Trigger to reset.")
|
||||
.OnPress += () => { IKAdjuster.Instance.EnterAdjustMode(); };
|
||||
|
||||
// Reset Button
|
||||
miscCategory.AddButton("Reset Offsets", "", "Reset all tracked point offsets.")
|
||||
.OnPress += () => { IKAdjuster.Instance.ResetAllOffsets(); };
|
||||
|
||||
// Cycle GrabMode Button
|
||||
miscCategory.AddButton("Cycle Mode", "", "Cycle grab mode. Position, Rotation, or Both.")
|
||||
.OnPress += () => { IKAdjuster.Instance.CycleAdjustMode(); };
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue