From 4afc19d8b4ca1cf2902c23f0754ca6579655e12d Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 21 Jan 2025 17:23:42 +0800 Subject: [PATCH] game: testing the backend --- SSLR/Assets/Scripts/Backend.cs | 48 ++++++++++++++++++- .../com.unity.services.core/Settings.json | 0 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 SSLR/ProjectSettings/Packages/com.unity.services.core/Settings.json diff --git a/SSLR/Assets/Scripts/Backend.cs b/SSLR/Assets/Scripts/Backend.cs index 6efb94c..b55fb71 100644 --- a/SSLR/Assets/Scripts/Backend.cs +++ b/SSLR/Assets/Scripts/Backend.cs @@ -1,5 +1,51 @@ +using System; +using System.Threading.Tasks; using UnityEngine; +using Supabase; +using Supabase.Postgrest; +using Supabase.Postgrest.Attributes; +using Supabase.Postgrest.Models; + public class Backend : MonoBehaviour { - + [SerializeField] private string url; + [SerializeField] private string anonKey; + + private async void Start() + { + var options = new SupabaseOptions + { + AutoConnectRealtime = true + }; + + var client = new Supabase.Client(url, anonKey, options); + await client.InitializeAsync(); + var test = new Test + { + Name = "John", + Score = 100 + }; + await client.From().Insert(test, new QueryOptions { Returning = QueryOptions.ReturnType.Representation }) + .ContinueWith(task => + { + if (task.IsCompletedSuccessfully) + { + var result = task.Result; + Debug.Log(result.Models[0].Name); + } + else + { + Debug.LogError(task.Exception); + } + + }); + } } + +[Table("test")] +public class Test : BaseModel +{ + [Column("name")] public string Name { get; set; } + + [Column("score")] public int Score { get; set; } +} \ No newline at end of file diff --git a/SSLR/ProjectSettings/Packages/com.unity.services.core/Settings.json b/SSLR/ProjectSettings/Packages/com.unity.services.core/Settings.json new file mode 100644 index 0000000..e69de29