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

Commit bd80c9b

Browse files
author
Paul Gilmore
committed
Add UnityWebRequest to EdEx Panel
Summary: Add UnityWebRequest to EdEx Panel Test Plan: Jenker! Reviewers: Marco.Williams Maniphest Tasks: T3737 Differential Revision: https://phabricator.playfab.com/D5290
1 parent 64c116f commit bd80c9b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorSettings.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ public enum SubMenuStates
2020
public enum WebRequestType
2121
{
2222
UnityWww, // High compatability Unity api calls
23-
HttpWebRequest // High performance multi-threaded api calls
23+
HttpWebRequest, // High performance multi-threaded api calls
24+
#if UNITY_2017_2_OR_NEWER
25+
UnityWebRequest, // Modern unity HTTP component
26+
#endif
2427
}
2528

2629
private static float LABEL_WIDTH = 160;

0 commit comments

Comments
 (0)