13 lines
218 B
C#
13 lines
218 B
C#
using Newtonsoft.Json;
|
|
using UnityEngine;
|
|
using TMPro;
|
|
|
|
public class WebReceiver : MonoBehaviour
|
|
{
|
|
public TMP_Text text;
|
|
public void ReceiveWebParameterJson(string json)
|
|
{
|
|
text.text = json;
|
|
}
|
|
}
|