Skip to content
This repository was archived by the owner on Jul 16, 2020. It is now read-only.

Commit 818eed7

Browse files
committed
Minor fixes for UWP
1 parent a09347c commit 818eed7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Source/InteractiveSDK/Assets/MixerInteractive/Source/Scripts/InteractivityManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ private void ConnectToWebsocket()
850850
}
851851
catch (Exception ex)
852852
{
853-
LogError("Error: " + ex.Message);
853+
_LogError("Error: " + ex.Message);
854854
}
855855
#elif UNITY_XBOXONE && !UNITY_EDITOR
856856
Dictionary<string, string> headers = new Dictionary<string, string>();

Source/InteractiveSDK/Assets/MixerInteractive/Source/Scripts/MixerInteractive.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ internal static void SendOutboundMessages()
400400

401401
private static void SerializeSyncVars()
402402
{
403+
#if !UNITY_WSA
403404
// Get all syncvars
404405
MonoBehaviour[] activeBehaviors = GameObject.FindObjectsOfType<MonoBehaviour>();
405406
foreach (MonoBehaviour monoBehavior in activeBehaviors)
@@ -423,6 +424,7 @@ private static void SerializeSyncVars()
423424
}
424425
}
425426
}
427+
#endif
426428
}
427429

428430
private static void ParseAndSendCustomMessage(string name, string value)
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)