Compare commits

..

No commits in common. "224e0d112622abedc9515956990a9ffb59475e6c" and "ca0880e256bb14eb34798c5be1b6248335963455" have entirely different histories.

2 changed files with 8 additions and 26 deletions

View File

@ -165,8 +165,6 @@ public static class AxiHttp
}
public static IPAddress GetDnsIP(string str)
{
lock (dictIP2Address)
{
if (!dictIP2Address.ContainsKey(str))
{
@ -183,7 +181,6 @@ public static class AxiHttp
}
return dictIP2Address[str];
}
}
public enum AxiDownLoadMode
{

View File

@ -1,6 +1,5 @@
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem;
namespace AxibugEmuOnline.Client.InputDevices
{
@ -78,20 +77,6 @@ namespace AxibugEmuOnline.Client.InputDevices
public void Update()
{
foreach (var device in m_devices.Values) device.Update();
foreach (var device in InputSystem.devices)
{
if (device is Mouse)
continue;
for (int i = 0; i < device.allControls.Count; i++)
{
if (device.allControls[i].IsPressed(0))
{
Debug.Log($"{device.displayName}| {device.allControls[i].displayName}|{device.allControls[i].name}");
}
}
}
}
}
}