1
0
mirror of https://github.com/xiaopeng12138/MaiDXR.git synced 2025-01-05 19:34:32 +01:00
MaiDXR/Assets/Scripts/Configurations/ButtonSettingManager.cs
2022-08-19 17:51:47 +02:00

35 lines
915 B
C#

using System.Collections;
using System.Collections.Generic;
using System;
using UnityEngine;
using TMPro;
using WindowsInput.Native;
public class ButtonSettingManager : MonoBehaviour
{
public ButtonToKey Button;
TMP_Dropdown Dropdown;
void Start()
{
Dropdown = GetComponent<TMP_Dropdown>();
PopulateList();
GetKeyCode();
}
void GetKeyCode()
{
if (JsonConfig.HasKey(gameObject.name))
Dropdown.value = JsonConfig.GetInt(gameObject.name);
OnValueChanged(Dropdown.value);
}
public void OnValueChanged(int value)
{
Button.keyToPress = (VirtualKeyCode)Enum.GetValues(typeof(VirtualKeyCode)).GetValue(value);
}
void PopulateList()
{
string[] enumNames = Enum.GetNames(typeof(VirtualKeyCode));
List<string> keyNames = new List<string>(enumNames);
Dropdown.AddOptions(keyNames);
}
}