From 2695da4e2abf441fe23eb1424a0a736c06017d25 Mon Sep 17 00:00:00 2001 From: Coburn Date: Mon, 22 Apr 2019 19:15:17 +1000 Subject: [PATCH] LLAPI Transport not available on WSA/UWP (v2) (#838) * LLAPITransport will not be available for WSA/UWP applications with this patch. (LLAPI never was to begin with). * v2 of the not allowing LLAPI Transport to be available on UWP/WSA games --- Assets/Mirror/Runtime/Transport/LLAPITransport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Runtime/Transport/LLAPITransport.cs b/Assets/Mirror/Runtime/Transport/LLAPITransport.cs index ec410a520..b316463dc 100644 --- a/Assets/Mirror/Runtime/Transport/LLAPITransport.cs +++ b/Assets/Mirror/Runtime/Transport/LLAPITransport.cs @@ -4,7 +4,7 @@ // TODO: Check if LLAPI is supported on Xbox One? // LLAPITransport wraps UNET's LLAPI for use as a HLAPI TransportLayer, only if you're not on a UWP platform. -#if !UNITY_WSA || !UNITY_WSA_10_0 || !UNITY_WINRT || !UNITY_WINRT_10_0 +#if !(UNITY_WSA || UNITY_WSA_10_0 || UNITY_WINRT || UNITY_WINRT_10_0 || NETFX_CORE) using System; using System.ComponentModel;