master #107

Merged
sin365 merged 6 commits from Alienjack/AxibugEmuOnline:master into master 2025-08-21 00:30:04 +08:00
Showing only changes of commit b07972f66d - Show all commits

View File

@ -79,6 +79,13 @@ namespace AxibugEmuOnline.Client.InputDevices
{ {
foreach (var device in m_devices.Values) device.Update(); foreach (var device in m_devices.Values) device.Update();
DebugInputSystem();
}
private static void DebugInputSystem()
{
return;
#if ENABLE_INPUT_SYSTEM
foreach (var device in InputSystem.devices) foreach (var device in InputSystem.devices)
{ {
if (device is Mouse) if (device is Mouse)
@ -91,7 +98,7 @@ namespace AxibugEmuOnline.Client.InputDevices
} }
} }
} }
#endif
} }
} }
} }