This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_EDITOR | |
using System; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using UnityEditor; | |
using UnityEngine.UIElements; | |
namespace Utilities.Extensions.UIToolkit | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Runtime.CompilerServices; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using UnityEngine.Networking; | |
namespace UnityUtilities.Networking.Extensions | |
{ | |
public static class UnityWebRequestExtension | |
{ | |
public static async Task<UnityWebRequest.Result> SendWebRequestAsync(this UnityWebRequest request, CancellationToken ct = default) |