Tested on:
Windows 11 Pro for Workstations and WSL2 Debian 12
Processor: Intel(R) Xeon(R) Gold 6138 CPU @ 2.00GHz 2.00 GHz (2 processors)
Installed RAM: 384 GB
VGA: NVIDIA Quadro P2000 5GB
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.Experimental.Networking; | |
public class UnityWebRequestUsage : MonoBehaviour | |
{ | |
void Start() | |
{ | |
StartCoroutine(GetText()); | |
} |
using System; | |
using UnityEngine; | |
namespace UnityRest | |
{ | |
public static class JsonHelper | |
{ | |
public static T[] FromJson<T>(string jsonArray) | |
{ | |
jsonArray = WrapArray (jsonArray); |