Skip to content

Commit c4c3dc9

Browse files
committed
Fix: Apply correct RTCOptions conditional for macOS in Unity Editor
- Added conditional for UNITY_EDITOR_OSX - Ensures RTCOPTIONS_API_LATEST = 2 for macOS in plugin EOS SDK 1.17.3-4453235
1 parent a1266ad commit c4c3dc9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.playeveryware.eos/Runtime/EOS_SDK/Generated/Platform/PlatformInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public PlatformInterface(IntPtr innerHandle) : base(innerHandle)
9292
/// <summary>
9393
/// The most recent version of the <see cref="RTCOptions" /> API.
9494
/// </summary>
95-
#if UNITY_STANDALONE_OSX
95+
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
9696
public const int RTCOPTIONS_API_LATEST = 2;
9797
#else
9898
public const int RTCOPTIONS_API_LATEST = 3;

0 commit comments

Comments
 (0)