1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 04:13:32 +08:00
This commit is contained in:
2024-09-25 20:59:37 +08:00
parent 4534540786
commit 9d795e0ca4
13 changed files with 103 additions and 83 deletions

View File

@@ -1,6 +1,5 @@
using System;
using System.Linq;
using System.Security.Cryptography;
using BepInEx.Configuration;
using UnityEngine;
using UnityEngine.UI;

View File

@@ -112,7 +112,7 @@ public class MyKeyBinder : MonoBehaviour
setTheKeyToggle.isOn = false;
Reset();
}
else if (!this.inputUIButton.highlighted)
else if (!inputUIButton.highlighted)
{
setTheKeyToggle.isOn = false;
Reset();
@@ -173,7 +173,7 @@ public class MyKeyBinder : MonoBehaviour
{
if (Input.GetKey(modKey))
{
mod += "+" + modKey.ToString();
mod += "+" + modKey;
}
}

View File

@@ -1,8 +1,8 @@
using System;
using HarmonyLib;
using System.Collections.Generic;
using System.Globalization;
using BepInEx.Configuration;
using HarmonyLib;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;