From 52cdadc03519a86af7d80fa2f60dbe684acf247e Mon Sep 17 00:00:00 2001 From: neuecc Date: Thu, 7 Jan 2021 17:43:35 +0900 Subject: [PATCH] u --- .../Assets/Plugins/UniTask/Runtime/PlayerLoopHelper.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/UniTask/Assets/Plugins/UniTask/Runtime/PlayerLoopHelper.cs b/src/UniTask/Assets/Plugins/UniTask/Runtime/PlayerLoopHelper.cs index a4bc3d2..aea1109 100644 --- a/src/UniTask/Assets/Plugins/UniTask/Runtime/PlayerLoopHelper.cs +++ b/src/UniTask/Assets/Plugins/UniTask/Runtime/PlayerLoopHelper.cs @@ -8,20 +8,16 @@ using System.Threading; #if UNITY_2019_3_OR_NEWER using UnityEngine.LowLevel; +using PlayerLoopType = UnityEngine.PlayerLoop; #else using UnityEngine.Experimental.LowLevel; +using PlayerLoopType = UnityEngine.Experimental.PlayerLoop; #endif #if UNITY_EDITOR using UnityEditor; #endif -#if UNITY_2019_4_OR_NEWER -using PlayerLoopType = UnityEngine.PlayerLoop; -#else -using PlayerLoopType = UnityEngine.Experimental.PlayerLoop; -#endif - namespace Cysharp.Threading.Tasks { public static class UniTaskLoopRunners