|
@@ -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];
|