Firstborn/Library/PackageCache/com.unity.inputsystem@1.5.1/InputSystem/Editor/InputDiagnostics.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

32 lines
1.2 KiB
C#

#if UNITY_EDITOR
using UnityEngine.InputSystem.LowLevel;
namespace UnityEngine.InputSystem.Editor
{
internal class InputDiagnostics : IInputDiagnostics
{
public void OnCannotFindDeviceForEvent(InputEventPtr eventPtr)
{
Debug.LogError("Cannot find device for input event: " + eventPtr);
}
public void OnEventTimestampOutdated(InputEventPtr eventPtr, InputDevice device)
{
Debug.LogError(
$"'{eventPtr.type}' input event {eventPtr.id} for device '{device}' is outdated (event time: {eventPtr.time}, device time: {device.lastUpdateTime})");
}
public void OnEventFormatMismatch(InputEventPtr eventPtr, InputDevice device)
{
Debug.LogError(
$"'{eventPtr.type}' input event {eventPtr.id} for device '{device}' has incorrect format (event format: '{eventPtr.type}', device format: '{device.stateBlock.format}')");
}
public void OnEventForDisabledDevice(InputEventPtr eventPtr, InputDevice device)
{
Debug.LogError($"Device '{device}' received input event '{eventPtr}' but the device is disabled");
}
}
}
#endif // UNITY_EDITOR