1
Fork 0
mirror of https://github.com/RYGhub/kei.git synced 2024-10-16 07:17:28 +00:00
This commit is contained in:
Steffo 2019-12-10 02:02:36 +01:00
parent e2f11b23c0
commit 835d968956
5 changed files with 13 additions and 6 deletions

View file

@ -18,6 +18,7 @@ public class Network : MonoBehaviour
public string url = "https://ryg.steffo.eu/api/kei";
public string kpid;
public string convid;
public string previous = "";
private Sender sender;
@ -31,7 +32,7 @@ public class Network : MonoBehaviour
kpid = System.Guid.NewGuid().ToString();
PlayerPrefs.SetString("kpid", kpid);
}
convid = kpid = System.Guid.NewGuid().ToString();
convid = System.Guid.NewGuid().ToString();
StartCoroutine(PostRequest("", "true"));
}
@ -41,6 +42,7 @@ public class Network : MonoBehaviour
form.AddField("convid", convid);
form.AddField("message", message);
form.AddField("first", first);
form.AddField("previous", previous);
UnityWebRequest request = UnityWebRequest.Post(url, form);
yield return request.SendWebRequest();
@ -51,9 +53,10 @@ public class Network : MonoBehaviour
else {
try {
KeiResponse kr = JsonUtility.FromJson<KeiResponse>(request.downloadHandler.text);
previous = kr.text;
sender.Change(kr.text, kr.emotion);
}
catch (System.ArgumentException e) {
catch (System.ArgumentException) {
Debug.LogError(request.downloadHandler.text);
}
}

View file

@ -34,7 +34,6 @@ GraphicsSettings:
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0}
m_PreloadedShaders: []
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
type: 0}

View file

@ -120,7 +120,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 23.12
bundleVersion: 23.12.2
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0

View file

@ -3,10 +3,15 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | Kei</title>
<style>
body {
background-color: black;
}
</style>
<title>Kei</title>
<script src="Build/9b952195ab79ef94f0feaae8cbb8d8ac.js"></script>
<script>
UnityLoader.instantiate("unityContainer", "Build/09d4f44b8e4f8af02a070032f8a71d94.json");
UnityLoader.instantiate("unityContainer", "Build/8bc04d0c5fddea9b7f70edca255942d1.json");
</script>
</head>
<body>