Browse Source

修复报错

胡佳骏 1 year ago
parent
commit
b9f5a8cb85

+ 2 - 2
Samples~/trilibSDK/TriLib/TriLibSamples/Common/Scripts/AbstractInputSystem.cs

@@ -94,7 +94,7 @@ namespace TriLibCore.Samples
                     return 0f;
             }
 #else
-            if (SystemInfo.deviceType == DeviceType.Handheld && Input.touchSupported)
+            if (SystemInfo.deviceType == UnityEngine.DeviceType.Handheld && Input.touchSupported)
             {
                 if (Input.touchCount > 0)
                 {
@@ -143,7 +143,7 @@ namespace TriLibCore.Samples
 #if ENABLE_INPUT_SYSTEM
             return Mouse.current != null ? Mouse.current.scroll.ReadValue() * 0.01f: default;
 #else
-            if (SystemInfo.deviceType == DeviceType.Handheld && Input.touchSupported && Input.touchCount == 2)
+            if (SystemInfo.deviceType == UnityEngine.DeviceType.Handheld && Input.touchSupported && Input.touchCount == 2)
             {
                 var firstTouch = Input.touches[0];
                 var secondTouch = Input.touches[1];