1
0
forked from cgvr/DeltaVR

add back minigames after merge

This commit is contained in:
2026-01-25 13:11:58 +02:00
parent 19f8efc6a7
commit 75bd66fc36
5 changed files with 11 additions and 17 deletions

View File

@@ -21,19 +21,17 @@ public class InvokeAiClient : MonoBehaviour
private void Awake()
{
httpClient = new HttpClient
{
Timeout = TimeSpan.FromSeconds(120)
};
httpClient.BaseAddress = new Uri(ConfigManager.Instance.Config.invokeAIUrl);
Instance = this;
}
// Start is called before the first frame update
void Start()
{
httpClient = new HttpClient
{
Timeout = TimeSpan.FromSeconds(120)
};
httpClient.BaseAddress = new Uri(ConfigManager.Instance.Config.invokeAIUrl);
}
// Update is called once per frame