From 46960079583300e7c63240f071006e1690a58a05 Mon Sep 17 00:00:00 2001 From: Alan P John Date: Tue, 2 Feb 2021 09:50:42 +0530 Subject: [PATCH 01/14] Setup API Client models and singleton Singleton class and models for requests and responses made --- Assets/Scripts/APIClient.meta | 8 +++++ Assets/Scripts/APIClient/APIClient.cs | 25 ++++++++++++++ Assets/Scripts/APIClient/APIClient.cs.meta | 11 ++++++ Assets/Scripts/APIClient/Models.meta | 8 +++++ Assets/Scripts/APIClient/Models/Models.cs | 31 +++++++++++++++++ .../Scripts/APIClient/Models/Models.cs.meta | 11 ++++++ Assets/Scripts/APIClient/Singleton.meta | 8 +++++ .../Scripts/APIClient/Singleton/Singleton.cs | 34 +++++++++++++++++++ .../APIClient/Singleton/Singleton.cs.meta | 11 ++++++ 9 files changed, 147 insertions(+) create mode 100644 Assets/Scripts/APIClient.meta create mode 100644 Assets/Scripts/APIClient/APIClient.cs create mode 100644 Assets/Scripts/APIClient/APIClient.cs.meta create mode 100644 Assets/Scripts/APIClient/Models.meta create mode 100644 Assets/Scripts/APIClient/Models/Models.cs create mode 100644 Assets/Scripts/APIClient/Models/Models.cs.meta create mode 100644 Assets/Scripts/APIClient/Singleton.meta create mode 100644 Assets/Scripts/APIClient/Singleton/Singleton.cs create mode 100644 Assets/Scripts/APIClient/Singleton/Singleton.cs.meta diff --git a/Assets/Scripts/APIClient.meta b/Assets/Scripts/APIClient.meta new file mode 100644 index 0000000..5dde5bd --- /dev/null +++ b/Assets/Scripts/APIClient.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 760f10b1e303e81419f6ddb93e0a1048 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/APIClient/APIClient.cs b/Assets/Scripts/APIClient/APIClient.cs new file mode 100644 index 0000000..e10d696 --- /dev/null +++ b/Assets/Scripts/APIClient/APIClient.cs @@ -0,0 +1,25 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Networking; +using APIClient.Models; +using APIClient.Singleton; + +namespace APIClient +{ + + public class APIClient : Singleton + { + private string serverEndpoint = "https://argorithm.el.r.appspot.com"; + + // public IEnumerator connect(string url, System.Action callback){} + + // public IEnumerator create(Account user,System.Action callback){} + + // public IEnumerator login(Account user,System.Action callback){} + + // public IEnumerator list(System.Action> callback){} + + } + +} diff --git a/Assets/Scripts/APIClient/APIClient.cs.meta b/Assets/Scripts/APIClient/APIClient.cs.meta new file mode 100644 index 0000000..02a8ab5 --- /dev/null +++ b/Assets/Scripts/APIClient/APIClient.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5401e6b191694c241871d886973f9593 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/APIClient/Models.meta b/Assets/Scripts/APIClient/Models.meta new file mode 100644 index 0000000..96d102e --- /dev/null +++ b/Assets/Scripts/APIClient/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31eac76353b1c4f49961e9625a0d8b8e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/APIClient/Models/Models.cs b/Assets/Scripts/APIClient/Models/Models.cs new file mode 100644 index 0000000..c1c9826 --- /dev/null +++ b/Assets/Scripts/APIClient/Models/Models.cs @@ -0,0 +1,31 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace APIClient.Models{ + + public class ConnectionResponse{ + public string status; + } + + public class Account{ + public string email; + public string password; + } + + public class CreationResponse{ + public string status; + } + + public class LoginResponse{ + public string status; + public string token; + } + + public class ARgorithm{ + public string argorithmID; + public string maintainer; + public string description; + } + +} diff --git a/Assets/Scripts/APIClient/Models/Models.cs.meta b/Assets/Scripts/APIClient/Models/Models.cs.meta new file mode 100644 index 0000000..e2cffa4 --- /dev/null +++ b/Assets/Scripts/APIClient/Models/Models.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3b1e98c598928ae46b68052c51b4095f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/APIClient/Singleton.meta b/Assets/Scripts/APIClient/Singleton.meta new file mode 100644 index 0000000..546c81f --- /dev/null +++ b/Assets/Scripts/APIClient/Singleton.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5872be6bc7ef3842b2ed552f8152ecb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/APIClient/Singleton/Singleton.cs b/Assets/Scripts/APIClient/Singleton/Singleton.cs new file mode 100644 index 0000000..bf5d457 --- /dev/null +++ b/Assets/Scripts/APIClient/Singleton/Singleton.cs @@ -0,0 +1,34 @@ + +using UnityEngine; + +namespace APIClient.Singleton +{ + public class Singleton : MonoBehaviour + where T : Component + { + private static T _instance; + public static T Instance + { + get + { + if (_instance == null) + { + var objs = FindObjectsOfType(typeof(T)) as T[]; + if (objs.Length > 0) + _instance = objs[0]; + if (objs.Length > 1) + { + Debug.LogError("There is more than one " + typeof(T).Name + " in the scene."); + } + if (_instance == null) + { + GameObject obj = new GameObject(); + obj.name = string.Format("_{0}", typeof(T).Name); + _instance = obj.AddComponent(); + } + } + return _instance; + } + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/APIClient/Singleton/Singleton.cs.meta b/Assets/Scripts/APIClient/Singleton/Singleton.cs.meta new file mode 100644 index 0000000..e8653ee --- /dev/null +++ b/Assets/Scripts/APIClient/Singleton/Singleton.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9f0322ede02b1f24ca6c2b96f66901d1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: From d2fce9e1a3f8daabaa4a9ead2b96e8fcec51093e Mon Sep 17 00:00:00 2001 From: Alan P John Date: Tue, 2 Feb 2021 06:28:55 +0530 Subject: [PATCH 02/14] Serializable models & account creation Models are now serializable and APIclient has create account method implemented. Renamed APIclient to ARgorithmAPI --- Assets/Scripts/APIClient/APIClient.cs | 25 ----- .../{APIClient.meta => ARgorithmAPI.meta} | 2 +- Assets/Scripts/ARgorithmAPI/APIClient.cs | 93 +++++++++++++++++++ .../APIClient.cs.meta | 0 .../{APIClient => ARgorithmAPI}/Models.meta | 0 .../Models/Models.cs | 15 ++- .../Models/Models.cs.meta | 0 .../Singleton.meta | 0 .../Singleton/Singleton.cs | 2 +- .../Singleton/Singleton.cs.meta | 0 10 files changed, 108 insertions(+), 29 deletions(-) delete mode 100644 Assets/Scripts/APIClient/APIClient.cs rename Assets/Scripts/{APIClient.meta => ARgorithmAPI.meta} (77%) create mode 100644 Assets/Scripts/ARgorithmAPI/APIClient.cs rename Assets/Scripts/{APIClient => ARgorithmAPI}/APIClient.cs.meta (100%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Models.meta (100%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Models/Models.cs (67%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Models/Models.cs.meta (100%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Singleton.meta (100%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Singleton/Singleton.cs (96%) rename Assets/Scripts/{APIClient => ARgorithmAPI}/Singleton/Singleton.cs.meta (100%) diff --git a/Assets/Scripts/APIClient/APIClient.cs b/Assets/Scripts/APIClient/APIClient.cs deleted file mode 100644 index e10d696..0000000 --- a/Assets/Scripts/APIClient/APIClient.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.Networking; -using APIClient.Models; -using APIClient.Singleton; - -namespace APIClient -{ - - public class APIClient : Singleton - { - private string serverEndpoint = "https://argorithm.el.r.appspot.com"; - - // public IEnumerator connect(string url, System.Action callback){} - - // public IEnumerator create(Account user,System.Action callback){} - - // public IEnumerator login(Account user,System.Action callback){} - - // public IEnumerator list(System.Action> callback){} - - } - -} diff --git a/Assets/Scripts/APIClient.meta b/Assets/Scripts/ARgorithmAPI.meta similarity index 77% rename from Assets/Scripts/APIClient.meta rename to Assets/Scripts/ARgorithmAPI.meta index 5dde5bd..1df582e 100644 --- a/Assets/Scripts/APIClient.meta +++ b/Assets/Scripts/ARgorithmAPI.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 760f10b1e303e81419f6ddb93e0a1048 +guid: 1f60ccc5e102efd4dbcc4ddd5bda23b5 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs new file mode 100644 index 0000000..0f21329 --- /dev/null +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -0,0 +1,93 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Networking; +using ARgorithmAPI.Models; +using ARgorithmAPI.Singleton; + +namespace ARgorithmAPI +{ + + public class APIClient : Singleton + { + private string serverEndpoint = "https://argorithm.el.r.appspot.com"; + private bool auth = false; + + public IEnumerator connect(string url, System.Action callback){ + using(UnityWebRequest webRequest = UnityWebRequest.Get(url+"/argorithm")) + { + yield return webRequest.SendWebRequest(); + + if(webRequest.isNetworkError || webRequest.isHttpError){ + callback(new ConnectionResponse { + status="FAILURE" + }); + } + + if(webRequest.isDone) + { + ConnectionRawResponse response = JsonUtility.FromJson( + webRequest.downloadHandler.text + ); + serverEndpoint = url; + Debug.Log(serverEndpoint); + if (response.auth == "ENABLED") + { + auth = true; + callback(new ConnectionResponse { + status="AUTH" + }); + }else + { + auth = false; + callback(new ConnectionResponse { + status="SUCCESS" + }); + } + } + } + } + + public IEnumerator create(Account user,System.Action callback){ + WWWForm form = new WWWForm(); + form.AddField("username" , user.email); + form.AddField("password" , user.password); + using(UnityWebRequest webRequest = UnityWebRequest.Post(serverEndpoint+"/users/register",form)){ + + yield return webRequest.SendWebRequest(); + if(webRequest.isNetworkError){ + callback(new CreationResponse { + status="FAILED" + }); + } + + if(webRequest.isDone){ + switch (webRequest.responseCode) + { + case 200: callback(new CreationResponse { + status="SUCCESS" + }); + break; + case 409: callback( + new CreationResponse { + status="EXISTING" + }); + break; + default:callback( + new CreationResponse { + status="FAILURE" + }); + break; + } + } + + } + } + + // public IEnumerator login(Account user,System.Action callback){} + + // public IEnumerator list(System.Action> callback){} + + } + +} diff --git a/Assets/Scripts/APIClient/APIClient.cs.meta b/Assets/Scripts/ARgorithmAPI/APIClient.cs.meta similarity index 100% rename from Assets/Scripts/APIClient/APIClient.cs.meta rename to Assets/Scripts/ARgorithmAPI/APIClient.cs.meta diff --git a/Assets/Scripts/APIClient/Models.meta b/Assets/Scripts/ARgorithmAPI/Models.meta similarity index 100% rename from Assets/Scripts/APIClient/Models.meta rename to Assets/Scripts/ARgorithmAPI/Models.meta diff --git a/Assets/Scripts/APIClient/Models/Models.cs b/Assets/Scripts/ARgorithmAPI/Models/Models.cs similarity index 67% rename from Assets/Scripts/APIClient/Models/Models.cs rename to Assets/Scripts/ARgorithmAPI/Models/Models.cs index c1c9826..e5f8c15 100644 --- a/Assets/Scripts/APIClient/Models/Models.cs +++ b/Assets/Scripts/ARgorithmAPI/Models/Models.cs @@ -1,27 +1,38 @@ -using System.Collections; +using System; +using System.Collections; using System.Collections.Generic; using UnityEngine; -namespace APIClient.Models{ +namespace ARgorithmAPI.Models{ + [Serializable] + public class ConnectionRawResponse{ + public string auth; + } + + [Serializable] public class ConnectionResponse{ public string status; } + [Serializable] public class Account{ public string email; public string password; } + [Serializable] public class CreationResponse{ public string status; } + [Serializable] public class LoginResponse{ public string status; public string token; } + [Serializable] public class ARgorithm{ public string argorithmID; public string maintainer; diff --git a/Assets/Scripts/APIClient/Models/Models.cs.meta b/Assets/Scripts/ARgorithmAPI/Models/Models.cs.meta similarity index 100% rename from Assets/Scripts/APIClient/Models/Models.cs.meta rename to Assets/Scripts/ARgorithmAPI/Models/Models.cs.meta diff --git a/Assets/Scripts/APIClient/Singleton.meta b/Assets/Scripts/ARgorithmAPI/Singleton.meta similarity index 100% rename from Assets/Scripts/APIClient/Singleton.meta rename to Assets/Scripts/ARgorithmAPI/Singleton.meta diff --git a/Assets/Scripts/APIClient/Singleton/Singleton.cs b/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs similarity index 96% rename from Assets/Scripts/APIClient/Singleton/Singleton.cs rename to Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs index bf5d457..9235a4a 100644 --- a/Assets/Scripts/APIClient/Singleton/Singleton.cs +++ b/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs @@ -1,7 +1,7 @@  using UnityEngine; -namespace APIClient.Singleton +namespace ARgorithmAPI.Singleton { public class Singleton : MonoBehaviour where T : Component diff --git a/Assets/Scripts/APIClient/Singleton/Singleton.cs.meta b/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs.meta similarity index 100% rename from Assets/Scripts/APIClient/Singleton/Singleton.cs.meta rename to Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs.meta From 64aff35fb8ad56fd52a38363d4d4477b393b02e3 Mon Sep 17 00:00:00 2001 From: Alan P John Date: Tue, 2 Feb 2021 07:03:06 +0530 Subject: [PATCH 03/14] Login method implemented in API call --- Assets/Scripts/ARgorithmAPI/APIClient.cs | 65 +++++++++++++++++++- Assets/Scripts/ARgorithmAPI/Models/Models.cs | 22 ++++--- 2 files changed, 76 insertions(+), 11 deletions(-) diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs index 0f21329..9ebeaa9 100644 --- a/Assets/Scripts/ARgorithmAPI/APIClient.cs +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -12,6 +12,7 @@ public class APIClient : Singleton { private string serverEndpoint = "https://argorithm.el.r.appspot.com"; private bool auth = false; + private string token = null; public IEnumerator connect(string url, System.Action callback){ using(UnityWebRequest webRequest = UnityWebRequest.Get(url+"/argorithm")) @@ -68,11 +69,19 @@ public IEnumerator create(Account user,System.Action callback) status="SUCCESS" }); break; + case 409: callback( new CreationResponse { status="EXISTING" }); break; + + case 405: callback( + new CreationResponse{ + status="NOT_ALLOWED" + }); + break; + default:callback( new CreationResponse { status="FAILURE" @@ -80,11 +89,63 @@ public IEnumerator create(Account user,System.Action callback) break; } } - } } - // public IEnumerator login(Account user,System.Action callback){} + public IEnumerator login(Account user,System.Action callback){ + WWWForm form = new WWWForm(); + form.AddField("username" , user.email); + form.AddField("password" , user.password); + using(UnityWebRequest webRequest = UnityWebRequest.Post(serverEndpoint+"/users/login",form)){ + yield return webRequest.SendWebRequest(); + + if(webRequest.isNetworkError){ + callback(new LoginResponse { + status="FAILURE" + }); + } + + if (webRequest.isDone){ + switch (webRequest.responseCode) + { + case 200: + LoginRawResponse response = JsonUtility.FromJson( + webRequest.downloadHandler.text + ); + token = response.access_token; + callback(new LoginResponse{ + status="SUCCESS" + }); + break; + + case 404: + callback(new LoginResponse{ + status="NOT_FOUND" + }); + break; + + case 401: + callback(new LoginResponse{ + status="INCORRECT_PASSWORD" + }); + break; + + case 405: + callback(new LoginResponse{ + status="NOT_ALLOWED" + }); + break; + + default: + callback(new LoginResponse{ + status="FAILURE" + });break; + } + } + + Debug.Log(token); + } + } // public IEnumerator list(System.Action> callback){} diff --git a/Assets/Scripts/ARgorithmAPI/Models/Models.cs b/Assets/Scripts/ARgorithmAPI/Models/Models.cs index e5f8c15..fd77283 100644 --- a/Assets/Scripts/ARgorithmAPI/Models/Models.cs +++ b/Assets/Scripts/ARgorithmAPI/Models/Models.cs @@ -5,15 +5,18 @@ namespace ARgorithmAPI.Models{ + [Serializable] + public class Response{ + public string status; + } + [Serializable] public class ConnectionRawResponse{ public string auth; } [Serializable] - public class ConnectionResponse{ - public string status; - } + public class ConnectionResponse:Response{} [Serializable] public class Account{ @@ -22,16 +25,17 @@ public class Account{ } [Serializable] - public class CreationResponse{ - public string status; - } + public class CreationResponse:Response{} [Serializable] - public class LoginResponse{ - public string status; - public string token; + public class LoginRawResponse{ + public string access_token; + public string token_type; } + [Serializable] + public class LoginResponse:Response{} + [Serializable] public class ARgorithm{ public string argorithmID; From ee296d517d53dce0840694f6d8e09d1ab5e5c14d Mon Sep 17 00:00:00 2001 From: Alan P John Date: Tue, 2 Feb 2021 08:56:58 +0530 Subject: [PATCH 04/14] implemented all methods except run --- Assets/Scripts/ARgorithmAPI/APIClient.cs | 160 +++++++++++++++++- Assets/Scripts/ARgorithmAPI/Models/Models.cs | 50 +++++- .../ARgorithmAPI/Singleton/Singleton.cs | 3 + 3 files changed, 203 insertions(+), 10 deletions(-) diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs index 9ebeaa9..2e88454 100644 --- a/Assets/Scripts/ARgorithmAPI/APIClient.cs +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -10,11 +10,36 @@ namespace ARgorithmAPI public class APIClient : Singleton { - private string serverEndpoint = "https://argorithm.el.r.appspot.com"; - private bool auth = false; - private string token = null; + /* + APIclient is the main class handling ARgorithmServer API requests. + Its datamembers are stored in PlayerPrefs + */ + private string serverEndpoint{ + // The server endpoint to which you have to connect to + get { return PlayerPrefs.GetString("endpoint"); } + set { PlayerPrefs.SetString("endpoint", value); } + } + private string auth{ + // ENABLED if auth is enabled at endpoint + get { return PlayerPrefs.GetString("auth"); } + set { PlayerPrefs.SetString("auth", value); } + } + private string token{ + // stored last used JWT token + get { return PlayerPrefs.GetString("token"); } + set { PlayerPrefs.SetString("token", value); } + } public IEnumerator connect(string url, System.Action callback){ + /* + Estabilishes connection with given endpoint and returns data regarding auth functionality at server + + The ConnectionResponse.status can have following values + - FAILURE: Error has occured + - AUTH: Connection has been estabilished and Authentication is required + - SUCCESS: Connection has been estabilished and Authentication is not required + + */ using(UnityWebRequest webRequest = UnityWebRequest.Get(url+"/argorithm")) { yield return webRequest.SendWebRequest(); @@ -34,22 +59,31 @@ public IEnumerator connect(string url, System.Action callbac Debug.Log(serverEndpoint); if (response.auth == "ENABLED") { - auth = true; callback(new ConnectionResponse { status="AUTH" }); }else { - auth = false; callback(new ConnectionResponse { status="SUCCESS" }); } + auth = response.auth; } } } public IEnumerator create(Account user,System.Action callback){ + /* + Creates user account + + The CreationResponse.status can have following values + - FAILURE: Error has occured + - SUCCESS: User account has been created + - EXISTING: Email is already registered + - NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login + + */ WWWForm form = new WWWForm(); form.AddField("username" , user.email); form.AddField("password" , user.password); @@ -93,6 +127,17 @@ public IEnumerator create(Account user,System.Action callback) } public IEnumerator login(Account user,System.Action callback){ + /* + Logs in to user account and updates authorization token + + The LoginResponse.status can have following values + - FAILURE: Error has occured + - SUCCESS: Login successful + - NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login + - NOT_FOUND: Email is not registered + - INCORRECT_PASSWORD: Password is incorrect + + */ WWWForm form = new WWWForm(); form.AddField("username" , user.email); form.AddField("password" , user.password); @@ -147,7 +192,110 @@ public IEnumerator login(Account user,System.Action callback){ } } - // public IEnumerator list(System.Action> callback){} + public IEnumerator list(System.Action callback){ + /* + Returns list of ARgorithms + + returns empty list if server error or no argorithms on server + */ + using(UnityWebRequest webRequest = UnityWebRequest.Get(serverEndpoint+"/argorithms/list")){ + yield return webRequest.SendWebRequest(); + if(webRequest.isNetworkError){ + callback(new ARgorithmCollection{ + items = {}, + }); + } + + if(webRequest.isDone){ + string value = "{\"items\":" + webRequest.downloadHandler.text + "}"; + Debug.Log(value); + ARgorithmCollection response = JsonUtility.FromJson(value); + callback(response); + } + } + } + + public IEnumerator verify(System.Action callback){ + /* + Verifies whether stored JWT token is valid or not. + When connecting to endpoint, if token is valid then login can be skipped + + The LoginResponse.status can have following values + - FAILURE: Error has occured + - SUCCESS: Login successful + - RESET: Will have to login again + */ + WWWForm form = new WWWForm(); + using(UnityWebRequest webRequest = UnityWebRequest.Post(serverEndpoint+"/users/verify",form)){ + + webRequest.SetRequestHeader("authorization","Bearer "+token); + + yield return webRequest.SendWebRequest(); + + if(webRequest.isNetworkError){ + callback(new LoginResponse { + status="FAILURE" + }); + } + + if (webRequest.isDone){ + switch (webRequest.responseCode) + { + case 200: + callback(new LoginResponse{ + status="SUCCESS" + }); + break; + + case 401: + callback(new LoginResponse{ + status="RESET" + }); + break; + + default: + callback(new LoginResponse{ + status="FAILURE" + }); + break; + } + } + } + } + + /* + BELOW CODE IS ATTEMPT AT RUNNING ARGOTIHMS + IGNORE FOR NOW , WILL IMPLEMENT LATER + */ + + // public IEnumerator run(ExecutionRequest exec,System.Action callback){ + // string body = JsonUtility.ToJson(exec); + // Debug.Log(body); + // using(UnityWebRequest webRequest = UnityWebRequest.Post(serverEndpoint+"/argorithms/run",body)){ + // webRequest.SetRequestHeader("authorization","Bearer "+token); + // webRequest.SetRequestHeader("Content-Type","application/json"); + // yield return webRequest.SendWebRequest(); + + // if(webRequest.isNetworkError){ + // callback("FAILURE"); + // } + + // if (webRequest.isDone){ + // switch (webRequest.responseCode) + // { + // case 200: + // callback(webRequest.downloadHandler.text); + // break; + + // default: + // Debug.Log(webRequest.responseCode); + // Debug.Log(webRequest.downloadHandler.text); + // callback("TRY_AGAIN"); + // break; + // } + // } + // } + // } } diff --git a/Assets/Scripts/ARgorithmAPI/Models/Models.cs b/Assets/Scripts/ARgorithmAPI/Models/Models.cs index fd77283..e2fa5a2 100644 --- a/Assets/Scripts/ARgorithmAPI/Models/Models.cs +++ b/Assets/Scripts/ARgorithmAPI/Models/Models.cs @@ -4,43 +4,85 @@ using UnityEngine; namespace ARgorithmAPI.Models{ - + /* + The models namespace consists of JSON serializable schemas + */ + [Serializable] public class Response{ + /* + The standard API response class. Returns string status + */ public string status; } [Serializable] public class ConnectionRawResponse{ + /* + Used to parse the response to connect request + */ public string auth; } [Serializable] - public class ConnectionResponse:Response{} + public class ConnectionResponse:Response{ + /* + The standard API response class for connect response + */ + } [Serializable] public class Account{ + /* + The model for user account + */ public string email; public string password; } [Serializable] - public class CreationResponse:Response{} + public class CreationResponse:Response{ + /* + The standard API response class for connect response + */ + } [Serializable] public class LoginRawResponse{ + /* + Schema used to parse access token from login api response + */ public string access_token; public string token_type; } [Serializable] - public class LoginResponse:Response{} + public class LoginResponse:Response{ + /* + The standard API response class for connect response + */ + } [Serializable] public class ARgorithm{ + /* + The Model class for an ARgorithm + */ public string argorithmID; public string maintainer; public string description; + public string function; + public string filename; + public object parameters; + public object example; + } + + [Serializable] + public class ARgorithmCollection{ + /* + The Model class for List of ARgorithms + */ + public ARgorithm[] items; } } diff --git a/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs b/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs index 9235a4a..9fd1f94 100644 --- a/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs +++ b/Assets/Scripts/ARgorithmAPI/Singleton/Singleton.cs @@ -3,6 +3,9 @@ namespace ARgorithmAPI.Singleton { + /* + The Singleton class creates one API object and places it in the game object + */ public class Singleton : MonoBehaviour where T : Component { From e7966f16d6bdc478890af7ee5004627304d7a01f Mon Sep 17 00:00:00 2001 From: Alan P John Date: Tue, 2 Feb 2021 14:44:08 +0530 Subject: [PATCH 05/14] Create README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6feec64 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Unity-App +[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) + +Mobile Application to render data structures in augmented reality +For more info, check out [ARgorithm docs](https://argorithm.github.io/toolkit) From 7386d0787eb580fb9a9a288cafd49647acaac3e0 Mon Sep 17 00:00:00 2001 From: Vin-dictive <34976549+Vin-dictive@users.noreply.github.com> Date: Tue, 2 Feb 2021 18:44:29 +0530 Subject: [PATCH 06/14] Added Login Page Added Login Page UI and setup scripts. --- Assets/Scenes/UI.unity | 12120 ++++++++++------ Assets/Scripts/ARgorithmAPI/APIClient.cs | 2 - Assets/Scripts/ButtonManager.cs | 12 - Assets/Scripts/Login.cs | 272 + .../{ButtonManager.cs.meta => Login.cs.meta} | 2 +- Assets/Scripts/MainMenu.cs | 112 + Assets/Scripts/MainMenu.cs.meta | 11 + 7 files changed, 8106 insertions(+), 4425 deletions(-) delete mode 100644 Assets/Scripts/ButtonManager.cs create mode 100644 Assets/Scripts/Login.cs rename Assets/Scripts/{ButtonManager.cs.meta => Login.cs.meta} (83%) create mode 100644 Assets/Scripts/MainMenu.cs create mode 100644 Assets/Scripts/MainMenu.cs.meta diff --git a/Assets/Scenes/UI.unity b/Assets/Scenes/UI.unity index 71332a2..1022022 100644 --- a/Assets/Scenes/UI.unity +++ b/Assets/Scenes/UI.unity @@ -121,7 +121,7 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &18307290 +--- !u!1 &27085773 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -129,133 +129,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 18307291} - - component: {fileID: 18307293} - - component: {fileID: 18307292} + - component: {fileID: 27085774} + - component: {fileID: 27085776} + - component: {fileID: 27085775} m_Layer: 5 - m_Name: Algo Description text + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &18307291 +--- !u!224 &27085774 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 18307290} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 27085773} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 287822664} - m_RootOrder: 1 + m_Father: {fileID: 985596070} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &18307292 +--- !u!114 &27085775 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 18307290} + m_GameObject: {fileID: 27085773} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &18307293 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 45 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 45 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Connect to Local Server +--- !u!222 &27085776 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 18307290} + m_GameObject: {fileID: 27085773} m_CullTransparentMesh: 0 ---- !u!1 &40919614 +--- !u!1 &31157939 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -263,99 +207,139 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 40919618} - - component: {fileID: 40919617} - - component: {fileID: 40919616} - - component: {fileID: 40919615} + - component: {fileID: 31157940} + - component: {fileID: 31157943} + - component: {fileID: 31157942} + - component: {fileID: 31157941} m_Layer: 5 - m_Name: UI + m_Name: 'Execute button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &40919615 -MonoBehaviour: +--- !u!224 &31157940 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 40919614} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreReversedGraphics: 1 - m_BlockingObjects: 0 - m_BlockingMask: - serializedVersion: 2 - m_Bits: 4294967295 ---- !u!114 &40919616 + m_GameObject: {fileID: 31157939} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 243254550} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &31157941 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 40919614} + m_GameObject: {fileID: 31157939} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_UiScaleMode: 1 - m_ReferencePixelsPerUnit: 100 - m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} - m_ScreenMatchMode: 1 - m_MatchWidthOrHeight: 0 - m_PhysicalUnit: 3 - m_FallbackScreenDPI: 96 - m_DefaultSpriteDPI: 96 - m_DynamicPixelsPerUnit: 1 ---- !u!223 &40919617 -Canvas: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 31157942} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &31157942 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 40919614} + m_GameObject: {fileID: 31157939} m_Enabled: 1 - serializedVersion: 3 - m_RenderMode: 0 - m_Camera: {fileID: 0} - m_PlaneDistance: 100 - m_PixelPerfect: 0 - m_ReceivesEvents: 1 - m_OverrideSorting: 0 - m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 - m_AdditionalShaderChannelsFlag: 25 - m_SortingLayerID: 0 - m_SortingOrder: 0 - m_TargetDisplay: 0 ---- !u!224 &40919618 -RectTransform: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &31157943 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 40919614} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} - m_Children: - - {fileID: 634758126} - - {fileID: 122589841} - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!1 &94032616 + m_GameObject: {fileID: 31157939} + m_CullTransparentMesh: 0 +--- !u!1 &37069626 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -363,124 +347,108 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 94032617} - - component: {fileID: 94032619} - - component: {fileID: 94032618} + - component: {fileID: 37069627} + - component: {fileID: 37069630} + - component: {fileID: 37069629} + - component: {fileID: 37069628} m_Layer: 5 - m_Name: Upper Panel + m_Name: 'Execute button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &94032617 +--- !u!224 &37069627 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 94032616} + m_GameObject: {fileID: 37069626} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 316562005} - - {fileID: 1698532735} - - {fileID: 272289824} - m_Father: {fileID: 122589841} - m_RootOrder: 1 + m_Children: [] + m_Father: {fileID: 2140321482} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -183} - m_SizeDelta: {x: 800, y: 366.6809} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &94032618 +--- !u!114 &37069628 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 94032616} + m_GameObject: {fileID: 37069626} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 37069629} + m_OnClick: m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &94032619 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 94032616} - m_CullTransparentMesh: 0 ---- !u!1 &98741741 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 98741742} - - component: {fileID: 98741744} - - component: {fileID: 98741743} - m_Layer: 5 - m_Name: ARgorithm (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &98741742 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 98741741} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 896259936} - - {fileID: 1921505401} - - {fileID: 1340584891} - - {fileID: 1427247397} - - {fileID: 1014044534} - m_Father: {fileID: 2126360451} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: 34} - m_SizeDelta: {x: 584.58154, y: 96.48424} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &98741743 + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &37069629 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 98741741} + m_GameObject: {fileID: 37069626} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -493,9 +461,9 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} m_Type: 0 - m_PreserveAspect: 0 + m_PreserveAspect: 1 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -503,15 +471,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &98741744 +--- !u!222 &37069630 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 98741741} + m_GameObject: {fileID: 37069626} m_CullTransparentMesh: 0 ---- !u!1 &102440317 +--- !u!1 &40919614 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -519,46 +487,24 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 102440318} - - component: {fileID: 102440321} - - component: {fileID: 102440320} - - component: {fileID: 102440319} + - component: {fileID: 40919618} + - component: {fileID: 40919617} + - component: {fileID: 40919616} + - component: {fileID: 40919615} m_Layer: 5 - m_Name: AR UI + m_Name: UI m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &102440318 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 102440317} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} - m_Children: - - {fileID: 1360073883} - - {fileID: 197731359} - - {fileID: 578948185} - m_Father: {fileID: 1863966798} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!114 &102440319 +--- !u!114 &40919615 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 102440317} + m_GameObject: {fileID: 40919614} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} @@ -569,13 +515,13 @@ MonoBehaviour: m_BlockingMask: serializedVersion: 2 m_Bits: 4294967295 ---- !u!114 &102440320 +--- !u!114 &40919616 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 102440317} + m_GameObject: {fileID: 40919614} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} @@ -585,19 +531,19 @@ MonoBehaviour: m_ReferencePixelsPerUnit: 100 m_ScaleFactor: 1 m_ReferenceResolution: {x: 800, y: 600} - m_ScreenMatchMode: 0 + m_ScreenMatchMode: 1 m_MatchWidthOrHeight: 0 m_PhysicalUnit: 3 m_FallbackScreenDPI: 96 m_DefaultSpriteDPI: 96 m_DynamicPixelsPerUnit: 1 ---- !u!223 &102440321 +--- !u!223 &40919617 Canvas: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 102440317} + m_GameObject: {fileID: 40919614} m_Enabled: 1 serializedVersion: 3 m_RenderMode: 0 @@ -612,83 +558,29 @@ Canvas: m_SortingLayerID: 0 m_SortingOrder: 0 m_TargetDisplay: 0 ---- !u!1 &122589840 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 122589841} - - component: {fileID: 122589843} - - component: {fileID: 122589842} - m_Layer: 5 - m_Name: ARgorithmCloud Menu - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &122589841 +--- !u!224 &40919618 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 122589840} + m_GameObject: {fileID: 40919614} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - - {fileID: 2126360451} - - {fileID: 94032617} - m_Father: {fileID: 40919618} + - {fileID: 122589841} + - {fileID: 634758126} + - {fileID: 1105685628} + m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &122589842 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 122589840} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &122589843 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 122589840} - m_CullTransparentMesh: 0 ---- !u!1 &125235113 + m_Pivot: {x: 0, y: 0} +--- !u!1 &44290832 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -696,180 +588,46 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 125235114} - - component: {fileID: 125235116} - - component: {fileID: 125235115} + - component: {fileID: 44290833} + - component: {fileID: 44290836} + - component: {fileID: 44290835} + - component: {fileID: 44290834} m_Layer: 5 - m_Name: Algo text + m_Name: 'Execute button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &125235114 +--- !u!224 &44290833 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 125235113} + m_GameObject: {fileID: 44290832} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1341235043} - m_RootOrder: 0 + m_Father: {fileID: 1790748918} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &125235115 +--- !u!114 &44290834 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 125235113} + m_GameObject: {fileID: 44290832} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &125235116 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 125235113} - m_CullTransparentMesh: 0 ---- !u!1 &133363418 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 133363419} - - component: {fileID: 133363422} - - component: {fileID: 133363421} - - component: {fileID: 133363420} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &133363419 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 133363418} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 567128621} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &133363420 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 133363418} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -899,17 +657,39 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 133363421} + m_TargetGraphic: {fileID: 44290835} m_OnClick: m_PersistentCalls: - m_Calls: [] ---- !u!114 &133363421 + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &44290835 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 133363418} + m_GameObject: {fileID: 44290832} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -932,15 +712,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &133363422 +--- !u!222 &44290836 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 133363418} + m_GameObject: {fileID: 44290832} m_CullTransparentMesh: 0 ---- !u!1 &161846771 +--- !u!1 &50626293 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -948,117 +728,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 161846772} - - component: {fileID: 161846775} - - component: {fileID: 161846774} - - component: {fileID: 161846773} + - component: {fileID: 50626294} + - component: {fileID: 50626296} + - component: {fileID: 50626295} m_Layer: 5 - m_Name: report button + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &161846772 +--- !u!224 &50626294 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 50626293} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 3 + m_Father: {fileID: 1903245570} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &161846773 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 161846774} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &161846774 +--- !u!114 &50626295 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} + m_GameObject: {fileID: 50626293} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &161846775 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter Password +--- !u!222 &50626296 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} + m_GameObject: {fileID: 50626293} m_CullTransparentMesh: 0 ---- !u!1 &165585583 +--- !u!1 &54851828 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1066,91 +806,133 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 165585584} - - component: {fileID: 165585585} + - component: {fileID: 54851829} + - component: {fileID: 54851831} + - component: {fileID: 54851830} m_Layer: 5 - m_Name: Text Area + m_Name: Algo text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &165585584 +--- !u!224 &54851829 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 165585583} + m_GameObject: {fileID: 54851828} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1577749884} - - {fileID: 1114040581} - m_Father: {fileID: 259715464} + m_Children: [] + m_Father: {fileID: 243254550} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -7.1} - m_SizeDelta: {x: 0, y: -14.224487} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &165585585 +--- !u!114 &54851830 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 165585583} + m_GameObject: {fileID: 54851828} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: - m_Padding: {x: 0, y: 0, z: 0, w: 0} - m_Softness: {x: 0, y: 0} ---- !u!1 &197731358 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 197731359} - m_Layer: 5 - m_Name: Bottom Buttons - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &197731359 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 197731358} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 751857361} - - {fileID: 819673880} - - {fileID: 545860182} - - {fileID: 2030604666} - - {fileID: 1170989747} - m_Father: {fileID: 102440318} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.13377024} - m_AnchoredPosition: {x: 0, y: 0.80029297} - m_SizeDelta: {x: 0, y: 1.6231384} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &223974226 + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &54851831 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 54851828} + m_CullTransparentMesh: 0 +--- !u!1 &89875818 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1158,65 +940,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 223974229} - - component: {fileID: 223974228} - - component: {fileID: 223974227} - m_Layer: 0 - m_Name: EventSystem + - component: {fileID: 89875819} + - component: {fileID: 89875821} + - component: {fileID: 89875820} + m_Layer: 5 + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &223974227 -MonoBehaviour: +--- !u!224 &89875819 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 223974226} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalAxis: Horizontal - m_VerticalAxis: Vertical - m_SubmitButton: Submit - m_CancelButton: Cancel - m_InputActionsPerSecond: 10 - m_RepeatDelay: 0.5 - m_ForceModuleActive: 0 ---- !u!114 &223974228 + m_GameObject: {fileID: 89875818} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 492046892} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &89875820 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 223974226} + m_GameObject: {fileID: 89875818} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 10 ---- !u!4 &223974229 -Transform: + m_Material: {fileID: 0} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &89875821 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 223974226} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &228616810 + m_GameObject: {fileID: 89875818} + m_CullTransparentMesh: 0 +--- !u!1 &94032616 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1224,57 +1018,60 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 228616811} - - component: {fileID: 228616813} - - component: {fileID: 228616812} + - component: {fileID: 94032617} + - component: {fileID: 94032619} + - component: {fileID: 94032618} m_Layer: 5 - m_Name: Image + m_Name: Upper Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &228616811 +--- !u!224 &94032617 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 228616810} + m_GameObject: {fileID: 94032616} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1170989747} - m_RootOrder: 0 + m_Children: + - {fileID: 316562005} + - {fileID: 1698532735} + - {fileID: 272289824} + m_Father: {fileID: 122589841} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 0.7781352} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0.0000038146973, y: 0} - m_SizeDelta: {x: -63.935684, y: -107.59886} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0.34069824} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &228616812 +--- !u!114 &94032618 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 228616810} + m_GameObject: {fileID: 94032616} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ecce4c558ec5c244aa2ac5b5b66e76f1, type: 3} - m_Type: 0 - m_PreserveAspect: 1 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -1282,15 +1079,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &228616813 +--- !u!222 &94032619 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 228616810} + m_GameObject: {fileID: 94032616} m_CullTransparentMesh: 0 ---- !u!1 &259715463 +--- !u!1 &99337743 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1298,154 +1095,260 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 259715464} - - component: {fileID: 259715467} - - component: {fileID: 259715466} - - component: {fileID: 259715465} + - component: {fileID: 99337744} + - component: {fileID: 99337747} + - component: {fileID: 99337746} + - component: {fileID: 99337745} m_Layer: 5 - m_Name: Enter IP input Box + m_Name: GitHub Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &259715464 +--- !u!224 &99337744 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259715463} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 99337743} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 165585584} - m_Father: {fileID: 1370639141} - m_RootOrder: 3 + - {fileID: 1801051560} + - {fileID: 1025200736} + m_Father: {fileID: 1105685628} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -91} - m_SizeDelta: {x: 686.0287, y: 66.26796} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &259715465 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 161.97241} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &99337745 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259715463} + m_GameObject: {fileID: 99337743} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 259715466} - m_TextViewport: {fileID: 165585584} - m_TextComponent: {fileID: 1114040582} - m_Placeholder: {fileID: 1577749886} - m_VerticalScrollbar: {fileID: 0} - m_VerticalScrollbarEventHandler: {fileID: 0} - m_LayoutGroup: {fileID: 0} - m_ScrollSensitivity: 1 - m_ContentType: 0 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 0 - m_HideSoftKeyboard: 0 - m_CharacterValidation: 0 - m_RegexValue: - m_GlobalPointSize: 14 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnSubmit: - m_PersistentCalls: - m_Calls: [] - m_OnSelect: + m_Material: {fileID: 0} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_OnDeselect: - m_PersistentCalls: - m_Calls: [] - m_OnTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnEndTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_OnTouchScreenKeyboardStatusChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 0 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_RichText: 1 - m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_OnFocusSelectAll: 1 - m_ResetOnDeActivation: 1 - m_RestoreOriginalTextOnEscape: 1 - m_isRichTextEditingAllowed: 0 - m_LineLimit: 0 - m_InputValidator: {fileID: 0} ---- !u!114 &259715466 + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &99337746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99337743} + m_CullTransparentMesh: 0 +--- !u!114 &99337747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99337743} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &102440317 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 102440318} + - component: {fileID: 102440321} + - component: {fileID: 102440320} + - component: {fileID: 102440319} + m_Layer: 5 + m_Name: AR UI + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &102440318 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102440317} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1360073883} + - {fileID: 197731359} + - {fileID: 578948185} + m_Father: {fileID: 1863966798} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &102440319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102440317} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &102440320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102440317} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &102440321 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 102440317} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &122589840 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 122589841} + - component: {fileID: 122589843} + - component: {fileID: 122589842} + m_Layer: 5 + m_Name: ARgorithmCloud Menu + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &122589841 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 122589840} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2126360451} + - {fileID: 94032617} + m_Father: {fileID: 40919618} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &122589842 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259715463} + m_GameObject: {fileID: 122589840} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1455,15 +1358,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &259715467 +--- !u!222 &122589843 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 259715463} + m_GameObject: {fileID: 122589840} m_CullTransparentMesh: 0 ---- !u!1 &272289823 +--- !u!1 &154305065 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1471,42 +1374,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 272289824} - - component: {fileID: 272289826} - - component: {fileID: 272289825} + - component: {fileID: 154305066} + - component: {fileID: 154305068} + - component: {fileID: 154305067} m_Layer: 5 - m_Name: Select a AR...text + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &272289824 +--- !u!224 &154305066 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 272289823} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 154305065} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 94032617} - m_RootOrder: 2 + m_Father: {fileID: 1925248409} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 2.8, y: -239.64058} - m_SizeDelta: {x: 519.8163, y: 160.67627} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0.5000305} + m_SizeDelta: {x: -170.69366, y: -1.000061} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &272289825 +--- !u!114 &154305067 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 272289823} + m_GameObject: {fileID: 154305065} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -1519,7 +1422,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Select a ARgorithm from the available ones + m_text: Login m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -1529,8 +1432,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4281478698 + m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -1547,15 +1450,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 51.55 - m_fontSizeBase: 36 + m_fontSize: 40 + m_fontSizeBase: 61 m_fontWeight: 400 m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 60 + m_fontSizeMax: 40 m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -1583,21 +1486,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} + m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &272289826 +--- !u!222 &154305068 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 272289823} + m_GameObject: {fileID: 154305065} m_CullTransparentMesh: 0 ---- !u!1 &287822663 +--- !u!1 &161846771 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1605,62 +1508,101 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 287822664} - - component: {fileID: 287822666} - - component: {fileID: 287822665} + - component: {fileID: 161846772} + - component: {fileID: 161846775} + - component: {fileID: 161846774} + - component: {fileID: 161846773} m_Layer: 5 - m_Name: ARgorithm (2) + m_Name: report button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &287822664 +--- !u!224 &161846772 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 287822663} + m_GameObject: {fileID: 161846771} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1195657686} - - {fileID: 18307291} - - {fileID: 1233337242} - - {fileID: 2000784357} - - {fileID: 1114870224} - m_Father: {fileID: 2126360451} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 430925419} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: -204} - m_SizeDelta: {x: 584.58154, y: 96.48424} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &287822665 +--- !u!114 &161846773 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 287822663} + m_GameObject: {fileID: 161846771} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 161846774} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &161846774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161846771} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} m_Type: 0 - m_PreserveAspect: 0 + m_PreserveAspect: 1 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -1668,15 +1610,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &287822666 +--- !u!222 &161846775 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 287822663} + m_GameObject: {fileID: 161846771} m_CullTransparentMesh: 0 ---- !u!1 &302988618 +--- !u!1 &179358027 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1684,75 +1626,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 302988619} - - component: {fileID: 302988621} - - component: {fileID: 302988620} + - component: {fileID: 179358028} + - component: {fileID: 179358030} + - component: {fileID: 179358029} m_Layer: 5 - m_Name: Upper half Panel + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &302988619 +--- !u!224 &179358028 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302988618} + m_GameObject: {fileID: 179358027} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1710119734} - - {fileID: 1207409701} - m_Father: {fileID: 634758126} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 1892302670} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.6088244} + m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 4.7764893} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &302988620 + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &179358029 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302988618} + m_GameObject: {fileID: 179358027} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &302988621 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 6 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &179358030 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 302988618} + m_GameObject: {fileID: 179358027} m_CullTransparentMesh: 0 ---- !u!1 &316562004 +--- !u!1 &197731358 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1760,117 +1704,39 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 316562005} - - component: {fileID: 316562008} - - component: {fileID: 316562007} - - component: {fileID: 316562006} + - component: {fileID: 197731359} m_Layer: 5 - m_Name: Refresh Button + m_Name: Bottom Buttons m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &316562005 +--- !u!224 &197731359 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 316562004} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 197731358} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 94032617} - m_RootOrder: 0 + m_Children: + - {fileID: 751857361} + - {fileID: 819673880} + - {fileID: 545860182} + - {fileID: 2030604666} + - {fileID: 1170989747} + m_Father: {fileID: 102440318} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -70, y: -90.95} - m_SizeDelta: {x: 140, y: 70} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.13377024} + m_AnchoredPosition: {x: 0, y: 0.80029297} + m_SizeDelta: {x: 0, y: 1.6231384} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &316562006 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 316562004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 316562007} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &316562007 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 316562004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5e00a37748478ed42af3d5f127e843b8, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &316562008 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 316562004} - m_CullTransparentMesh: 0 ---- !u!1 &422660997 +--- !u!1 &220107821 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1878,46 +1744,48 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 422660998} - - component: {fileID: 422661001} - - component: {fileID: 422661000} - - component: {fileID: 422660999} + - component: {fileID: 220107822} + - component: {fileID: 220107825} + - component: {fileID: 220107824} + - component: {fileID: 220107823} m_Layer: 5 - m_Name: Function button + m_Name: Existing email input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &422660998 +--- !u!224 &220107822 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422660997} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 220107821} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 567128621} - m_RootOrder: 2 + m_Children: + - {fileID: 1889909107} + - {fileID: 1338962669} + m_Father: {fileID: 1864138857} + m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &422660999 +--- !u!114 &220107823 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422660997} + m_GameObject: {fileID: 220107821} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -1947,32 +1815,52 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 422661000} - m_OnClick: + m_TargetGraphic: {fileID: 220107824} + m_TextComponent: {fileID: 1338962670} + m_Placeholder: {fileID: 1889909108} + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: m_PersistentCalls: m_Calls: [] ---- !u!114 &422661000 + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &220107824 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422660997} + m_GameObject: {fileID: 220107821} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} m_Type: 0 - m_PreserveAspect: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -1980,15 +1868,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &422661001 +--- !u!222 &220107825 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422660997} + m_GameObject: {fileID: 220107821} m_CullTransparentMesh: 0 ---- !u!1 &429911368 +--- !u!1 &223974226 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1996,42 +1884,108 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 429911369} - - component: {fileID: 429911371} - - component: {fileID: 429911370} - m_Layer: 5 - m_Name: Image + - component: {fileID: 223974229} + - component: {fileID: 223974228} + - component: {fileID: 223974227} + m_Layer: 0 + m_Name: EventSystem m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &429911369 -RectTransform: +--- !u!114 &223974227 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 429911368} + m_GameObject: {fileID: 223974226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &223974228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 223974226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &223974229 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 223974226} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 545860182} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &228616810 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 228616811} + - component: {fileID: 228616813} + - component: {fileID: 228616812} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &228616811 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 228616810} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1170989747} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -7, y: 0} + m_AnchoredPosition: {x: 0.0000038146973, y: 0} m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &429911370 +--- !u!114 &228616812 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 429911368} + m_GameObject: {fileID: 228616810} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2044,7 +1998,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: acb24743b15ae4542bb30276d156bf51, type: 3} + m_Sprite: {fileID: 21300000, guid: ecce4c558ec5c244aa2ac5b5b66e76f1, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -2054,15 +2008,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &429911371 +--- !u!222 &228616813 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 429911368} + m_GameObject: {fileID: 228616810} m_CullTransparentMesh: 0 ---- !u!1 &430925418 +--- !u!1 &243254549 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2070,47 +2024,47 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 430925419} - - component: {fileID: 430925421} - - component: {fileID: 430925420} + - component: {fileID: 243254550} + - component: {fileID: 243254552} + - component: {fileID: 243254551} m_Layer: 5 - m_Name: ARgorithm + m_Name: ARgorithm (6) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &430925419 +--- !u!224 &243254550 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} + m_GameObject: {fileID: 243254549} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 901031710} - - {fileID: 1624275342} - - {fileID: 1036681158} - - {fileID: 161846772} - - {fileID: 734707777} + - {fileID: 54851829} + - {fileID: 2066809534} + - {fileID: 1643328703} + - {fileID: 1235994082} + - {fileID: 31157940} m_Father: {fileID: 2126360451} - m_RootOrder: 0 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: 272} - m_SizeDelta: {x: 584.58154, y: 96.48424} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -1604.4574} + m_SizeDelta: {x: 702.7241, y: 192.99345} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &430925420 +--- !u!114 &243254551 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} + m_GameObject: {fileID: 243254549} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2133,15 +2087,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &430925421 +--- !u!222 &243254552 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} + m_GameObject: {fileID: 243254549} m_CullTransparentMesh: 0 ---- !u!1 &437472534 +--- !u!1 &272289823 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2149,89 +2103,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 437472535} - - component: {fileID: 437472538} - - component: {fileID: 437472537} - - component: {fileID: 437472536} + - component: {fileID: 272289824} + - component: {fileID: 272289826} + - component: {fileID: 272289825} m_Layer: 5 - m_Name: 'Execute button ' + m_Name: Select a AR...text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &437472535 +--- !u!224 &272289824 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 437472534} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 272289823} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 799703679} - m_RootOrder: 4 + m_Father: {fileID: 94032617} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 2.8, y: -239.75} + m_SizeDelta: {x: 519.8163, y: 160.67627} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &437472536 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 437472534} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 437472537} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &437472537 +--- !u!114 &272289825 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 437472534} + m_GameObject: {fileID: 272289823} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -2241,25 +2151,85 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &437472538 + m_text: Select a ARgorithm from the available ones + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 51.55 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 60 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &272289826 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 437472534} + m_GameObject: {fileID: 272289823} m_CullTransparentMesh: 0 ---- !u!1 &441846182 +--- !u!1 &301313035 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2267,117 +2237,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 441846183} - - component: {fileID: 441846186} - - component: {fileID: 441846185} - - component: {fileID: 441846184} + - component: {fileID: 301313036} + - component: {fileID: 301313038} + - component: {fileID: 301313037} m_Layer: 5 - m_Name: 'Execute button ' + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &441846183 +--- !u!224 &301313036 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 441846182} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 301313035} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1341235043} - m_RootOrder: 4 + m_Father: {fileID: 498761541} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &441846184 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 441846182} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 441846185} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &441846185 +--- !u!114 &301313037 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 441846182} + m_GameObject: {fileID: 301313035} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &441846186 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &301313038 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 441846182} + m_GameObject: {fileID: 301313035} m_CullTransparentMesh: 0 ---- !u!1 &463930438 +--- !u!1 &302988618 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2385,123 +2315,59 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 463930439} - - component: {fileID: 463930442} - - component: {fileID: 463930441} - - component: {fileID: 463930440} + - component: {fileID: 302988619} + - component: {fileID: 302988621} + - component: {fileID: 302988620} + - component: {fileID: 302988622} m_Layer: 5 - m_Name: Connect to Cloud Button + m_Name: Upper half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &463930439 +--- !u!224 &302988619 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 463930438} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 302988618} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 854905463} - m_Father: {fileID: 1370639141} - m_RootOrder: 1 + - {fileID: 1946396353} + - {fileID: 965081359} + m_Father: {fileID: 634758126} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: -2.4938, y: -260} - m_SizeDelta: {x: 691.0126, y: 78.94574} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &463930440 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 463930438} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 463930441} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 122589840} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 - - m_Target: {fileID: 634758125} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &463930441 + m_AnchorMin: {x: 0, y: 0.6088244} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 4.7764893} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &302988620 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 463930438} + m_GameObject: {fileID: 302988618} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} - m_Type: 0 + m_Sprite: {fileID: 0} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -2510,15 +2376,40 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &463930442 +--- !u!222 &302988621 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 463930438} + m_GameObject: {fileID: 302988618} m_CullTransparentMesh: 0 ---- !u!1 &507877643 +--- !u!114 &302988622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 302988618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &316562004 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2526,43 +2417,43 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 507877644} - - component: {fileID: 507877647} - - component: {fileID: 507877646} - - component: {fileID: 507877645} + - component: {fileID: 316562005} + - component: {fileID: 316562008} + - component: {fileID: 316562007} + - component: {fileID: 316562006} m_Layer: 5 - m_Name: report button + m_Name: Refresh Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &507877644 +--- !u!224 &316562005 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 507877643} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 316562004} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1341235043} - m_RootOrder: 3 + m_Father: {fileID: 94032617} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -70, y: -91} + m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &507877645 +--- !u!114 &316562006 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 507877643} + m_GameObject: {fileID: 316562004} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -2595,17 +2486,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 507877646} + m_TargetGraphic: {fileID: 316562007} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &507877646 +--- !u!114 &316562007 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 507877643} + m_GameObject: {fileID: 316562004} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2618,7 +2509,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Sprite: {fileID: 21300000, guid: 5e00a37748478ed42af3d5f127e843b8, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -2628,15 +2519,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &507877647 +--- !u!222 &316562008 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 507877643} + m_GameObject: {fileID: 316562004} m_CullTransparentMesh: 0 ---- !u!1 &545860181 +--- !u!1 &331303109 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2644,118 +2535,133 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 545860182} - - component: {fileID: 545860185} - - component: {fileID: 545860184} - - component: {fileID: 545860183} + - component: {fileID: 331303110} + - component: {fileID: 331303112} + - component: {fileID: 331303111} m_Layer: 5 - m_Name: Prev Button + m_Name: Algo Description text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &545860182 +--- !u!224 &331303110 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 545860181} + m_GameObject: {fileID: 331303109} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 429911369} - m_Father: {fileID: 197731359} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 1125795917} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -160, y: 0} - m_SizeDelta: {x: 115.64688, y: 172.00165} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &545860183 +--- !u!114 &331303111 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 545860181} + m_GameObject: {fileID: 331303109} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 545860184} - m_OnClick: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] ---- !u!114 &545860184 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 545860181} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &545860185 + m_text: Lorem Ipsum + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &331303112 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 545860181} + m_GameObject: {fileID: 331303109} m_CullTransparentMesh: 0 ---- !u!1 &552491452 +--- !u!1 &349355315 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2763,101 +2669,60 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 552491453} - - component: {fileID: 552491456} - - component: {fileID: 552491455} - - component: {fileID: 552491454} + - component: {fileID: 349355316} + - component: {fileID: 349355319} + - component: {fileID: 349355318} + - component: {fileID: 349355317} m_Layer: 5 - m_Name: report button + m_Name: GitHub Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &552491453 +--- !u!224 &349355316 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 552491452} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 349355315} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 799703679} - m_RootOrder: 3 + m_Children: + - {fileID: 406189720} + - {fileID: 1089734189} + m_Father: {fileID: 634758126} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &552491454 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 552491452} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 552491455} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &552491455 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 161.97241} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &349355317 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 552491452} + m_GameObject: {fileID: 349355315} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Sprite: {fileID: 0} m_Type: 0 - m_PreserveAspect: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -2865,15 +2730,40 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &552491456 +--- !u!222 &349355318 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 552491452} + m_GameObject: {fileID: 349355315} m_CullTransparentMesh: 0 ---- !u!1 &567128620 +--- !u!114 &349355319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 349355315} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &373145510 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2881,78 +2771,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 567128621} - - component: {fileID: 567128623} - - component: {fileID: 567128622} + - component: {fileID: 373145511} + - component: {fileID: 373145513} + - component: {fileID: 373145512} m_Layer: 5 - m_Name: ARgorithm (3) + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &567128621 +--- !u!224 &373145511 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567128620} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 373145510} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1194786816} - - {fileID: 1951388253} - - {fileID: 422660998} - - {fileID: 1928529162} - - {fileID: 133363419} - m_Father: {fileID: 2126360451} - m_RootOrder: 3 + m_Children: [] + m_Father: {fileID: 1903245570} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: -441} - m_SizeDelta: {x: 584.58154, y: 96.48424} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &567128622 +--- !u!114 &373145512 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567128620} + m_GameObject: {fileID: 373145510} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &567128623 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &373145513 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567128620} + m_GameObject: {fileID: 373145510} m_CullTransparentMesh: 0 ---- !u!1 &567485651 +--- !u!1 &406189719 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2960,86 +2849,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 567485652} - - component: {fileID: 567485655} - - component: {fileID: 567485654} - - component: {fileID: 567485653} + - component: {fileID: 406189720} + - component: {fileID: 406189722} + - component: {fileID: 406189721} m_Layer: 5 - m_Name: Function button + m_Name: Github Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &567485652 +--- !u!224 &406189720 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567485651} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 406189719} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1210922851} - m_RootOrder: 2 + m_Father: {fileID: 349355316} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115.58856, y: -80.986206} + m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &567485653 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567485651} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 567485654} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &567485654 +--- !u!114 &406189721 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567485651} + m_GameObject: {fileID: 406189719} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -3052,7 +2897,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: 86050509ddb6d02488e4efd702650fbc, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -3062,15 +2907,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &567485655 +--- !u!222 &406189722 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 567485651} + m_GameObject: {fileID: 406189719} m_CullTransparentMesh: 0 ---- !u!1 &578948184 +--- !u!1 &415820188 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3078,42 +2923,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 578948185} - - component: {fileID: 578948187} - - component: {fileID: 578948186} + - component: {fileID: 415820189} + - component: {fileID: 415820191} + - component: {fileID: 415820190} m_Layer: 5 - m_Name: Comments Box - m_TagString: CommentBox + m_Name: Algo Description text + m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &578948185 +--- !u!224 &415820189 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 578948184} + m_GameObject: {fileID: 415820188} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 102440318} - m_RootOrder: 2 + m_Father: {fileID: 1465842363} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.13377024} - m_AnchorMax: {x: 1, y: 0.22982432} - m_AnchoredPosition: {x: 0, y: 1} - m_SizeDelta: {x: 0, y: -0.6480713} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &578948186 +--- !u!114 &415820190 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 578948184} + m_GameObject: {fileID: 415820188} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -3126,7 +2971,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Hello World + m_text: Lorem Ipsum m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -3136,8 +2981,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -3154,15 +2999,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 45 - m_fontSizeBase: 45 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -3196,15 +3041,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &578948187 +--- !u!222 &415820191 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 578948184} + m_GameObject: {fileID: 415820188} m_CullTransparentMesh: 0 ---- !u!1 &612687961 +--- !u!1 &429911368 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3212,45 +3057,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 612687962} - - component: {fileID: 612687964} - - component: {fileID: 612687963} + - component: {fileID: 429911369} + - component: {fileID: 429911371} + - component: {fileID: 429911370} m_Layer: 5 - m_Name: Algo Description text + m_Name: Image m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &612687962 +--- !u!224 &429911369 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 612687961} + m_GameObject: {fileID: 429911368} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1341235043} - m_RootOrder: 1 + m_Father: {fileID: 545860182} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7, y: 0} + m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &612687963 +--- !u!114 &429911370 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 612687961} + m_GameObject: {fileID: 429911368} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -3260,85 +3105,25 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &612687964 + m_Sprite: {fileID: 21300000, guid: acb24743b15ae4542bb30276d156bf51, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &429911371 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 612687961} + m_GameObject: {fileID: 429911368} m_CullTransparentMesh: 0 ---- !u!1 &634758125 +--- !u!1 &430925418 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3346,36 +3131,78 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 634758126} + - component: {fileID: 430925419} + - component: {fileID: 430925421} + - component: {fileID: 430925420} m_Layer: 5 - m_Name: Main Menu + m_Name: ARgorithm m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &634758126 +--- !u!224 &430925419 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 634758125} + m_GameObject: {fileID: 430925418} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 302988619} - - {fileID: 1370639141} - m_Father: {fileID: 40919618} + - {fileID: 901031710} + - {fileID: 1624275342} + - {fileID: 1036681158} + - {fileID: 161846772} + - {fileID: 734707777} + m_Father: {fileID: 2126360451} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -146.49673} + m_SizeDelta: {x: 702.7241, y: 192.99345} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &643908817 +--- !u!114 &430925420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430925418} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &430925421 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430925418} + m_CullTransparentMesh: 0 +--- !u!1 &440807163 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3383,73 +3210,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 643908818} - - component: {fileID: 643908820} - - component: {fileID: 643908819} + - component: {fileID: 440807164} + - component: {fileID: 440807166} + - component: {fileID: 440807165} m_Layer: 5 - m_Name: Image + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &643908818 +--- !u!224 &440807164 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 643908817} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 440807163} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 819673880} + m_Father: {fileID: 1892302670} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -7, y: 0} - m_SizeDelta: {x: -63.935684, y: -107.59886} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &643908819 +--- !u!114 &440807165 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 643908817} + m_GameObject: {fileID: 440807163} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: acb24743b15ae4542bb30276d156bf51, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &643908820 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Password +--- !u!222 &440807166 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 643908817} + m_GameObject: {fileID: 440807163} m_CullTransparentMesh: 0 ---- !u!1 &734707776 +--- !u!1 &443532002 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3457,139 +3288,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 734707777} - - component: {fileID: 734707780} - - component: {fileID: 734707779} - - component: {fileID: 734707778} + - component: {fileID: 443532003} + - component: {fileID: 443532005} + - component: {fileID: 443532004} m_Layer: 5 - m_Name: 'Execute button ' + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &734707777 +--- !u!224 &443532003 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 443532002} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 4 + m_Father: {fileID: 869493776} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &734707778 +--- !u!114 &443532004 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 443532002} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 734707779} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &734707779 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &734707780 + m_FontData: + m_Font: {fileID: 12800000, guid: 7c9240ee84a61544dbf2b1b66bf937ba, type: 3} + m_FontSize: 40 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &443532005 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 443532002} m_CullTransparentMesh: 0 ---- !u!1 &741666777 +--- !u!1 &484736723 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3597,42 +3366,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 741666778} - - component: {fileID: 741666780} - - component: {fileID: 741666779} + - component: {fileID: 484736724} + - component: {fileID: 484736726} + - component: {fileID: 484736725} m_Layer: 5 - m_Name: Github Text + m_Name: Algo Description text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &741666778 +--- !u!224 &484736724 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 741666777} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 484736723} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 6 + m_Father: {fileID: 2140321482} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0} - m_AnchorMax: {x: 0.5, y: 0} - m_AnchoredPosition: {x: 51, y: 83} - m_SizeDelta: {x: 432.58807, y: 98.931885} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &741666779 +--- !u!114 &484736725 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 741666777} + m_GameObject: {fileID: 484736723} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -3645,7 +3414,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Check out more on Github + m_text: Lorem Ipsum m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -3673,15 +3442,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 41.4 - m_fontSizeBase: 36 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 - m_enableAutoSizing: 1 + m_enableAutoSizing: 0 m_fontSizeMin: 18 - m_fontSizeMax: 62 + m_fontSizeMax: 72 m_fontStyle: 0 m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 + m_VerticalAlignment: 256 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -3709,21 +3478,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: -0.31948853, y: 0, z: -37.594925, w: 0} + m_margin: {x: 0, y: 0, z: 0, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &741666780 +--- !u!222 &484736726 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 741666777} + m_GameObject: {fileID: 484736723} m_CullTransparentMesh: 0 ---- !u!1 &751857360 +--- !u!1 &492046891 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3731,47 +3500,48 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 751857361} - - component: {fileID: 751857364} - - component: {fileID: 751857363} - - component: {fileID: 751857362} + - component: {fileID: 492046892} + - component: {fileID: 492046895} + - component: {fileID: 492046894} + - component: {fileID: 492046893} m_Layer: 5 - m_Name: Play Button + m_Name: Enter Email input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &751857361 +--- !u!224 &492046892 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 492046891} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2070172344} - m_Father: {fileID: 197731359} - m_RootOrder: 0 + - {fileID: 607283314} + - {fileID: 89875819} + m_Father: {fileID: 1864138857} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 162.52039, y: 222} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &751857362 +--- !u!114 &492046893 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} + m_GameObject: {fileID: 492046891} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -3801,32 +3571,52 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 751857363} - m_OnClick: + m_TargetGraphic: {fileID: 492046894} + m_TextComponent: {fileID: 89875820} + m_Placeholder: {fileID: 607283315} + m_ContentType: 6 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 7 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 5 + m_CharacterLimit: 0 + m_OnEndEdit: m_PersistentCalls: m_Calls: [] ---- !u!114 &751857363 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &492046894 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} + m_GameObject: {fileID: 492046891} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} m_Type: 0 - m_PreserveAspect: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -3834,15 +3624,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &751857364 +--- !u!222 &492046895 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} + m_GameObject: {fileID: 492046891} m_CullTransparentMesh: 0 ---- !u!1 &764145471 +--- !u!1 &498761540 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3850,328 +3640,132 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 764145472} - - component: {fileID: 764145474} - - component: {fileID: 764145473} + - component: {fileID: 498761541} + - component: {fileID: 498761544} + - component: {fileID: 498761543} + - component: {fileID: 498761542} m_Layer: 5 - m_Name: Algo Description text + m_Name: Re-enter Password input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &764145472 +--- !u!224 &498761541 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 764145471} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 498761540} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 799703679} - m_RootOrder: 1 + m_Children: + - {fileID: 1455531920} + - {fileID: 301313036} + m_Father: {fileID: 1864138857} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &764145473 +--- !u!114 &498761542 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 764145471} + m_GameObject: {fileID: 498761540} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 498761543} + m_TextComponent: {fileID: 301313037} + m_Placeholder: {fileID: 1455531921} + m_ContentType: 7 + m_InputType: 2 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1105685627} + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &498761543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 498761540} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &764145474 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 764145471} - m_CullTransparentMesh: 0 ---- !u!1 &775276112 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 775276113} - - component: {fileID: 775276115} - - component: {fileID: 775276114} - m_Layer: 5 - m_Name: Algo Description text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &775276113 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 775276112} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1210922851} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &775276114 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 775276112} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &775276115 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 775276112} - m_CullTransparentMesh: 0 ---- !u!1 &799703678 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 799703679} - - component: {fileID: 799703681} - - component: {fileID: 799703680} - m_Layer: 5 - m_Name: ARgorithm (4) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &799703679 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 799703678} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1906969682} - - {fileID: 764145472} - - {fileID: 833326043} - - {fileID: 552491453} - - {fileID: 437472535} - m_Father: {fileID: 2126360451} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: -688} - m_SizeDelta: {x: 584.58154, y: 96.48424} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &799703680 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 799703678} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -4181,15 +3775,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &799703681 +--- !u!222 &498761544 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 799703678} + m_GameObject: {fileID: 498761540} m_CullTransparentMesh: 0 ---- !u!1 &819673879 +--- !u!1 &545860181 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4197,44 +3791,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 819673880} - - component: {fileID: 819673883} - - component: {fileID: 819673882} - - component: {fileID: 819673881} + - component: {fileID: 545860182} + - component: {fileID: 545860185} + - component: {fileID: 545860184} + - component: {fileID: 545860183} m_Layer: 5 - m_Name: 'Next Button ' + m_Name: Prev Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &819673880 +--- !u!224 &545860182 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 819673879} - m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} + m_GameObject: {fileID: 545860181} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 643908818} + - {fileID: 429911369} m_Father: {fileID: 197731359} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 160, y: 0} + m_AnchoredPosition: {x: -160, y: 0} m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &819673881 +--- !u!114 &545860183 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 819673879} + m_GameObject: {fileID: 545860181} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -4267,17 +3861,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 819673882} + m_TargetGraphic: {fileID: 545860184} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &819673882 +--- !u!114 &545860184 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 819673879} + m_GameObject: {fileID: 545860181} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -4300,15 +3894,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &819673883 +--- !u!222 &545860185 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 819673879} + m_GameObject: {fileID: 545860181} m_CullTransparentMesh: 0 ---- !u!1 &833326042 +--- !u!1 &559574883 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4316,43 +3910,57 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 833326043} - - component: {fileID: 833326046} - - component: {fileID: 833326045} - - component: {fileID: 833326044} + - component: {fileID: 559574884} + - component: {fileID: 559574888} + - component: {fileID: 559574887} + - component: {fileID: 559574886} + - component: {fileID: 559574885} m_Layer: 5 - m_Name: Function button + m_Name: Create Account Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &833326043 +--- !u!224 &559574884 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833326042} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 559574883} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 799703679} - m_RootOrder: 2 + m_Children: + - {fileID: 1869106836} + m_Father: {fileID: 1864138857} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &833326044 +--- !u!114 &559574885 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559574883} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3e1e30c4fa1c1174387d87eb7b1f872e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &559574886 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833326042} + m_GameObject: {fileID: 559574883} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -4385,32 +3993,43 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 833326045} + m_TargetGraphic: {fileID: 559574887} m_OnClick: m_PersistentCalls: - m_Calls: [] ---- !u!114 &833326045 + m_Calls: + - m_Target: {fileID: 559574885} + m_MethodName: OnGUI + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &559574887 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833326042} + m_GameObject: {fileID: 559574883} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} m_Type: 0 - m_PreserveAspect: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -4418,15 +4037,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &833326046 +--- !u!222 &559574888 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833326042} + m_GameObject: {fileID: 559574883} m_CullTransparentMesh: 0 ---- !u!1 &854905462 +--- !u!1 &578948184 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4434,42 +4053,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 854905463} - - component: {fileID: 854905465} - - component: {fileID: 854905464} + - component: {fileID: 578948185} + - component: {fileID: 578948187} + - component: {fileID: 578948186} m_Layer: 5 - m_Name: Text (TMP) - m_TagString: Untagged + m_Name: Comments Box + m_TagString: CommentBox m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &854905463 +--- !u!224 &578948185 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 854905462} + m_GameObject: {fileID: 578948184} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 463930439} - m_RootOrder: 0 + m_Father: {fileID: 102440318} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.5000305} - m_SizeDelta: {x: -170.69366, y: -1.000061} + m_AnchorMin: {x: 0, y: 0.13377024} + m_AnchorMax: {x: 1, y: 0.22982432} + m_AnchoredPosition: {x: 0, y: 1} + m_SizeDelta: {x: 0, y: -0.6480713} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &854905464 +--- !u!114 &578948186 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 854905462} + m_GameObject: {fileID: 578948184} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -4482,7 +4101,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Connect to ArgorithmCloud + m_text: Hello World m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -4492,8 +4111,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4281478698 - m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -4510,12 +4129,12 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 43.55 - m_fontSizeBase: 61 + m_fontSize: 45 + m_fontSizeBase: 45 m_fontWeight: 400 - m_enableAutoSizing: 1 + m_enableAutoSizing: 0 m_fontSizeMin: 18 - m_fontSizeMax: 62 + m_fontSizeMax: 72 m_fontStyle: 0 m_HorizontalAlignment: 2 m_VerticalAlignment: 512 @@ -4546,21 +4165,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} + m_margin: {x: 0, y: 0, z: 0, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &854905465 +--- !u!222 &578948187 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 854905462} + m_GameObject: {fileID: 578948184} m_CullTransparentMesh: 0 ---- !u!1 &896259935 +--- !u!1 &607283313 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4568,133 +4187,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 896259936} - - component: {fileID: 896259938} - - component: {fileID: 896259937} + - component: {fileID: 607283314} + - component: {fileID: 607283316} + - component: {fileID: 607283315} m_Layer: 5 - m_Name: Algo text + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &896259936 +--- !u!224 &607283314 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 896259935} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 607283313} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 98741742} + m_Father: {fileID: 492046892} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &896259937 +--- !u!114 &607283315 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 896259935} + m_GameObject: {fileID: 607283313} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &896259938 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 'Enter Email ' +--- !u!222 &607283316 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 896259935} + m_GameObject: {fileID: 607283313} m_CullTransparentMesh: 0 ---- !u!1 &901031709 +--- !u!1 &634758125 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4702,45 +4265,99 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 901031710} - - component: {fileID: 901031712} - - component: {fileID: 901031711} + - component: {fileID: 634758126} + - component: {fileID: 634758127} m_Layer: 5 - m_Name: Algo text + m_Name: Main Menu + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &634758126 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634758125} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 302988619} + - {fileID: 1370639141} + - {fileID: 349355316} + m_Father: {fileID: 40919618} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &634758127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634758125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 19c570d75f3d96f43866883546d497d5, type: 3} + m_Name: + m_EditorClassIdentifier: + ConnectToCloudButton: {fileID: 1047745730} + ConnectToLocalServerButton: {fileID: 985596071} + ServerEndpointInput: {fileID: 869493777} +--- !u!1 &643908817 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 643908818} + - component: {fileID: 643908820} + - component: {fileID: 643908819} + m_Layer: 5 + m_Name: Image m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &901031710 +--- !u!224 &643908818 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} + m_GameObject: {fileID: 643908817} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} + m_Father: {fileID: 819673880} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7, y: 0} + m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &901031711 +--- !u!114 &643908819 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} + m_GameObject: {fileID: 643908817} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -4750,27 +4367,235 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} + m_Sprite: {fileID: 21300000, guid: acb24743b15ae4542bb30276d156bf51, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &643908820 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 643908817} + m_CullTransparentMesh: 0 +--- !u!1 &659324768 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 659324769} + - component: {fileID: 659324771} + - component: {fileID: 659324770} + m_Layer: 5 + m_Name: or login text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &659324769 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659324768} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1864138857} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 52.261063} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &659324770 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659324768} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: .. or login into existing account + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 35 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 35 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &659324771 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659324768} + m_CullTransparentMesh: 0 +--- !u!1 &693243760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 693243761} + - component: {fileID: 693243763} + - component: {fileID: 693243762} + m_Layer: 5 + m_Name: Algo text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &693243761 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 693243760} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2140321482} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &693243762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 693243760} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} m_tintAllSprites: 0 m_StyleSheet: {fileID: 0} m_TextStyleHashCode: -1183493901 @@ -4820,15 +4645,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &901031712 +--- !u!222 &693243763 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} + m_GameObject: {fileID: 693243760} m_CullTransparentMesh: 0 ---- !u!1 &1014044533 +--- !u!1 &707674913 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4836,10 +4661,10 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1014044534} - - component: {fileID: 1014044537} - - component: {fileID: 1014044536} - - component: {fileID: 1014044535} + - component: {fileID: 707674914} + - component: {fileID: 707674917} + - component: {fileID: 707674916} + - component: {fileID: 707674915} m_Layer: 5 m_Name: 'Execute button ' m_TagString: Untagged @@ -4847,18 +4672,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1014044534 +--- !u!224 &707674914 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1014044533} + m_GameObject: {fileID: 707674913} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 98741742} + m_Father: {fileID: 1465842363} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -4866,13 +4691,13 @@ RectTransform: m_AnchoredPosition: {x: 280.79, y: 44.061} m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1014044535 +--- !u!114 &707674915 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1014044533} + m_GameObject: {fileID: 707674913} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -4905,17 +4730,39 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1014044536} + m_TargetGraphic: {fileID: 707674916} m_OnClick: m_PersistentCalls: - m_Calls: [] ---- !u!114 &1014044536 + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &707674916 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1014044533} + m_GameObject: {fileID: 707674913} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -4938,15 +4785,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1014044537 +--- !u!222 &707674917 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1014044533} + m_GameObject: {fileID: 707674913} m_CullTransparentMesh: 0 ---- !u!1 &1034961194 +--- !u!1 &734707776 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4954,74 +4801,43 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1034961195} - m_Layer: 0 - m_Name: PlacementIndicator + - component: {fileID: 734707777} + - component: {fileID: 734707780} + - component: {fileID: 734707779} + - component: {fileID: 734707778} + m_Layer: 5 + m_Name: 'Execute button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1034961195 -Transform: +--- !u!224 &734707777 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1034961194} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 734707776} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1412616174} - m_Father: {fileID: 1863966798} + m_Children: [] + m_Father: {fileID: 430925419} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1036681157 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1036681158} - - component: {fileID: 1036681161} - - component: {fileID: 1036681160} - - component: {fileID: 1036681159} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1036681158 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1036681159 +--- !u!114 &734707778 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} + m_GameObject: {fileID: 734707776} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -5054,17 +4870,39 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1036681160} + m_TargetGraphic: {fileID: 734707779} m_OnClick: m_PersistentCalls: - m_Calls: [] ---- !u!114 &1036681160 + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &734707779 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} + m_GameObject: {fileID: 734707776} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -5077,7 +4915,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -5087,15 +4925,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1036681161 +--- !u!222 &734707780 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} + m_GameObject: {fileID: 734707776} m_CullTransparentMesh: 0 ---- !u!1 &1082830710 +--- !u!1 &751857360 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5103,91 +4941,118 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1082830711} - - component: {fileID: 1082830712} - m_Layer: 0 - m_Name: Directional Light + - component: {fileID: 751857361} + - component: {fileID: 751857364} + - component: {fileID: 751857363} + - component: {fileID: 751857362} + m_Layer: 5 + m_Name: Play Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1082830711 -Transform: +--- !u!224 &751857361 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1082830710} - m_LocalRotation: {x: 0.41860905, y: -0, z: -0, w: 0.9081665} + m_GameObject: {fileID: 751857360} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1863966798} + m_Children: + - {fileID: 2070172344} + m_Father: {fileID: 197731359} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 49.494003, y: 0, z: 0} ---- !u!108 &1082830712 -Light: + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 162.52039, y: 222} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &751857362 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1082830710} + m_GameObject: {fileID: 751857360} m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 0 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - m_Bias: 0.05 - m_NormalBias: 0.4 - m_NearPlane: 0.2 - m_CullingMatrixOverride: - e00: 1 - e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 - e21: 0 - e22: 1 - e23: 0 - e30: 0 - e31: 0 - e32: 0 - e33: 1 - m_UseCullingMatrixOverride: 0 - m_Cookie: {fileID: 0} - m_DrawHalo: 0 - m_Flare: {fileID: 0} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingLayerMask: 1 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} - m_UseBoundingSphereOverride: 0 - m_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!1 &1114040580 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 751857363} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &751857363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751857360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &751857364 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751857360} + m_CullTransparentMesh: 0 +--- !u!1 &816927179 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5195,45 +5060,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1114040581} - - component: {fileID: 1114040583} - - component: {fileID: 1114040582} + - component: {fileID: 816927180} + - component: {fileID: 816927182} + - component: {fileID: 816927181} m_Layer: 5 - m_Name: Text + m_Name: Argorithm Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1114040581 +--- !u!224 &816927180 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114040580} + m_GameObject: {fileID: 816927179} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 165585584} - m_RootOrder: 1 + m_Father: {fileID: 1517534388} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.0013427734, y: 0} - m_SizeDelta: {x: -0.0025634766, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 427.42902, y: 339.11258} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1114040582 +--- !u!114 &816927181 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114040580} + m_GameObject: {fileID: 816927179} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -5243,85 +5108,25 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: "\u200B" - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4282139129 - m_fontColor: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 60 - m_fontSizeBase: 60 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 60 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1114040583 + m_Sprite: {fileID: 21300000, guid: 847dabb8c701ad84eaafee0f316da804, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &816927182 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114040580} + m_GameObject: {fileID: 816927179} m_CullTransparentMesh: 0 ---- !u!1 &1114870223 +--- !u!1 &819673879 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5329,43 +5134,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1114870224} - - component: {fileID: 1114870227} - - component: {fileID: 1114870226} - - component: {fileID: 1114870225} + - component: {fileID: 819673880} + - component: {fileID: 819673883} + - component: {fileID: 819673882} + - component: {fileID: 819673881} m_Layer: 5 - m_Name: 'Execute button ' + m_Name: 'Next Button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1114870224 +--- !u!224 &819673880 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114870223} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 819673879} + m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 287822664} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 643908818} + m_Father: {fileID: 197731359} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchoredPosition: {x: 160, y: 0} + m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1114870225 +--- !u!114 &819673881 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114870223} + m_GameObject: {fileID: 819673879} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -5398,30 +5204,30 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1114870226} + m_TargetGraphic: {fileID: 819673882} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1114870226 +--- !u!114 &819673882 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114870223} + m_GameObject: {fileID: 819673879} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -5431,15 +5237,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1114870227 +--- !u!222 &819673883 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1114870223} + m_GameObject: {fileID: 819673879} m_CullTransparentMesh: 0 ---- !u!1 &1170989746 +--- !u!1 &869493775 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5447,44 +5253,183 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1170989747} - - component: {fileID: 1170989750} - - component: {fileID: 1170989749} - - component: {fileID: 1170989748} + - component: {fileID: 869493776} + - component: {fileID: 869493779} + - component: {fileID: 869493778} + - component: {fileID: 869493777} m_Layer: 5 - m_Name: 'Replay Button ' + m_Name: Enter Server Endpoint Input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1170989747 +--- !u!224 &869493776 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 869493775} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 228616811} - m_Father: {fileID: 197731359} - m_RootOrder: 4 + - {fileID: 1308166559} + - {fileID: 443532003} + m_Father: {fileID: 1370639141} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -624.24646} + m_SizeDelta: {x: 700, y: 64.80564} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &869493777 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869493775} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 869493778} + m_TextComponent: {fileID: 443532004} + m_Placeholder: {fileID: 1308166560} + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &869493778 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869493775} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &869493779 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869493775} + m_CullTransparentMesh: 0 +--- !u!1 &889600393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 889600394} + - component: {fileID: 889600397} + - component: {fileID: 889600396} + - component: {fileID: 889600395} + m_Layer: 5 + m_Name: report button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &889600394 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889600393} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1030412807} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -300, y: 0} - m_SizeDelta: {x: 115.64688, y: 172.00165} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1170989748 +--- !u!114 &889600395 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 889600393} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -5517,30 +5462,30 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1170989749} + m_TargetGraphic: {fileID: 889600396} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1170989749 +--- !u!114 &889600396 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 889600393} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -5550,15 +5495,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1170989750 +--- !u!222 &889600397 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 889600393} m_CullTransparentMesh: 0 ---- !u!1 &1194786815 +--- !u!1 &901031709 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5566,9 +5511,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1194786816} - - component: {fileID: 1194786818} - - component: {fileID: 1194786817} + - component: {fileID: 901031710} + - component: {fileID: 901031712} + - component: {fileID: 901031711} m_Layer: 5 m_Name: Algo text m_TagString: Untagged @@ -5576,18 +5521,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1194786816 +--- !u!224 &901031710 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194786815} + m_GameObject: {fileID: 901031709} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 567128621} + m_Father: {fileID: 430925419} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -5595,13 +5540,13 @@ RectTransform: m_AnchoredPosition: {x: -18.697, y: 44.061} m_SizeDelta: {x: 362.60315, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1194786817 +--- !u!114 &901031711 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194786815} + m_GameObject: {fileID: 901031709} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -5684,15 +5629,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1194786818 +--- !u!222 &901031712 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194786815} + m_GameObject: {fileID: 901031709} m_CullTransparentMesh: 0 ---- !u!1 &1195657685 +--- !u!1 &945662812 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5700,42 +5645,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1195657686} - - component: {fileID: 1195657688} - - component: {fileID: 1195657687} + - component: {fileID: 945662813} + - component: {fileID: 945662815} + - component: {fileID: 945662814} m_Layer: 5 - m_Name: Algo text + m_Name: Alert Box m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1195657686 +--- !u!224 &945662813 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195657685} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 945662812} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 287822664} - m_RootOrder: 0 + m_Father: {fileID: 1864138857} + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 45.60411} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1195657687 +--- !u!114 &945662814 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195657685} + m_GameObject: {fileID: 945662812} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -5748,7 +5693,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort + m_text: m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -5759,7 +5704,7 @@ MonoBehaviour: m_fontColor32: serializedVersion: 2 rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_fontColor: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -5776,15 +5721,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 36 + m_fontSize: 35 m_fontSizeBase: 36 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_fontSizeMax: 35 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 1024 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -5818,15 +5763,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1195657688 +--- !u!222 &945662815 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195657685} + m_GameObject: {fileID: 945662812} m_CullTransparentMesh: 0 ---- !u!1 &1207409700 +--- !u!1 &965081358 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5834,23 +5779,23 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1207409701} - - component: {fileID: 1207409703} - - component: {fileID: 1207409702} + - component: {fileID: 965081359} + - component: {fileID: 965081361} + - component: {fileID: 965081360} m_Layer: 5 - m_Name: ARgorithm + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1207409701 +--- !u!224 &965081359 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1207409700} + m_GameObject: {fileID: 965081358} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} @@ -5858,21 +5803,21 @@ RectTransform: m_Father: {fileID: 302988619} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.042000003} - m_AnchorMax: {x: 1, y: 0.229571} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -0.0017089844, y: -3.4180908} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -528.3501} + m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1207409702 +--- !u!114 &965081360 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1207409700} + m_GameObject: {fileID: 965081358} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -5882,25 +5827,85 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: a437af81d3213b541bbcad37680f2c34, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1207409703 + m_text: ARgorithm + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 65.9 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &965081361 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1207409700} + m_GameObject: {fileID: 965081358} m_CullTransparentMesh: 0 ---- !u!1 &1210922850 +--- !u!1 &985596069 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -5908,122 +5913,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1210922851} - - component: {fileID: 1210922853} - - component: {fileID: 1210922852} + - component: {fileID: 985596070} + - component: {fileID: 985596073} + - component: {fileID: 985596072} + - component: {fileID: 985596071} m_Layer: 5 - m_Name: ARgorithm (5) + m_Name: 'Connect To Local Server Button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1210922851 +--- !u!224 &985596070 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1210922850} + m_GameObject: {fileID: 985596069} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1392171401} - - {fileID: 775276113} - - {fileID: 567485652} - - {fileID: 1287090623} - - {fileID: 1646496182} - m_Father: {fileID: 2126360451} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: -933} - m_SizeDelta: {x: 584.58154, y: 96.48424} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1210922852 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1210922850} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1210922853 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1210922850} - m_CullTransparentMesh: 0 ---- !u!1 &1233337241 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1233337242} - - component: {fileID: 1233337245} - - component: {fileID: 1233337244} - - component: {fileID: 1233337243} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1233337242 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1233337241} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 287822664} - m_RootOrder: 2 + - {fileID: 27085774} + m_Father: {fileID: 1370639141} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -763.38934} + m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1233337243 +--- !u!114 &985596071 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1233337241} + m_GameObject: {fileID: 985596069} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -6056,32 +5983,32 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1233337244} + m_TargetGraphic: {fileID: 985596072} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1233337244 +--- !u!114 &985596072 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1233337241} + m_GameObject: {fileID: 985596069} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.87843144, g: 0.24705884, b: 0.23137257, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} m_Type: 0 - m_PreserveAspect: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -6089,15 +6016,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1233337245 +--- !u!222 &985596073 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1233337241} + m_GameObject: {fileID: 985596069} m_CullTransparentMesh: 0 ---- !u!1 &1287090622 +--- !u!1 &1002891522 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6105,89 +6032,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1287090623} - - component: {fileID: 1287090626} - - component: {fileID: 1287090625} - - component: {fileID: 1287090624} + - component: {fileID: 1002891523} + - component: {fileID: 1002891525} + - component: {fileID: 1002891524} m_Layer: 5 - m_Name: report button + m_Name: Algo text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1287090623 +--- !u!224 &1002891523 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1287090622} + m_GameObject: {fileID: 1002891522} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1210922851} - m_RootOrder: 3 + m_Father: {fileID: 1465842363} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1287090624 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1287090622} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1287090625} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1287090625 +--- !u!114 &1002891524 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1287090622} + m_GameObject: {fileID: 1002891522} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -6197,157 +6080,85 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1287090626 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1287090622} - m_CullTransparentMesh: 0 ---- !u!1 &1301547206 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1301547207} - - component: {fileID: 1301547209} - - component: {fileID: 1301547208} - m_Layer: 0 - m_Name: AR Session - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1301547207 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1863966798} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1301547208 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fa850fbd5b8aded44846f96e35f1a9f5, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!114 &1301547209 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3859a92a05d4f5d418cb6ca605290e74, type: 3} - m_Name: - m_EditorClassIdentifier: - m_AttemptUpdate: 1 - m_MatchFrameRate: 1 ---- !u!1 &1320106894 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1320106895} - - component: {fileID: 1320106897} - - component: {fileID: 1320106896} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1320106895 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2030604666} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000011444092, y: 0} - m_SizeDelta: {x: -63.935684, y: -107.59886} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1320106896 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: baddaec353f24f2439c48c36076fce66, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1320106897 + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1002891525 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} + m_GameObject: {fileID: 1002891522} m_CullTransparentMesh: 0 ---- !u!1 &1340584890 +--- !u!1 &1005224808 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6355,10 +6166,10 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1340584891} - - component: {fileID: 1340584894} - - component: {fileID: 1340584893} - - component: {fileID: 1340584892} + - component: {fileID: 1005224809} + - component: {fileID: 1005224812} + - component: {fileID: 1005224811} + - component: {fileID: 1005224810} m_Layer: 5 m_Name: Function button m_TagString: Untagged @@ -6366,18 +6177,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1340584891 +--- !u!224 &1005224809 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1340584890} + m_GameObject: {fileID: 1005224808} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 98741742} + m_Father: {fileID: 1125795917} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -6385,13 +6196,13 @@ RectTransform: m_AnchoredPosition: {x: -269, y: 44.061} m_SizeDelta: {x: 101.14667, y: 57.87774} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1340584892 +--- !u!114 &1005224810 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1340584890} + m_GameObject: {fileID: 1005224808} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -6424,17 +6235,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1340584893} + m_TargetGraphic: {fileID: 1005224811} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1340584893 +--- !u!114 &1005224811 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1340584890} + m_GameObject: {fileID: 1005224808} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -6457,15 +6268,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1340584894 +--- !u!222 &1005224812 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1340584890} + m_GameObject: {fileID: 1005224808} m_CullTransparentMesh: 0 ---- !u!1 &1341235042 +--- !u!1 &1025200735 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6473,50 +6284,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1341235043} - - component: {fileID: 1341235045} - - component: {fileID: 1341235044} + - component: {fileID: 1025200736} + - component: {fileID: 1025200738} + - component: {fileID: 1025200737} m_Layer: 5 - m_Name: ARgorithm (6) + m_Name: Github Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1341235043 +--- !u!224 &1025200736 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1341235042} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1025200735} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 125235114} - - {fileID: 612687962} - - {fileID: 1588960647} - - {fileID: 507877644} - - {fileID: 441846183} - m_Father: {fileID: 2126360451} - m_RootOrder: 6 + m_Children: [] + m_Father: {fileID: 99337744} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000015258789, y: -1161} - m_SizeDelta: {x: 584.58154, y: 96.48424} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1341235044 +--- !u!114 &1025200737 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1341235042} + m_GameObject: {fileID: 1025200735} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -6526,84 +6332,147 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1341235045 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1341235042} - m_CullTransparentMesh: 0 ---- !u!1 &1360073882 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1360073883} - - component: {fileID: 1360073885} - - component: {fileID: 1360073884} - m_Layer: 5 - m_Name: Upper Panel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1360073883 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1965552093} - - {fileID: 1736886231} - m_Father: {fileID: 102440318} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.8856622} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 3.0998535} - m_SizeDelta: {x: 0, y: -6.1220703} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1360073884 + m_text: Check out more on Github + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 47.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 62 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1025200738 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1025200735} + m_CullTransparentMesh: 0 +--- !u!1 &1030412806 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1030412807} + - component: {fileID: 1030412809} + - component: {fileID: 1030412808} + m_Layer: 5 + m_Name: ARgorithm (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1030412807 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1030412806} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1282966551} + - {fileID: 1989206155} + - {fileID: 1863628985} + - {fileID: 889600394} + - {fileID: 1481621310} + m_Father: {fileID: 2126360451} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -632.48364} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1030412808 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} + m_GameObject: {fileID: 1030412806} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -6612,15 +6481,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1360073885 +--- !u!222 &1030412809 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} + m_GameObject: {fileID: 1030412806} m_CullTransparentMesh: 0 ---- !u!1 &1370639140 +--- !u!1 &1034961194 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6628,64 +6497,132 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1370639141} - - component: {fileID: 1370639143} - - component: {fileID: 1370639142} - m_Layer: 5 - m_Name: Bottom half Panel + - component: {fileID: 1034961195} + m_Layer: 0 + m_Name: PlacementIndicator m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1370639141 -RectTransform: +--- !u!4 &1034961195 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} + m_GameObject: {fileID: 1034961194} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1562069059} - - {fileID: 463930439} - - {fileID: 1793089057} - - {fileID: 259715464} - - {fileID: 1961527563} - - {fileID: 1515152593} - - {fileID: 741666778} - m_Father: {fileID: 634758126} - m_RootOrder: 1 + - {fileID: 1412616174} + m_Father: {fileID: 1863966798} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.6088244} - m_AnchoredPosition: {x: 0, y: -2} - m_SizeDelta: {x: 0, y: -3.392212} +--- !u!1 &1036681157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1036681158} + - component: {fileID: 1036681161} + - component: {fileID: 1036681160} + - component: {fileID: 1036681159} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1036681158 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1036681157} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 430925419} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1370639142 +--- !u!114 &1036681159 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} + m_GameObject: {fileID: 1036681157} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1036681160} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1036681160 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1036681157} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -6693,15 +6630,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1370639143 +--- !u!222 &1036681161 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} + m_GameObject: {fileID: 1036681157} m_CullTransparentMesh: 0 ---- !u!1 &1392171400 +--- !u!1 &1047745728 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6709,55 +6646,266 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1392171401} - - component: {fileID: 1392171403} - - component: {fileID: 1392171402} + - component: {fileID: 1047745729} + - component: {fileID: 1047745732} + - component: {fileID: 1047745731} + - component: {fileID: 1047745730} m_Layer: 5 - m_Name: Algo text + m_Name: Connect To Cloud Server Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1392171401 +--- !u!224 &1047745729 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392171400} + m_GameObject: {fileID: 1047745728} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1210922851} - m_RootOrder: 0 + m_Children: + - {fileID: 1094096148} + m_Father: {fileID: 1370639141} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -282.58194} + m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1392171402 +--- !u!114 &1047745730 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392171400} + m_GameObject: {fileID: 1047745728} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1047745731} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1047745731 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1047745728} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1047745732 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1047745728} + m_CullTransparentMesh: 0 +--- !u!1 &1082830710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1082830711} + - component: {fileID: 1082830712} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1082830711 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082830710} + m_LocalRotation: {x: 0.41860905, y: -0, z: -0, w: 0.9081665} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1863966798} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 49.494003, y: 0, z: 0} +--- !u!108 &1082830712 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1082830710} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &1089734188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1089734189} + - component: {fileID: 1089734191} + - component: {fileID: 1089734190} + m_Layer: 5 + m_Name: Github Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1089734189 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1089734188} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 349355316} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 440.5025, y: -80.986206} + m_SizeDelta: {x: 568.8229, y: 78.005035} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1089734190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1089734188} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Check out more on Github m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -6767,8 +6915,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -6785,15 +6933,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 36 + m_fontSize: 47.8 m_fontSizeBase: 36 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 + m_fontSizeMax: 62 m_fontStyle: 0 m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -6821,21 +6969,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} + m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1392171403 +--- !u!222 &1089734191 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392171400} + m_GameObject: {fileID: 1089734188} m_CullTransparentMesh: 0 ---- !u!1 &1412616173 +--- !u!1 &1094096147 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6843,93 +6991,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1412616174} - - component: {fileID: 1412616177} - - component: {fileID: 1412616176} - - component: {fileID: 1412616175} - m_Layer: 0 - m_Name: Quad + - component: {fileID: 1094096148} + - component: {fileID: 1094096150} + - component: {fileID: 1094096149} + m_Layer: 5 + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1412616174 -Transform: +--- !u!224 &1094096148 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_GameObject: {fileID: 1094096147} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1034961195} + m_Father: {fileID: 1047745729} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} ---- !u!64 &1412616175 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!23 &1412616176 -MeshRenderer: + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1094096149 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} + m_GameObject: {fileID: 1094096147} m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: fddcee9100b331248b7af6925deef6b8, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &1412616177 -MeshFilter: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 45 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 45 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Connect to Cloud Server +--- !u!222 &1094096150 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!1 &1415852810 + m_GameObject: {fileID: 1094096147} + m_CullTransparentMesh: 0 +--- !u!1 &1105685627 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6937,124 +7069,137 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1415852811} - - component: {fileID: 1415852815} - - component: {fileID: 1415852814} - - component: {fileID: 1415852813} - - component: {fileID: 1415852812} - m_Layer: 0 - m_Name: AR Camera + - component: {fileID: 1105685628} + - component: {fileID: 1105685629} + m_Layer: 5 + m_Name: Login Menu m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1415852811 -Transform: +--- !u!224 &1105685628 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} + m_GameObject: {fileID: 1105685627} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1856774239} - m_RootOrder: 0 + m_Children: + - {fileID: 1517534388} + - {fileID: 1182829122} + - {fileID: 99337744} + m_Father: {fileID: 40919618} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1415852812 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1105685629 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} + m_GameObject: {fileID: 1105685627} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 816b289ef451e094f9ae174fb4cf8db0, type: 3} + m_Script: {fileID: 11500000, guid: 65a6393954a3bf84f92910cb548dee8d, type: 3} m_Name: m_EditorClassIdentifier: - m_UseCustomMaterial: 0 - m_CustomMaterial: {fileID: 0} - m_UseCustomRendererAsset: 0 - m_CustomRendererAsset: {fileID: 0} ---- !u!114 &1415852813 -MonoBehaviour: + NewEmailInput: {fileID: 492046893} + NewPasswordInput: {fileID: 1903245571} + NewRePasswordInput: {fileID: 498761542} + CreateAccountButton: {fileID: 559574886} + AlertBox: {fileID: 945662812} + ExistingEmailInput: {fileID: 220107823} + ExistingPasswordInput: {fileID: 1892302671} + LoginButton: {fileID: 1925248411} +--- !u!1 &1125795916 +GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4966719baa26e4b0e8231a24d9bd491a, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FocusMode: 1 - m_LightEstimationMode: 0 ---- !u!114 &1415852814 + serializedVersion: 6 + m_Component: + - component: {fileID: 1125795917} + - component: {fileID: 1125795919} + - component: {fileID: 1125795918} + m_Layer: 5 + m_Name: ARgorithm (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1125795917 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1125795916} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1461860776} + - {fileID: 331303110} + - {fileID: 1005224809} + - {fileID: 1502711692} + - {fileID: 1760909557} + m_Father: {fileID: 2126360451} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -875.4771} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1125795918 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} + m_GameObject: {fileID: 1125795916} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5a2a9c34df4095f47b9ca8f975175f5b, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Device: 0 - m_PoseSource: 6 - m_PoseProviderComponent: {fileID: 0} - m_TrackingType: 0 - m_UpdateType: 0 - m_UseRelativeTransform: 0 ---- !u!20 &1415852815 -Camera: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1125795919 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} - m_projectionMatrixMode: 1 - m_GateFitMode: 2 - m_FOVAxisMode: 0 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.1 - far clip plane: 20 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 1 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 0 - m_OcclusionCulling: 1 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!1 &1427247396 + m_GameObject: {fileID: 1125795916} + m_CullTransparentMesh: 0 +--- !u!1 &1170989746 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7062,43 +7207,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1427247397} - - component: {fileID: 1427247400} - - component: {fileID: 1427247399} - - component: {fileID: 1427247398} + - component: {fileID: 1170989747} + - component: {fileID: 1170989750} + - component: {fileID: 1170989749} + - component: {fileID: 1170989748} m_Layer: 5 - m_Name: report button + m_Name: 'Replay Button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1427247397 +--- !u!224 &1170989747 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427247396} + m_GameObject: {fileID: 1170989746} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 98741742} - m_RootOrder: 3 + m_Children: + - {fileID: 228616811} + m_Father: {fileID: 197731359} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchoredPosition: {x: -300, y: 0} + m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1427247398 +--- !u!114 &1170989748 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427247396} + m_GameObject: {fileID: 1170989746} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -7131,30 +7277,30 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1427247399} + m_TargetGraphic: {fileID: 1170989749} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1427247399 +--- !u!114 &1170989749 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427247396} + m_GameObject: {fileID: 1170989746} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -7164,15 +7310,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1427247400 +--- !u!222 &1170989750 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427247396} + m_GameObject: {fileID: 1170989746} m_CullTransparentMesh: 0 ---- !u!1 &1515152592 +--- !u!1 &1182829121 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7180,57 +7326,58 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1515152593} - - component: {fileID: 1515152595} - - component: {fileID: 1515152594} + - component: {fileID: 1182829122} + - component: {fileID: 1182829124} + - component: {fileID: 1182829123} m_Layer: 5 - m_Name: Github Logo + m_Name: Bottom half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1515152593 +--- !u!224 &1182829122 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1515152592} + m_GameObject: {fileID: 1182829121} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 5 + m_Children: + - {fileID: 1864138857} + m_Father: {fileID: 1105685628} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0} - m_AnchorMax: {x: 0.5, y: 0} - m_AnchoredPosition: {x: -240, y: 86} - m_SizeDelta: {x: 111.89197, y: 94.17969} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.70850015} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0.21520996} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1515152594 +--- !u!114 &1182829123 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1515152592} + m_GameObject: {fileID: 1182829121} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 86050509ddb6d02488e4efd702650fbc, type: 3} - m_Type: 0 - m_PreserveAspect: 1 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -7238,15 +7385,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1515152595 +--- !u!222 &1182829124 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1515152592} + m_GameObject: {fileID: 1182829121} m_CullTransparentMesh: 0 ---- !u!1 &1562069058 +--- !u!1 &1195461812 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7254,42 +7401,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1562069059} - - component: {fileID: 1562069061} - - component: {fileID: 1562069060} + - component: {fileID: 1195461813} + - component: {fileID: 1195461815} + - component: {fileID: 1195461814} m_Layer: 5 - m_Name: Text 1 + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1562069059 +--- !u!224 &1195461813 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} + m_GameObject: {fileID: 1195461812} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 0 + m_Father: {fileID: 1517534388} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -88} - m_SizeDelta: {x: 686.025, y: 176.99997} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1562069060 +--- !u!114 &1195461814 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} + m_GameObject: {fileID: 1195461812} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -7302,8 +7449,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: You can connect to ARgorithmCloud Server where you can find ARgorithms - made by many contributors and developers + m_text: ARgorithm m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -7331,15 +7477,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 37.05 - m_fontSizeBase: 60 + m_fontSize: 65.9 + m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 60 + m_fontSizeMax: 72 m_fontStyle: 0 m_HorizontalAlignment: 1 - m_VerticalAlignment: 1024 + m_VerticalAlignment: 256 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -7373,15 +7519,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1562069061 +--- !u!222 &1195461815 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} + m_GameObject: {fileID: 1195461812} m_CullTransparentMesh: 0 ---- !u!1 &1577749883 +--- !u!1 &1235994081 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7389,198 +7535,43 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1577749884} - - component: {fileID: 1577749887} - - component: {fileID: 1577749886} - - component: {fileID: 1577749885} + - component: {fileID: 1235994082} + - component: {fileID: 1235994085} + - component: {fileID: 1235994084} + - component: {fileID: 1235994083} m_Layer: 5 - m_Name: Placeholder - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1577749884 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1577749883} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 165585584} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1577749885 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1577749883} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &1577749886 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1577749883} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Enter Server Endpoint - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4282139129 - m_fontColor: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 43.35 - m_fontSizeBase: 60 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 60 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1577749887 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1577749883} - m_CullTransparentMesh: 0 ---- !u!1 &1588960646 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1588960647} - - component: {fileID: 1588960650} - - component: {fileID: 1588960649} - - component: {fileID: 1588960648} - m_Layer: 5 - m_Name: Function button + m_Name: report button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1588960647 +--- !u!224 &1235994082 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1588960646} + m_GameObject: {fileID: 1235994081} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1341235043} - m_RootOrder: 2 + m_Father: {fileID: 243254550} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1588960648 +--- !u!114 &1235994083 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1588960646} + m_GameObject: {fileID: 1235994081} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -7613,17 +7604,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1588960649} + m_TargetGraphic: {fileID: 1235994084} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1588960649 +--- !u!114 &1235994084 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1588960646} + m_GameObject: {fileID: 1235994081} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -7636,7 +7627,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -7646,15 +7637,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1588960650 +--- !u!222 &1235994085 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1588960646} + m_GameObject: {fileID: 1235994081} m_CullTransparentMesh: 0 ---- !u!1 &1624275341 +--- !u!1 &1282966550 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7662,42 +7653,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1624275342} - - component: {fileID: 1624275344} - - component: {fileID: 1624275343} + - component: {fileID: 1282966551} + - component: {fileID: 1282966553} + - component: {fileID: 1282966552} m_Layer: 5 - m_Name: Algo Description text + m_Name: Algo text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1624275342 +--- !u!224 &1282966551 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} + m_GameObject: {fileID: 1282966550} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 1 + m_Father: {fileID: 1030412807} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1624275343 +--- !u!114 &1282966552 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} + m_GameObject: {fileID: 1282966550} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -7710,7 +7701,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum + m_text: Bubble Sort m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -7720,8 +7711,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -7738,8 +7729,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 + m_fontSize: 36 + m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 @@ -7780,15 +7771,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1624275344 +--- !u!222 &1282966553 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} + m_GameObject: {fileID: 1282966550} m_CullTransparentMesh: 0 ---- !u!1 &1646496181 +--- !u!1 &1301547206 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7796,117 +7787,57 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1646496182} - - component: {fileID: 1646496185} - - component: {fileID: 1646496184} - - component: {fileID: 1646496183} - m_Layer: 5 - m_Name: 'Execute button ' + - component: {fileID: 1301547207} + - component: {fileID: 1301547209} + - component: {fileID: 1301547208} + m_Layer: 0 + m_Name: AR Session m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1646496182 -RectTransform: +--- !u!4 &1301547207 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1646496181} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1301547206} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1210922851} - m_RootOrder: 4 + m_Father: {fileID: 1863966798} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1646496183 +--- !u!114 &1301547208 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1646496181} + m_GameObject: {fileID: 1301547206} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: fa850fbd5b8aded44846f96e35f1a9f5, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1646496184} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1646496184 +--- !u!114 &1301547209 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1646496181} + m_GameObject: {fileID: 1301547206} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 3859a92a05d4f5d418cb6ca605290e74, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1646496185 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1646496181} - m_CullTransparentMesh: 0 ---- !u!1 &1698532734 + m_AttemptUpdate: 1 + m_MatchFrameRate: 1 +--- !u!1 &1308166558 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7914,139 +7845,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1698532735} - - component: {fileID: 1698532738} - - component: {fileID: 1698532737} - - component: {fileID: 1698532736} + - component: {fileID: 1308166559} + - component: {fileID: 1308166561} + - component: {fileID: 1308166560} m_Layer: 5 - m_Name: Back Button + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1698532735 +--- !u!224 &1308166559 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} + m_GameObject: {fileID: 1308166558} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 94032617} - m_RootOrder: 1 + m_Father: {fileID: 869493776} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 70, y: -90.95} - m_SizeDelta: {x: 140, y: 70} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1698532736 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1698532737} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 634758125} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 - - m_Target: {fileID: 122589840} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1698532737 +--- !u!114 &1308166560 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} + m_GameObject: {fileID: 1308166558} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 1 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1698532738 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 40 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 45 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter Server Endpoint +--- !u!222 &1308166561 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} + m_GameObject: {fileID: 1308166558} m_CullTransparentMesh: 0 ---- !u!1 &1704162582 +--- !u!1 &1320106894 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8054,45 +7923,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1704162583} - - component: {fileID: 1704162585} - - component: {fileID: 1704162584} + - component: {fileID: 1320106895} + - component: {fileID: 1320106897} + - component: {fileID: 1320106896} m_Layer: 5 - m_Name: Text (TMP) + m_Name: Image m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1704162583 +--- !u!224 &1320106895 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1704162582} + m_GameObject: {fileID: 1320106894} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1961527563} + m_Father: {fileID: 2030604666} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.5000305} - m_SizeDelta: {x: -170.69366, y: -1.000061} + m_AnchoredPosition: {x: -0.000011444092, y: 0} + m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1704162584 +--- !u!114 &1320106896 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1704162582} + m_GameObject: {fileID: 1320106894} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -8102,85 +7971,25 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Connect to Local Server - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281478698 - m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 49.95 - m_fontSizeBase: 61 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 62 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1704162585 + m_Sprite: {fileID: 21300000, guid: baddaec353f24f2439c48c36076fce66, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1320106897 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1704162582} + m_GameObject: {fileID: 1320106894} m_CullTransparentMesh: 0 ---- !u!1 &1710119733 +--- !u!1 &1327508911 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8188,42 +7997,86 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1710119734} - - component: {fileID: 1710119736} - - component: {fileID: 1710119735} + - component: {fileID: 1327508912} + - component: {fileID: 1327508915} + - component: {fileID: 1327508914} + - component: {fileID: 1327508913} m_Layer: 5 - m_Name: Logo in grey + m_Name: report button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1710119734 +--- !u!224 &1327508912 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1710119733} + m_GameObject: {fileID: 1327508911} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.75, y: 0.75, z: 0.75} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 302988619} - m_RootOrder: 0 + m_Father: {fileID: 2140321482} + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.15585804} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -20} - m_SizeDelta: {x: 0.0017089844, y: -34} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1710119735 +--- !u!114 &1327508913 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1327508911} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1327508914} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1327508914 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1710119733} + m_GameObject: {fileID: 1327508911} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -8236,7 +8089,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 847dabb8c701ad84eaafee0f316da804, type: 3} + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -8246,15 +8099,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1710119736 +--- !u!222 &1327508915 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1710119733} + m_GameObject: {fileID: 1327508911} m_CullTransparentMesh: 0 ---- !u!1 &1736886230 +--- !u!1 &1338962668 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8262,139 +8115,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1736886231} - - component: {fileID: 1736886234} - - component: {fileID: 1736886233} - - component: {fileID: 1736886232} + - component: {fileID: 1338962669} + - component: {fileID: 1338962671} + - component: {fileID: 1338962670} m_Layer: 5 - m_Name: Back Button + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1736886231 +--- !u!224 &1338962669 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1338962668} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1360073883} + m_Father: {fileID: 220107822} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 70, y: -90.95} - m_SizeDelta: {x: 140, y: 70} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1736886232 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1736886233} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &1736886233 +--- !u!114 &1338962670 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} + m_GameObject: {fileID: 1338962668} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1736886234 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1338962671 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_CullTransparentMesh: 1 ---- !u!1 &1793089056 + m_GameObject: {fileID: 1338962668} + m_CullTransparentMesh: 0 +--- !u!1 &1360073882 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8402,133 +8193,75 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1793089057} - - component: {fileID: 1793089059} - - component: {fileID: 1793089058} + - component: {fileID: 1360073883} + - component: {fileID: 1360073885} + - component: {fileID: 1360073884} m_Layer: 5 - m_Name: Text 2 + m_Name: Upper Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1793089057 +--- !u!224 &1360073883 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1360073882} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 2 + m_Children: + - {fileID: 1965552093} + - {fileID: 1736886231} + m_Father: {fileID: 102440318} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 687.025, y: 86.360596} + m_AnchorMin: {x: 0, y: 0.8856622} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 3.0998535} + m_SizeDelta: {x: 0, y: -6.1220703} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1793089058 +--- !u!114 &1360073884 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} + m_GameObject: {fileID: 1360073882} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Setup your own ARgorithm server and connect to it - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 35.95 - m_fontSizeBase: 60 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 60 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 1024 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1793089059 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1360073885 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} + m_GameObject: {fileID: 1360073882} m_CullTransparentMesh: 0 ---- !u!1 &1856774238 +--- !u!1 &1370639140 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8536,72 +8269,222 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1856774239} - - component: {fileID: 1856774240} - - component: {fileID: 1856774242} - - component: {fileID: 1856774241} - m_Layer: 0 - m_Name: AR Session Origin + - component: {fileID: 1370639141} + - component: {fileID: 1370639143} + - component: {fileID: 1370639142} + - component: {fileID: 1370639144} + m_Layer: 5 + m_Name: Bottom half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1856774239 -Transform: +--- !u!224 &1370639141 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} + m_GameObject: {fileID: 1370639140} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1415852811} - m_Father: {fileID: 1863966798} + - {fileID: 1562069059} + - {fileID: 1047745729} + - {fileID: 1793089057} + - {fileID: 869493776} + - {fileID: 985596070} + m_Father: {fileID: 634758126} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1856774240 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.6088244} + m_AnchoredPosition: {x: 0, y: 79} + m_SizeDelta: {x: 0, y: -165.66852} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1370639142 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} + m_GameObject: {fileID: 1370639140} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 520bb47c46cf8624fafb307b7d1b862a, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Camera: {fileID: 1415852815} ---- !u!114 &1856774241 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} - m_Enabled: 1 + m_Material: {fileID: 0} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1370639143 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370639140} + m_CullTransparentMesh: 0 +--- !u!114 &1370639144 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370639140} + m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e1760703bbd54c04488a8d10600262ab, type: 3} + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} m_Name: m_EditorClassIdentifier: - m_PlanePrefab: {fileID: 0} - m_DetectionMode: -1 ---- !u!114 &1856774242 + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &1388274820 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1388274821} + - component: {fileID: 1388274824} + - component: {fileID: 1388274823} + - component: {fileID: 1388274822} + m_Layer: 5 + m_Name: report button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1388274821 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388274820} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1790748918} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1388274822 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} + m_GameObject: {fileID: 1388274820} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fa17d122634046b4a8e23048891fafc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!1 &1863966797 + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1388274823} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1388274823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388274820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1388274824 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388274820} + m_CullTransparentMesh: 0 +--- !u!1 &1412616173 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8609,35 +8492,93 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1863966798} + - component: {fileID: 1412616174} + - component: {fileID: 1412616177} + - component: {fileID: 1412616176} + - component: {fileID: 1412616175} m_Layer: 0 - m_Name: AR + m_Name: Quad m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &1863966798 + m_IsActive: 1 +--- !u!4 &1412616174 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863966797} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 712.5339, y: 1812.7913, z: -5777.2505} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1082830711} - - {fileID: 1856774239} - - {fileID: 1301547207} - - {fileID: 102440318} - - {fileID: 1034961195} - - {fileID: 1882462156} - m_Father: {fileID: 0} + m_GameObject: {fileID: 1412616173} + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1034961195} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1882462155 + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!64 &1412616175 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1412616173} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &1412616176 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1412616173} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: fddcee9100b331248b7af6925deef6b8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1412616177 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1412616173} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1415852810 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8645,45 +8586,3077 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1882462156} - - component: {fileID: 1882462157} + - component: {fileID: 1415852811} + - component: {fileID: 1415852815} + - component: {fileID: 1415852814} + - component: {fileID: 1415852813} + - component: {fileID: 1415852812} m_Layer: 0 - m_Name: Interaction + m_Name: AR Camera m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1882462156 +--- !u!4 &1415852811 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1882462155} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1415852810} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1863966798} - m_RootOrder: 5 + m_Father: {fileID: 1856774239} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1882462157 +--- !u!114 &1415852812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 816b289ef451e094f9ae174fb4cf8db0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UseCustomMaterial: 0 + m_CustomMaterial: {fileID: 0} + m_UseCustomRendererAsset: 0 + m_CustomRendererAsset: {fileID: 0} +--- !u!114 &1415852813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4966719baa26e4b0e8231a24d9bd491a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FocusMode: 1 + m_LightEstimationMode: 0 +--- !u!114 &1415852814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5a2a9c34df4095f47b9ca8f975175f5b, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Device: 0 + m_PoseSource: 6 + m_PoseProviderComponent: {fileID: 0} + m_TrackingType: 0 + m_UpdateType: 0 + m_UseRelativeTransform: 0 +--- !u!20 &1415852815 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 20 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1427400217 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1427400218} + - component: {fileID: 1427400220} + - component: {fileID: 1427400219} + m_Layer: 5 + m_Name: Algo text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1427400218 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427400217} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1790748918} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1427400219 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427400217} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1427400220 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427400217} + m_CullTransparentMesh: 0 +--- !u!1 &1441188054 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1441188055} + - component: {fileID: 1441188058} + - component: {fileID: 1441188057} + - component: {fileID: 1441188056} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1441188055 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441188054} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2140321482} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1441188056 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441188054} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1441188057} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1441188057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441188054} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1441188058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441188054} + m_CullTransparentMesh: 0 +--- !u!1 &1455531919 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1455531920} + - component: {fileID: 1455531922} + - component: {fileID: 1455531921} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1455531920 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455531919} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 498761541} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1455531921 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455531919} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Re-enter Password +--- !u!222 &1455531922 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455531919} + m_CullTransparentMesh: 0 +--- !u!1 &1461860775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1461860776} + - component: {fileID: 1461860778} + - component: {fileID: 1461860777} + m_Layer: 5 + m_Name: Algo text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1461860776 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1461860775} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1125795917} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1461860777 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1461860775} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1461860778 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1461860775} + m_CullTransparentMesh: 0 +--- !u!1 &1465842362 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1465842363} + - component: {fileID: 1465842365} + - component: {fileID: 1465842364} + m_Layer: 5 + m_Name: ARgorithm (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1465842363 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1465842362} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1002891523} + - {fileID: 415820189} + - {fileID: 2036773261} + - {fileID: 1929296032} + - {fileID: 707674914} + m_Father: {fileID: 2126360451} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -389.4902} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1465842364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1465842362} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1465842365 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1465842362} + m_CullTransparentMesh: 0 +--- !u!1 &1481621309 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1481621310} + - component: {fileID: 1481621313} + - component: {fileID: 1481621312} + - component: {fileID: 1481621311} + m_Layer: 5 + m_Name: 'Execute button ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1481621310 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481621309} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1030412807} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1481621311 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481621309} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1481621312} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &1481621312 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481621309} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1481621313 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1481621309} + m_CullTransparentMesh: 0 +--- !u!1 &1502711691 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1502711692} + - component: {fileID: 1502711695} + - component: {fileID: 1502711694} + - component: {fileID: 1502711693} + m_Layer: 5 + m_Name: report button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1502711692 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1502711691} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1125795917} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1502711693 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1502711691} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1502711694} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1502711694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1502711691} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1502711695 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1502711691} + m_CullTransparentMesh: 0 +--- !u!1 &1517534387 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1517534388} + - component: {fileID: 1517534391} + - component: {fileID: 1517534390} + - component: {fileID: 1517534389} + m_Layer: 5 + m_Name: Upper half Panel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1517534388 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517534387} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 816927180} + - {fileID: 1195461813} + m_Father: {fileID: 1105685628} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.70850015} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: -0.00024414062} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1517534389 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517534387} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &1517534390 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517534387} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1517534391 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517534387} + m_CullTransparentMesh: 0 +--- !u!1 &1562069058 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1562069059} + - component: {fileID: 1562069061} + - component: {fileID: 1562069060} + m_Layer: 5 + m_Name: Text 1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1562069059 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1562069058} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1370639141} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -105.23095} + m_SizeDelta: {x: 700, y: 141.22183} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1562069060 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1562069058} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: You can connect to ARgorithmCloud Server where you can find ARgorithms + made by many contributors and developers + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 37.8 + m_fontSizeBase: 60 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 60 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1562069061 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1562069058} + m_CullTransparentMesh: 0 +--- !u!1 &1624275341 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1624275342} + - component: {fileID: 1624275344} + - component: {fileID: 1624275343} + m_Layer: 5 + m_Name: Algo Description text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1624275342 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624275341} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 430925419} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1624275343 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624275341} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Lorem Ipsum + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1624275344 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1624275341} + m_CullTransparentMesh: 0 +--- !u!1 &1643328702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1643328703} + - component: {fileID: 1643328706} + - component: {fileID: 1643328705} + - component: {fileID: 1643328704} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1643328703 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643328702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 243254550} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1643328704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643328702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1643328705} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1643328705 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643328702} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1643328706 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643328702} + m_CullTransparentMesh: 0 +--- !u!1 &1698532734 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1698532735} + - component: {fileID: 1698532738} + - component: {fileID: 1698532737} + - component: {fileID: 1698532736} + m_Layer: 5 + m_Name: Back Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1698532735 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1698532734} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 94032617} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 70, y: -91} + m_SizeDelta: {x: 140, y: 70} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1698532736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1698532734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1698532737} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 634758125} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 122589840} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1698532737 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1698532734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 1 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1698532738 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1698532734} + m_CullTransparentMesh: 0 +--- !u!1 &1736886230 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1736886231} + - component: {fileID: 1736886234} + - component: {fileID: 1736886233} + - component: {fileID: 1736886232} + m_Layer: 5 + m_Name: Back Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1736886231 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1360073883} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 70, y: -90.95} + m_SizeDelta: {x: 140, y: 70} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1736886232 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1736886233} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &1736886233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1736886234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_CullTransparentMesh: 1 +--- !u!1 &1760909556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1760909557} + - component: {fileID: 1760909560} + - component: {fileID: 1760909559} + - component: {fileID: 1760909558} + m_Layer: 5 + m_Name: 'Execute button ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1760909557 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1760909556} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1125795917} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1760909558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1760909556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1760909559} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &1760909559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1760909556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1760909560 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1760909556} + m_CullTransparentMesh: 0 +--- !u!1 &1790748917 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1790748918} + - component: {fileID: 1790748920} + - component: {fileID: 1790748919} + m_Layer: 5 + m_Name: ARgorithm (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1790748918 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1790748917} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1427400218} + - {fileID: 1923391994} + - {fileID: 1847559669} + - {fileID: 1388274821} + - {fileID: 44290833} + m_Father: {fileID: 2126360451} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -1118.4706} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1790748919 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1790748917} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1790748920 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1790748917} + m_CullTransparentMesh: 0 +--- !u!1 &1793089056 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1793089057} + - component: {fileID: 1793089059} + - component: {fileID: 1793089058} + m_Layer: 5 + m_Name: Text 2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1793089057 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1793089056} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1370639141} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -455.96277} + m_SizeDelta: {x: 700, y: 133.28156} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1793089058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1793089056} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: ' + + Setup your own ARgorithm server and connect to it' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 37 + m_fontSizeBase: 60 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 60 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1793089059 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1793089056} + m_CullTransparentMesh: 0 +--- !u!1 &1801051559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1801051560} + - component: {fileID: 1801051562} + - component: {fileID: 1801051561} + m_Layer: 5 + m_Name: Github Logo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1801051560 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801051559} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 99337744} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 81.005005, y: 94.17969} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1801051561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801051559} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 86050509ddb6d02488e4efd702650fbc, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1801051562 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801051559} + m_CullTransparentMesh: 0 +--- !u!1 &1847559668 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1847559669} + - component: {fileID: 1847559672} + - component: {fileID: 1847559671} + - component: {fileID: 1847559670} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1847559669 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847559668} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1790748918} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1847559670 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847559668} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1847559671} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1847559671 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847559668} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1847559672 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847559668} + m_CullTransparentMesh: 0 +--- !u!1 &1856774238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1856774239} + - component: {fileID: 1856774240} + - component: {fileID: 1856774242} + - component: {fileID: 1856774241} + m_Layer: 0 + m_Name: AR Session Origin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1856774239 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1856774238} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1415852811} + m_Father: {fileID: 1863966798} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1856774240 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1856774238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 520bb47c46cf8624fafb307b7d1b862a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Camera: {fileID: 1415852815} +--- !u!114 &1856774241 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1856774238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e1760703bbd54c04488a8d10600262ab, type: 3} + m_Name: + m_EditorClassIdentifier: + m_PlanePrefab: {fileID: 0} + m_DetectionMode: -1 +--- !u!114 &1856774242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1856774238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fa17d122634046b4a8e23048891fafc5, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1863628984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1863628985} + - component: {fileID: 1863628988} + - component: {fileID: 1863628987} + - component: {fileID: 1863628986} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1863628985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863628984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1030412807} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1863628986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863628984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1863628987} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1863628987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863628984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1863628988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863628984} + m_CullTransparentMesh: 0 +--- !u!1 &1863966797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1863966798} + m_Layer: 0 + m_Name: AR + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1863966798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863966797} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 712.5339, y: 1812.7913, z: -5777.2505} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1082830711} + - {fileID: 1856774239} + - {fileID: 1301547207} + - {fileID: 102440318} + - {fileID: 1034961195} + - {fileID: 1882462156} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1864138856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1864138857} + - component: {fileID: 1864138858} + m_Layer: 5 + m_Name: Inputs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1864138857 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864138856} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2031689195} + - {fileID: 492046892} + - {fileID: 1903245570} + - {fileID: 498761541} + - {fileID: 559574884} + - {fileID: 945662813} + - {fileID: 659324769} + - {fileID: 220107822} + - {fileID: 1892302670} + - {fileID: 1925248409} + m_Father: {fileID: 1182829122} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 1, y: 87} + m_SizeDelta: {x: 0, y: -173.43164} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1864138858 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864138856} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &1869106835 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1869106836} + - component: {fileID: 1869106838} + - component: {fileID: 1869106837} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1869106836 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1869106835} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 559574884} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.00016784668, y: 0.5000305} + m_SizeDelta: {x: -0.00039672852, y: -1.000061} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1869106837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1869106835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Create Account + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281478698 + m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 40 + m_fontSizeBase: 61 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 40 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1869106838 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1869106835} + m_CullTransparentMesh: 0 +--- !u!1 &1882462155 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1882462156} + - component: {fileID: 1882462157} + m_Layer: 0 + m_Name: Interaction + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1882462156 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882462155} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1863966798} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1882462157 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1882462155} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31e210162dd17ae4d91a84a38663f04d, type: 3} + m_Name: + m_EditorClassIdentifier: + placementIndicator: {fileID: 1034961194} + cube: {fileID: 39518484157928013, guid: 40a3700af4216614b8336f12ca407fad, type: 3} + CommentBox: {fileID: 578948184} +--- !u!1 &1889909106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1889909107} + - component: {fileID: 1889909109} + - component: {fileID: 1889909108} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1889909107 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889909106} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 220107822} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1889909108 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889909106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Email +--- !u!222 &1889909109 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889909106} + m_CullTransparentMesh: 0 +--- !u!1 &1892302669 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1892302670} + - component: {fileID: 1892302673} + - component: {fileID: 1892302672} + - component: {fileID: 1892302671} + m_Layer: 5 + m_Name: 'Exiting password input ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1892302670 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892302669} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 440807164} + - {fileID: 179358028} + m_Father: {fileID: 1864138857} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 625, y: 75} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1892302671 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892302669} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1892302672} + m_TextComponent: {fileID: 179358029} + m_Placeholder: {fileID: 440807165} + m_ContentType: 7 + m_InputType: 2 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &1892302672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892302669} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1892302673 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892302669} + m_CullTransparentMesh: 0 +--- !u!1 &1903245569 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1903245570} + - component: {fileID: 1903245573} + - component: {fileID: 1903245572} + - component: {fileID: 1903245571} + m_Layer: 5 + m_Name: Enter password input + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1903245570 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903245569} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 50626294} + - {fileID: 373145511} + m_Father: {fileID: 1864138857} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 625, y: 75} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1903245571 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903245569} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1903245572} + m_TextComponent: {fileID: 373145512} + m_Placeholder: {fileID: 50626295} + m_ContentType: 7 + m_InputType: 2 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &1903245572 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1882462155} + m_GameObject: {fileID: 1903245569} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 31e210162dd17ae4d91a84a38663f04d, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - placementIndicator: {fileID: 1034961194} - cube: {fileID: 39518484157928013, guid: 40a3700af4216614b8336f12ca407fad, type: 3} - CommentBox: {fileID: 578948184} ---- !u!1 &1906969681 + m_Material: {fileID: 0} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1903245573 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903245569} + m_CullTransparentMesh: 0 +--- !u!1 &1923391993 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8691,42 +11664,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1906969682} - - component: {fileID: 1906969684} - - component: {fileID: 1906969683} + - component: {fileID: 1923391994} + - component: {fileID: 1923391996} + - component: {fileID: 1923391995} m_Layer: 5 - m_Name: Algo text + m_Name: Algo Description text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1906969682 +--- !u!224 &1923391994 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906969681} + m_GameObject: {fileID: 1923391993} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 799703679} - m_RootOrder: 0 + m_Father: {fileID: 1790748918} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1906969683 +--- !u!114 &1923391995 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906969681} + m_GameObject: {fileID: 1923391993} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -8739,7 +11712,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort + m_text: Lorem Ipsum m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -8749,8 +11722,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -8767,8 +11740,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 @@ -8809,15 +11782,263 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1906969684 +--- !u!222 &1923391996 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923391993} + m_CullTransparentMesh: 0 +--- !u!1 &1925248408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925248409} + - component: {fileID: 1925248413} + - component: {fileID: 1925248412} + - component: {fileID: 1925248411} + m_Layer: 5 + m_Name: 'Login Button ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1925248409 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 154305066} + m_Father: {fileID: 1864138857} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 325, y: 75} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1925248411 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1925248412} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 0} + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1925248412 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1925248413 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_CullTransparentMesh: 0 +--- !u!1 &1929296031 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1929296032} + - component: {fileID: 1929296035} + - component: {fileID: 1929296034} + - component: {fileID: 1929296033} + m_Layer: 5 + m_Name: report button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1929296032 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929296031} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1465842363} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1929296033 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929296031} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1929296034} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1929296034 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929296031} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1929296035 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1906969681} + m_GameObject: {fileID: 1929296031} m_CullTransparentMesh: 0 ---- !u!1 &1921505400 +--- !u!1 &1946396352 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8825,42 +12046,116 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1921505401} - - component: {fileID: 1921505403} - - component: {fileID: 1921505402} + - component: {fileID: 1946396353} + - component: {fileID: 1946396355} + - component: {fileID: 1946396354} m_Layer: 5 - m_Name: Algo Description text + m_Name: Argorithm Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1921505401 +--- !u!224 &1946396353 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1921505400} + m_GameObject: {fileID: 1946396352} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 98741742} - m_RootOrder: 1 + m_Father: {fileID: 302988619} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -280.54602} + m_SizeDelta: {x: 479.58746, y: 408.65707} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1946396354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946396352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 847dabb8c701ad84eaafee0f316da804, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1946396355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946396352} + m_CullTransparentMesh: 0 +--- !u!1 &1965552092 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1965552093} + - component: {fileID: 1965552095} + - component: {fileID: 1965552094} + m_Layer: 5 + m_Name: ARgorithm name text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1965552093 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1965552092} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1360073883} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1921505402 +--- !u!114 &1965552094 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1921505400} + m_GameObject: {fileID: 1965552092} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -8873,7 +12168,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum + m_text: Blank Example m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -8883,8 +12178,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -8901,15 +12196,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 + m_fontSize: 65 + m_fontSizeBase: 36 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 + m_fontSizeMax: 65 m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -8943,133 +12238,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1921505403 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1921505400} - m_CullTransparentMesh: 0 ---- !u!1 &1928529161 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1928529162} - - component: {fileID: 1928529165} - - component: {fileID: 1928529164} - - component: {fileID: 1928529163} - m_Layer: 5 - m_Name: report button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1928529162 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1928529161} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 567128621} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1928529163 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1928529161} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1928529164} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1928529164 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1928529161} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1928529165 +--- !u!222 &1965552095 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1928529161} + m_GameObject: {fileID: 1965552092} m_CullTransparentMesh: 0 ---- !u!1 &1951388252 +--- !u!1 &1989206154 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -9077,9 +12254,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1951388253} - - component: {fileID: 1951388255} - - component: {fileID: 1951388254} + - component: {fileID: 1989206155} + - component: {fileID: 1989206157} + - component: {fileID: 1989206156} m_Layer: 5 m_Name: Algo Description text m_TagString: Untagged @@ -9087,18 +12264,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1951388253 +--- !u!224 &1989206155 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951388252} + m_GameObject: {fileID: 1989206154} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 567128621} + m_Father: {fileID: 1030412807} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -9106,13 +12283,13 @@ RectTransform: m_AnchoredPosition: {x: 50.878, y: -40.9} m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1951388254 +--- !u!114 &1989206156 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951388252} + m_GameObject: {fileID: 1989206154} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -9195,15 +12372,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1951388255 +--- !u!222 &1989206157 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951388252} + m_GameObject: {fileID: 1989206154} m_CullTransparentMesh: 0 ---- !u!1 &1961527562 +--- !u!1 &2030604665 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -9211,44 +12388,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1961527563} - - component: {fileID: 1961527566} - - component: {fileID: 1961527565} - - component: {fileID: 1961527564} + - component: {fileID: 2030604666} + - component: {fileID: 2030604669} + - component: {fileID: 2030604668} + - component: {fileID: 2030604667} m_Layer: 5 - m_Name: Connect to Local Server + m_Name: Menu Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1961527563 +--- !u!224 &2030604666 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1961527562} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 2030604665} + m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1704162583} - m_Father: {fileID: 1370639141} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + - {fileID: 1320106895} + m_Father: {fileID: 197731359} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -2.4938, y: -199.2} - m_SizeDelta: {x: 691.0126, y: 79.50931} + m_AnchoredPosition: {x: 300, y: 0} + m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1961527564 +--- !u!114 &2030604667 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1961527562} + m_GameObject: {fileID: 2030604665} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -9281,32 +12458,32 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1961527565} + m_TargetGraphic: {fileID: 2030604668} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1961527565 +--- !u!114 &2030604668 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1961527562} + m_GameObject: {fileID: 2030604665} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} m_Type: 0 - m_PreserveAspect: 0 + m_PreserveAspect: 1 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -9314,15 +12491,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1961527566 +--- !u!222 &2030604669 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1961527562} + m_GameObject: {fileID: 2030604665} m_CullTransparentMesh: 0 ---- !u!1 &1965552092 +--- !u!1 &2031689194 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -9330,42 +12507,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1965552093} - - component: {fileID: 1965552095} - - component: {fileID: 1965552094} + - component: {fileID: 2031689195} + - component: {fileID: 2031689197} + - component: {fileID: 2031689196} m_Layer: 5 - m_Name: ARgorithm name text + m_Name: Login Text title m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1965552093 +--- !u!224 &2031689195 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 2031689194} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1360073883} + m_Father: {fileID: 1864138857} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 95.53175} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1965552094 +--- !u!114 &2031689196 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} + m_GameObject: {fileID: 2031689194} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -9378,7 +12555,10 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Blank Example + m_text: 'Welcome to ARgorithm + + Create your account + and start exploring' m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -9406,15 +12586,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 65 + m_fontSize: 35 m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 65 - m_fontStyle: 0 + m_fontSizeMax: 35 + m_fontStyle: 1 m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 + m_VerticalAlignment: 1024 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -9448,15 +12628,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1965552095 +--- !u!222 &2031689197 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} + m_GameObject: {fileID: 2031689194} m_CullTransparentMesh: 0 ---- !u!1 &2000784356 +--- !u!1 &2036773260 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -9464,43 +12644,43 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2000784357} - - component: {fileID: 2000784360} - - component: {fileID: 2000784359} - - component: {fileID: 2000784358} + - component: {fileID: 2036773261} + - component: {fileID: 2036773264} + - component: {fileID: 2036773263} + - component: {fileID: 2036773262} m_Layer: 5 - m_Name: report button + m_Name: Function button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2000784357 +--- !u!224 &2036773261 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2000784356} + m_GameObject: {fileID: 2036773260} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 287822664} - m_RootOrder: 3 + m_Father: {fileID: 1465842363} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2000784358 +--- !u!114 &2036773262 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2000784356} + m_GameObject: {fileID: 2036773260} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -9533,17 +12713,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 2000784359} + m_TargetGraphic: {fileID: 2036773263} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &2000784359 +--- !u!114 &2036773263 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2000784356} + m_GameObject: {fileID: 2036773260} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -9556,7 +12736,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -9566,15 +12746,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2000784360 +--- !u!222 &2036773264 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2000784356} + m_GameObject: {fileID: 2036773260} m_CullTransparentMesh: 0 ---- !u!1 &2030604665 +--- !u!1 &2066809533 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -9582,116 +12762,131 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2030604666} - - component: {fileID: 2030604669} - - component: {fileID: 2030604668} - - component: {fileID: 2030604667} + - component: {fileID: 2066809534} + - component: {fileID: 2066809536} + - component: {fileID: 2066809535} m_Layer: 5 - m_Name: Menu Button + m_Name: Algo Description text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2030604666 +--- !u!224 &2066809534 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} - m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} + m_GameObject: {fileID: 2066809533} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1320106895} - m_Father: {fileID: 197731359} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} + m_Children: [] + m_Father: {fileID: 243254550} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 300, y: 0} - m_SizeDelta: {x: 115.64688, y: 172.00165} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2030604667 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 2030604668} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &2030604668 +--- !u!114 &2066809535 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} + m_GameObject: {fileID: 2066809533} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2030604669 + m_text: Lorem Ipsum + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2066809536 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} + m_GameObject: {fileID: 2066809533} m_CullTransparentMesh: 0 --- !u!1 &2070172343 GameObject: @@ -9777,6 +12972,7 @@ GameObject: m_Component: - component: {fileID: 2126360451} - component: {fileID: 2126360452} + - component: {fileID: 2126360453} m_Layer: 5 m_Name: Panel List Holder m_TagString: Untagged @@ -9796,20 +12992,20 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 430925419} - - {fileID: 98741742} - - {fileID: 287822664} - - {fileID: 567128621} - - {fileID: 799703679} - - {fileID: 1210922851} - - {fileID: 1341235043} + - {fileID: 1465842363} + - {fileID: 1030412807} + - {fileID: 1125795917} + - {fileID: 1790748918} + - {fileID: 2140321482} + - {fileID: 243254550} m_Father: {fileID: 122589841} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -792} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -364.99994} + m_SizeDelta: {x: 800, y: 1279} + m_Pivot: {x: 0.5, y: 1} --- !u!114 &2126360452 MonoBehaviour: m_ObjectHideFlags: 0 @@ -9823,3 +13019,107 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: easing: 0.5 +--- !u!114 &2126360453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2126360450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 50 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 50 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &2140321481 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2140321482} + - component: {fileID: 2140321484} + - component: {fileID: 2140321483} + m_Layer: 5 + m_Name: ARgorithm (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2140321482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140321481} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 693243761} + - {fileID: 484736724} + - {fileID: 1441188055} + - {fileID: 1327508912} + - {fileID: 37069627} + m_Father: {fileID: 2126360451} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -1361.464} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2140321483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140321481} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2140321484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140321481} + m_CullTransparentMesh: 0 diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs index 2e88454..602026e 100644 --- a/Assets/Scripts/ARgorithmAPI/APIClient.cs +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -187,8 +187,6 @@ The LoginResponse.status can have following values });break; } } - - Debug.Log(token); } } diff --git a/Assets/Scripts/ButtonManager.cs b/Assets/Scripts/ButtonManager.cs deleted file mode 100644 index 3a5e4c7..0000000 --- a/Assets/Scripts/ButtonManager.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.SceneManagement; - -public class ButtonManager : MonoBehaviour -{ - public void CloudServer() - { - Debug.Log("Hello, my name is Vinay"); - } -} diff --git a/Assets/Scripts/Login.cs b/Assets/Scripts/Login.cs new file mode 100644 index 0000000..d490fee --- /dev/null +++ b/Assets/Scripts/Login.cs @@ -0,0 +1,272 @@ +using System.Collections; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using UnityEngine; +using UnityEngine.UI; +using TMPro; + +using ARgorithmAPI; +using ARgorithmAPI.Models; + +public class Login : MonoBehaviour +{ + public InputField NewEmailInput; + public InputField NewPasswordInput; + public InputField NewRePasswordInput; + public Button CreateAccountButton; + + public GameObject AlertBox; + + public InputField ExistingEmailInput; + public InputField ExistingPasswordInput; + public Button LoginButton; + + + + //Function that use ARgorithm APIclient to create Account + //The CreationResponse.status can have following values + //FAILURE: Error has occured + //SUCCESS: User account has been created + //EXISTING: Email is already registered + //NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login + public void createAccount(string email,string password) + { + Debug.Log(email + " " + password); + StartCoroutine( + APIClient.Instance.create( + new Account + { + email = email, + password = password + }, + (r) => callback(r) + ) + ); + } + + void callback(CreationResponse c) + { + Debug.Log(c.status); + switch (c.status) + { + case "SUCCESS": + { + //Account is created + //Login the user with the credentials + break; + } + case "EXISTING": + { + //Alert the user email is already registered + //use login to login + break; + } + default : + { + //Navigate to Main Menu + //Alert the user Try connecting to server again + break; + } + } + } + + //Function that use ARgorithm APIclient to LOGIN to existing Account + //The LoginResponse.status can have following values + //FAILURE: Error has occured + //SUCCESS: Login successful + //NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login + //NOT_FOUND: Email is not registered + //INCORRECT_PASSWORD: Password is incorrect + public void login(string email, string password) + { + StartCoroutine( + APIClient.Instance.login( + new Account + { + email = email, + password = password + }, + (r) => callback(r) + ) + ); + } + + void callback(LoginResponse c) + { + Debug.Log(c.status); + switch (c.status) + { + case "SUCCESS": + { + //Navigate to cloud Menu + break; + } + case "NOT_FOUND": + { + //Alert Email was not found + break; + } + case "INCORRECT_PASSWORD": + { + //Alert the user the password is incorrect + break; + } + default: + { + //Navigate to Main Menu + //Alert the user Try connecting to server again + break; + } + + } + } + + + // Start is called before the first frame update + void Start() + { + CreateAccountButton.interactable = false; + LoginButton.interactable = false; + + //Button that takes in New Email and Password sends an API call to + //add the user to AR cloud server (incomplete function) + CreateAccountButton.onClick.AddListener(() => + { + if (NewPasswordInput.text == NewRePasswordInput.text) + { + //Debug.Log("Creating New Account Function"); + createAccount(NewEmailInput.text, NewPasswordInput.text); + } + + }); + + //Button that takes in Email and Password sends an API call to check + //whether they are registered users on AR cloud server (incomplete function) + LoginButton.onClick.AddListener(() => + { + //Debug.Log("Existing Account Function"); + login(ExistingEmailInput.text, ExistingPasswordInput.text); + }); + + + + //To check whether the Re-entered Password is same as the entered Password in + //Create account. The below functions also validates the password and email if they are + //in the right format whenever the values change in the inputfields. + Regex passwordRegex = new Regex("^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z]).{8,25}$"); + Regex emailRegex = new Regex("^[a-zA-Z0-9+_.-]+@[a-zA-Z0-9.-]+$"); + + NewEmailInput.onValueChanged.AddListener(delegate + { + Match emailMatch = emailRegex.Match(NewEmailInput.text); + Match passwordMatch = passwordRegex.Match(NewPasswordInput.text); + + if (!emailMatch.Success) + { + Alert("Not a valid Email ID"); + CreateAccountButton.interactable = false; + } + else if (!passwordMatch.Success) + { + Alert("Your password must contain at least one digit number, Capital letter " + + "and one special character"); + CreateAccountButton.interactable = false; + } + else if (NewPasswordInput.text != NewRePasswordInput.text) + { + Alert("Passwords are not the same"); + CreateAccountButton.interactable = false; + } + else + { + Alert(""); + CreateAccountButton.interactable = true; + + } + + }); + + NewPasswordInput.onValueChanged.AddListener(delegate + { + Match emailMatch = emailRegex.Match(NewEmailInput.text); + Match passwordMatch = passwordRegex.Match(NewPasswordInput.text); + + if (!emailMatch.Success) + { + Alert("Not a valid Email ID"); + CreateAccountButton.interactable = false; + } + else if (!passwordMatch.Success) + { + Alert("Your password must contain at least one digit number, Capital letter " + + "and one special character"); + CreateAccountButton.interactable = false; + } + else if (NewPasswordInput.text != NewRePasswordInput.text) + { + Alert("Passwords are not the same"); + CreateAccountButton.interactable = false; + } + else + { + Alert(""); + CreateAccountButton.interactable = true; + + } + }); + + NewRePasswordInput.onValueChanged.AddListener(delegate + { + Match emailMatch = emailRegex.Match(NewEmailInput.text); + Match passwordMatch = passwordRegex.Match(NewPasswordInput.text); + + if (!emailMatch.Success) + { + Alert("Not a valid Email ID"); + CreateAccountButton.interactable = false; + } + else if (!passwordMatch.Success) + { + Alert("Your Password should contain"); + CreateAccountButton.interactable = false; + } + else if (NewPasswordInput.text != NewRePasswordInput.text) + { + Alert("Passwords are not the same"); + CreateAccountButton.interactable = false; + } + else + { + Alert(""); + CreateAccountButton.interactable = true; + + } + }); + + ExistingEmailInput.onValueChanged.AddListener(delegate + { + if (ExistingEmailInput.text.Length > 0 && ExistingPasswordInput.text.Length > 0) + { + LoginButton.interactable = true; + } + }); + + ExistingPasswordInput.onValueChanged.AddListener(delegate + { + if (ExistingEmailInput.text.Length > 0 && ExistingPasswordInput.text.Length > 0) + { + LoginButton.interactable = true; + } + }); + + //Alert Box adds UI text ryt below Create Account Button to Alert the users + //Or give the user some kind of information like, invalid password, username, + //unable to connect to server etc. Remember to reset the Alert box to empty string. + void Alert(string text) + { + AlertBox.GetComponent().SetText(text); + } + + } + +} \ No newline at end of file diff --git a/Assets/Scripts/ButtonManager.cs.meta b/Assets/Scripts/Login.cs.meta similarity index 83% rename from Assets/Scripts/ButtonManager.cs.meta rename to Assets/Scripts/Login.cs.meta index bfdad2f..0b8fd5e 100644 --- a/Assets/Scripts/ButtonManager.cs.meta +++ b/Assets/Scripts/Login.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ce643a0894e26614e9f489ee904923cd +guid: 65a6393954a3bf84f92910cb548dee8d MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/Scripts/MainMenu.cs b/Assets/Scripts/MainMenu.cs new file mode 100644 index 0000000..046299f --- /dev/null +++ b/Assets/Scripts/MainMenu.cs @@ -0,0 +1,112 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using TMPro; + +using ARgorithmAPI; +using ARgorithmAPI.Models; + +public class MainMenu : MonoBehaviour +{ + public Button ConnectToCloudButton; + public Button ConnectToLocalServerButton; + public InputField ServerEndpointInput; + + //Fucntion to verify in case we get AUTH as a response from connect + //The LoginResponse.status can have following values + //FAILURE: Error has occured + //SUCCESS: Login successful + //RESET: Will have to login again + + void verify() + { + StartCoroutine( + APIClient.Instance.verify( + (r) => callback(r) + ) + ); + } + + void callback(LoginResponse c) + { + Debug.Log(c.status); + switch (c.status) + { + case "SUCCESS": + { + //Move to ARgorithm Cloud Menu + break; + } + default: + { + //Move to Login Menu + break; + } + } + } + + //Function to create connect to ARgorithm server + //The ConnectionResponse.status can have following values + //FAILURE: Error has occured + //AUTH: Connection has been estabilished and Authentication is required + //SUCCESS: Connection has been estabilished and Authentication is not required + + public void connect(string uri = "https://argorithm.el.r.appspot.com") + { + StartCoroutine( + APIClient.Instance.connect( + uri, + (r) => callback(r) + ) + ); + } + + void callback(ConnectionResponse c) + { + Debug.Log(c.status); + switch (c.status) + { + //Coroutine APIclient.Intance.verify + case "AUTH": + { + Debug.Log("AUTH switch"); + verify(); + break; + } + case "SUCCESS": + { + //Move to ARgorithm Cloud Menu + break; + } + default: + { + Debug.Log("Failure"); + //Alert the user for Error!! + break; + } + + } + } + + void Start() + { + //Should check whether the user is already logged into the App and or not. + //If logged in show ARgorithm Cloud Menu + //else show Login Menu + ConnectToCloudButton.onClick.AddListener(() => + { + Debug.Log("Connect to Cloud Server Button"); + connect(); + }); + + //Connects to Locally generated Server endpoint + //Takes "Enter server endpoint" inputfield value at + ConnectToLocalServerButton.onClick.AddListener(() => + { + Debug.Log("Connect to Local Server Button"); + Debug.Log(ServerEndpointInput.text); + connect(ServerEndpointInput.text); + }); + } +} diff --git a/Assets/Scripts/MainMenu.cs.meta b/Assets/Scripts/MainMenu.cs.meta new file mode 100644 index 0000000..1ce63ef --- /dev/null +++ b/Assets/Scripts/MainMenu.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 19c570d75f3d96f43866883546d497d5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: From 47a46034f0912b8f17a4ade0ee9da5637f5e449c Mon Sep 17 00:00:00 2001 From: Vin-dictive <34976549+Vin-dictive@users.noreply.github.com> Date: Wed, 3 Feb 2021 20:07:09 +0530 Subject: [PATCH 07/14] Added the APIClient Scripts Added the APIClient Scripts to their respective buttons --- Assets/Scenes/UI.unity | 228 +++++++++++++++++++++++++------------ Assets/Scripts/Login.cs | 48 ++++---- Assets/Scripts/MainMenu.cs | 57 ++++++---- 3 files changed, 218 insertions(+), 115 deletions(-) diff --git a/Assets/Scenes/UI.unity b/Assets/Scenes/UI.unity index 1022022..e33cb24 100644 --- a/Assets/Scenes/UI.unity +++ b/Assets/Scenes/UI.unity @@ -1771,9 +1771,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -736} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &220107823 @@ -2873,9 +2873,9 @@ RectTransform: m_Father: {fileID: 349355316} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 115.58856, y: -80.986206} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &406189721 @@ -3527,9 +3527,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -174} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &492046893 @@ -3667,9 +3667,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -379} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &498761542 @@ -3937,9 +3937,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -481} m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &559574885 @@ -4273,7 +4273,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &634758126 RectTransform: m_ObjectHideFlags: 0 @@ -4311,6 +4311,10 @@ MonoBehaviour: ConnectToCloudButton: {fileID: 1047745730} ConnectToLocalServerButton: {fileID: 985596071} ServerEndpointInput: {fileID: 869493777} + AlertBox: {fileID: 1031830846} + ArgorithmCloudMenu: {fileID: 122589840} + Mainmenu: {fileID: 634758125} + LoginMenu: {fileID: 1105685627} --- !u!1 &643908817 GameObject: m_ObjectHideFlags: 0 @@ -4417,9 +4421,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -645} m_SizeDelta: {x: 800, y: 52.261063} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &659324770 @@ -5084,9 +5088,9 @@ RectTransform: m_Father: {fileID: 1517534388} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -196.20204} m_SizeDelta: {x: 427.42902, y: 339.11258} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &816927181 @@ -5280,9 +5284,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -624.24646} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 700, y: 64.80564} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &869493777 @@ -5669,9 +5673,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -569} m_SizeDelta: {x: 800, y: 45.60411} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &945662814 @@ -5803,9 +5807,9 @@ RectTransform: m_Father: {fileID: 302988619} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -528.3501} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &965081360 @@ -5939,9 +5943,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -763.38934} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &985596071 @@ -6308,9 +6312,9 @@ RectTransform: m_Father: {fileID: 99337744} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 440.5, y: -80.986206} m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1025200737 @@ -6489,6 +6493,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1030412806} m_CullTransparentMesh: 0 +--- !u!1 &1031830846 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031830849} + - component: {fileID: 1031830848} + - component: {fileID: 1031830847} + m_Layer: 5 + m_Name: Alert Box + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1031830847 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.87843144, g: 0.24705884, b: 0.23137257, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 45 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1031830848 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_CullTransparentMesh: 0 +--- !u!224 &1031830849 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1370639141} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 675, y: 50} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1034961194 GameObject: m_ObjectHideFlags: 0 @@ -6672,9 +6754,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -282.58194} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1047745730 @@ -6881,9 +6963,9 @@ RectTransform: m_Father: {fileID: 349355316} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 440.5025, y: -80.986206} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1089734190 @@ -7077,7 +7159,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &1105685628 RectTransform: m_ObjectHideFlags: 0 @@ -7120,6 +7202,9 @@ MonoBehaviour: ExistingEmailInput: {fileID: 220107823} ExistingPasswordInput: {fileID: 1892302671} LoginButton: {fileID: 1925248411} + ArgorithmCloudMenu: {fileID: 122589840} + Mainmenu: {fileID: 634758125} + LoginMenu: {fileID: 1105685627} --- !u!1 &1125795916 GameObject: m_ObjectHideFlags: 0 @@ -7425,9 +7510,9 @@ RectTransform: m_Father: {fileID: 1517534388} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -409.23383} m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1195461814 @@ -8296,6 +8381,7 @@ RectTransform: - {fileID: 1793089057} - {fileID: 869493776} - {fileID: 985596070} + - {fileID: 1031830849} m_Father: {fileID: 634758126} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -9638,9 +9724,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -105.23095} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 700, y: 141.22183} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1562069060 @@ -10524,9 +10610,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -455.96277} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 700, y: 133.28156} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1793089058 @@ -10660,9 +10746,9 @@ RectTransform: m_Father: {fileID: 99337744} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115.5, y: -80.986206} m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1801051561 @@ -11411,9 +11497,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -838} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1892302671 @@ -11551,9 +11637,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -276} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1903245571 @@ -11824,9 +11910,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -941} m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1925248411 @@ -12070,9 +12156,9 @@ RectTransform: m_Father: {fileID: 302988619} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -280.54602} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 479.58746, y: 408.65707} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1946396354 @@ -12531,9 +12617,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -61} m_SizeDelta: {x: 800, y: 95.53175} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2031689196 diff --git a/Assets/Scripts/Login.cs b/Assets/Scripts/Login.cs index d490fee..6546b6e 100644 --- a/Assets/Scripts/Login.cs +++ b/Assets/Scripts/Login.cs @@ -21,14 +21,19 @@ public class Login : MonoBehaviour public InputField ExistingPasswordInput; public Button LoginButton; - - - //Function that use ARgorithm APIclient to create Account - //The CreationResponse.status can have following values - //FAILURE: Error has occured - //SUCCESS: User account has been created - //EXISTING: Email is already registered - //NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login + public GameObject ArgorithmCloudMenu; + public GameObject Mainmenu; + public GameObject LoginMenu; + + //Alert Box adds UI text ryt below Create Account Button to Alert the users + //Or give the user some kind of information like, invalid password, username, + //unable to connect to server etc. Remember to reset the Alert box to empty string. + void Alert(string text) + { + AlertBox.GetComponent().SetText(text); + } + + //Function that uses ARgorithm APIclient to create Account public void createAccount(string email,string password) { Debug.Log(email + " " + password); @@ -53,30 +58,28 @@ void callback(CreationResponse c) { //Account is created //Login the user with the credentials + login(NewEmailInput.text, NewPasswordInput.text); break; } case "EXISTING": { //Alert the user email is already registered //use login to login + Alert("Email Already Exists. Please Login."); break; } default : { //Navigate to Main Menu //Alert the user Try connecting to server again + LoginMenu.SetActive(false); + Mainmenu.SetActive(true); break; } } } - //Function that use ARgorithm APIclient to LOGIN to existing Account - //The LoginResponse.status can have following values - //FAILURE: Error has occured - //SUCCESS: Login successful - //NOT_ALLOWED: Authentication feature at endpoint is disabled, skip login - //NOT_FOUND: Email is not registered - //INCORRECT_PASSWORD: Password is incorrect + //Function that uses ARgorithm APIclient to LOGIN to existing Account public void login(string email, string password) { StartCoroutine( @@ -99,22 +102,28 @@ void callback(LoginResponse c) case "SUCCESS": { //Navigate to cloud Menu + ArgorithmCloudMenu.SetActive(true); + LoginMenu.SetActive(false); break; } case "NOT_FOUND": { //Alert Email was not found + Alert("Email was not found"); break; } case "INCORRECT_PASSWORD": { //Alert the user the password is incorrect + Alert("Incorrect Password"); break; } default: { //Navigate to Main Menu //Alert the user Try connecting to server again + Mainmenu.SetActive(true); + LoginMenu.SetActive(false); break; } @@ -259,14 +268,7 @@ void Start() } }); - //Alert Box adds UI text ryt below Create Account Button to Alert the users - //Or give the user some kind of information like, invalid password, username, - //unable to connect to server etc. Remember to reset the Alert box to empty string. - void Alert(string text) - { - AlertBox.GetComponent().SetText(text); - } - + } } \ No newline at end of file diff --git a/Assets/Scripts/MainMenu.cs b/Assets/Scripts/MainMenu.cs index 046299f..e521051 100644 --- a/Assets/Scripts/MainMenu.cs +++ b/Assets/Scripts/MainMenu.cs @@ -13,12 +13,21 @@ public class MainMenu : MonoBehaviour public Button ConnectToLocalServerButton; public InputField ServerEndpointInput; - //Fucntion to verify in case we get AUTH as a response from connect - //The LoginResponse.status can have following values - //FAILURE: Error has occured - //SUCCESS: Login successful - //RESET: Will have to login again + public GameObject ArgorithmCloudMenu; + public GameObject Mainmenu; + public GameObject LoginMenu; + public GameObject AlertBoxMain; + + //Alert Box adds UI text ryt below Connect to local server to Alert the users + //Or give the user some kind of information like, invalid password, username, + //unable to connect to server etc. Remember to reset the Alert box to empty string. + void AlertMain(string text) + { + AlertBoxMain.GetComponent().SetText(text); + } + + //Function to verify in case we get AUTH as a response from connect function void verify() { StartCoroutine( @@ -36,22 +45,21 @@ void callback(LoginResponse c) case "SUCCESS": { //Move to ARgorithm Cloud Menu + Mainmenu.SetActive(false); + ArgorithmCloudMenu.SetActive(true); break; } default: { //Move to Login Menu + Mainmenu.SetActive(false); + LoginMenu.SetActive(true); break; } } } - //Function to create connect to ARgorithm server - //The ConnectionResponse.status can have following values - //FAILURE: Error has occured - //AUTH: Connection has been estabilished and Authentication is required - //SUCCESS: Connection has been estabilished and Authentication is not required - + //Function to create session connection to ARgorithm server public void connect(string uri = "https://argorithm.el.r.appspot.com") { StartCoroutine( @@ -67,46 +75,53 @@ void callback(ConnectionResponse c) Debug.Log(c.status); switch (c.status) { - //Coroutine APIclient.Intance.verify case "AUTH": { - Debug.Log("AUTH switch"); verify(); break; } case "SUCCESS": { //Move to ARgorithm Cloud Menu + Mainmenu.SetActive(false); + ArgorithmCloudMenu.SetActive(true); break; } default: { - Debug.Log("Failure"); //Alert the user for Error!! + AlertMain("Connection Error"); break; } } } + + void Start() { - //Should check whether the user is already logged into the App and or not. - //If logged in show ARgorithm Cloud Menu - //else show Login Menu + //Makes Connect to local server button not interactable + ConnectToLocalServerButton.interactable = false; + ConnectToCloudButton.onClick.AddListener(() => { - Debug.Log("Connect to Cloud Server Button"); connect(); }); + //To verfiy the server endpoint value that was entered + ServerEndpointInput.onValueChanged.AddListener(delegate + { + ConnectToLocalServerButton.interactable = true; + }); + //Connects to Locally generated Server endpoint - //Takes "Enter server endpoint" inputfield value at + //Takes "Enter server endpoint" as input value ConnectToLocalServerButton.onClick.AddListener(() => { - Debug.Log("Connect to Local Server Button"); - Debug.Log(ServerEndpointInput.text); + //Debug.Log(ServerEndpointInput.text); connect(ServerEndpointInput.text); }); } + } From c6e97a5cd3f9c482d7eabdbdf3b9ddc3e945bb7a Mon Sep 17 00:00:00 2001 From: Alan P John Date: Fri, 5 Feb 2021 19:10:04 +0530 Subject: [PATCH 08/14] Migrated existing functiosn to JSON.net --- Assets/JsonDotNet.meta | 8 + Assets/JsonDotNet/Assemblies.meta | 9 + Assets/JsonDotNet/Assemblies/AOT.meta | 9 + .../Assemblies/AOT/Newtonsoft.Json.XML | 8015 ++++++++++++++++ .../Assemblies/AOT/Newtonsoft.Json.XML.meta | 8 + .../Assemblies/AOT/Newtonsoft.Json.dll | 3 + .../Assemblies/AOT/Newtonsoft.Json.dll.meta | 76 + Assets/JsonDotNet/Assemblies/Standalone.meta | 9 + .../Assemblies/Standalone/Newtonsoft.Json.XML | 8040 +++++++++++++++++ .../Standalone/Newtonsoft.Json.XML.meta | 8 + .../Assemblies/Standalone/Newtonsoft.Json.dll | 3 + .../Standalone/Newtonsoft.Json.dll.meta | 75 + Assets/JsonDotNet/Assemblies/Windows.meta | 9 + .../Assemblies/Windows/Newtonsoft.Json.XML | 7977 ++++++++++++++++ .../Windows/Newtonsoft.Json.XML.meta | 8 + .../Assemblies/Windows/Newtonsoft.Json.dll | 3 + .../Windows/Newtonsoft.Json.dll.meta | 67 + Assets/JsonDotNet/Documentation.meta | 9 + .../Json Net for Unity 2.0.1.pdf | Bin 0 -> 409872 bytes .../Json Net for Unity 2.0.1.pdf.meta | 8 + Assets/JsonDotNet/JsonDotNet201Source.zip | 3 + .../JsonDotNet/JsonDotNet201Source.zip.meta | 8 + Assets/JsonDotNet/link.xml | 7 + Assets/JsonDotNet/link.xml.meta | 6 + Assets/Scripts/ARgorithmAPI/APIClient.cs | 9 +- 25 files changed, 24374 insertions(+), 3 deletions(-) create mode 100644 Assets/JsonDotNet.meta create mode 100644 Assets/JsonDotNet/Assemblies.meta create mode 100644 Assets/JsonDotNet/Assemblies/AOT.meta create mode 100644 Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML create mode 100644 Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML.meta create mode 100644 Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll create mode 100644 Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll.meta create mode 100644 Assets/JsonDotNet/Assemblies/Standalone.meta create mode 100644 Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML create mode 100644 Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML.meta create mode 100644 Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll create mode 100644 Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll.meta create mode 100644 Assets/JsonDotNet/Assemblies/Windows.meta create mode 100644 Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML create mode 100644 Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML.meta create mode 100644 Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll create mode 100644 Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll.meta create mode 100644 Assets/JsonDotNet/Documentation.meta create mode 100644 Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf create mode 100644 Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf.meta create mode 100644 Assets/JsonDotNet/JsonDotNet201Source.zip create mode 100644 Assets/JsonDotNet/JsonDotNet201Source.zip.meta create mode 100644 Assets/JsonDotNet/link.xml create mode 100644 Assets/JsonDotNet/link.xml.meta diff --git a/Assets/JsonDotNet.meta b/Assets/JsonDotNet.meta new file mode 100644 index 0000000..4dbd8a9 --- /dev/null +++ b/Assets/JsonDotNet.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 816071af8622ae640a6e018f3896d2fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies.meta b/Assets/JsonDotNet/Assemblies.meta new file mode 100644 index 0000000..59ac16b --- /dev/null +++ b/Assets/JsonDotNet/Assemblies.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 577d9725f58264943855b8ac185531fe +folderAsset: yes +timeCreated: 1466788344 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/AOT.meta b/Assets/JsonDotNet/Assemblies/AOT.meta new file mode 100644 index 0000000..f9dba64 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/AOT.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 14f21d7a1e53a8c4e87b25526a7eb63c +folderAsset: yes +timeCreated: 1466788345 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML new file mode 100644 index 0000000..9a914af --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML @@ -0,0 +1,8015 @@ + + + + Newtonsoft.Json + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + + + + + + + + + + + + + + + + + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + true if integers are allowed; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. + + + + + Default Constructor - All Vector types enabled by default + + + + + Selectively enable Vector types + + Use for Vector2 objects + Use for Vector3 objects + Use for Vector4 objects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a paramatized constructor. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent a array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the to always serialize the member, and require the member has a value. + + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Specifies the settings used when loading JSON. + + + + + Gets or sets how JSON comments are handled when loading JSON. + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + + The JSON line info handling. + + + + Specifies the settings used when merging JSON. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how how null value properties are merged. + + How null value properties are merged. + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets the with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Represents a JSON array. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being writen. + + The token being writen. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents an abstract JSON token. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Represents a JSON property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Represents a trace writer that writes to the application's instances. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Contract details for a used by the . + + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + Used by to resolves a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only + happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different + results. When set to false it is highly recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the JsonConverter type described by the argument. + + The JsonConverter type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + Create a factory function that can be used to create instances of a JsonConverter described by the + argument type. The returned function can then be used to either invoke the converter's default ctor, or any + parameterized constructors by way of an object array. + + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Represents a method that constructs an object. + + The object type to create. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the converter. + + The of the converter. + + + + The parameter list to use when constructing the JsonConverter described by ConverterType. + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Initializes a new instance of the class. + + Type of the converter. + Parameter list to use when constructing the JsonConverter. Can be null. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Represents a collection of . + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Specifies the type of JSON token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + diff --git a/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML.meta b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML.meta new file mode 100644 index 0000000..0e2097f --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aadad8ac54f29e44583510294ac5c312 +timeCreated: 1466788355 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll new file mode 100644 index 0000000..352d72d --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d336648fe52520a662c548cea98f0948bb3eca823e7c5eb78c917de535d3d596 +size 399360 diff --git a/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll.meta b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll.meta new file mode 100644 index 0000000..ea21e1f --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6a3c684705042f345975d924f6983e36 +timeCreated: 1466788352 +licenseType: Store +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: x86 + Linux64: + enabled: 0 + settings: + CPU: x86_64 + OSXIntel: + enabled: 0 + settings: + CPU: AnyCPU + OSXIntel64: + enabled: 0 + settings: + CPU: AnyCPU + SamsungTV: + enabled: 1 + settings: + STV_MODEL: STANDARD_13 + Tizen: + enabled: 1 + settings: {} + WebGL: + enabled: 1 + settings: {} + Win: + enabled: 0 + settings: + CPU: AnyCPU + Win64: + enabled: 0 + settings: + CPU: AnyCPU + WindowsStoreApps: + enabled: 1 + settings: + CPU: AnyCPU + DontProcess: False + PlaceholderPath: Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll + SDK: AnySDK + ScriptingBackend: Il2Cpp + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Standalone.meta b/Assets/JsonDotNet/Assemblies/Standalone.meta new file mode 100644 index 0000000..242f110 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Standalone.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 01ef782d02bb1994dbe418b69432552b +folderAsset: yes +timeCreated: 1466788344 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML new file mode 100644 index 0000000..4dbcd9e --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML @@ -0,0 +1,8040 @@ + + + + Newtonsoft.Json + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + + + + + + + + + + + + + + + + + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + true if integers are allowed; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. + + + + + Default Constructor - All Vector types enabled by default + + + + + Selectively enable Vector types + + Use for Vector2 objects + Use for Vector3 objects + Use for Vector4 objects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a paramatized constructor. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent a array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the to always serialize the member, and require the member has a value. + + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Specifies the settings used when loading JSON. + + + + + Gets or sets how JSON comments are handled when loading JSON. + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + + The JSON line info handling. + + + + Specifies the settings used when merging JSON. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how how null value properties are merged. + + How null value properties are merged. + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets the with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Represents a JSON array. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being writen. + + The token being writen. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents an abstract JSON token. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Represents a JSON property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Represents a trace writer that writes to the application's instances. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Contract details for a used by the . + + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + Used by to resolves a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only + happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different + results. When set to false it is highly recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the JsonConverter type described by the argument. + + The JsonConverter type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + Create a factory function that can be used to create instances of a JsonConverter described by the + argument type. The returned function can then be used to either invoke the converter's default ctor, or any + parameterized constructors by way of an object array. + + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Represents a method that constructs an object. + + The object type to create. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the converter. + + The of the converter. + + + + The parameter list to use when constructing the JsonConverter described by ConverterType. + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Initializes a new instance of the class. + + Type of the converter. + Parameter list to use when constructing the JsonConverter. Can be null. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Represents a collection of . + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Specifies the type of JSON token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + diff --git a/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML.meta b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML.meta new file mode 100644 index 0000000..7623f10 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6807fedb8dcaf04682d2c84f0ab753f +timeCreated: 1466788355 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll new file mode 100644 index 0000000..ab58810 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830e019e1796b4eb5a8b0e72824972a70c4bd266428ecd1770e680bcb6861bdc +size 404480 diff --git a/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll.meta b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll.meta new file mode 100644 index 0000000..e130150 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll.meta @@ -0,0 +1,75 @@ +fileFormatVersion: 2 +guid: 17aef65a15b471f468b5fbeb4ff0c6a1 +timeCreated: 1466788349 +licenseType: Store +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel64: + enabled: 1 + settings: + CPU: AnyCPU + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + SamsungTV: + enabled: 0 + settings: + STV_MODEL: STANDARD_13 + Win: + enabled: 1 + settings: + CPU: AnyCPU + Win64: + enabled: 1 + settings: + CPU: AnyCPU + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + DontProcess: False + PlaceholderPath: + SDK: AnySDK + ScriptingBackend: Il2Cpp + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Windows.meta b/Assets/JsonDotNet/Assemblies/Windows.meta new file mode 100644 index 0000000..0c47db5 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Windows.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1418141139a6ac443b18cb05c0643a29 +folderAsset: yes +timeCreated: 1466788345 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML new file mode 100644 index 0000000..ed0eec5 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML @@ -0,0 +1,7977 @@ + + + + Newtonsoft.Json + + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a paramatized constructor. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + + + + + + + + + + + + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + + + + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + true if integers are allowed; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Json Converter for Vector2, Vector3 and Vector4. Only serializes x, y, (z) and (w) properties. + + + + + Default Constructor - All Vector types enabled by default + + + + + Selectively enable Vector types + + Use for Vector2 objects + Use for Vector3 objects + Use for Vector4 objects + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent a array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string. + Serialization will happen on a new thread. + + The object to serialize. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting. + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting and a collection of . + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Asynchronously populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous populate operation. + + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the converter. + + The of the converter. + + + + The parameter list to use when constructing the JsonConverter described by ConverterType. + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Initializes a new instance of the class. + + Type of the converter. + Parameter list to use when constructing the JsonConverter. Can be null. + + + + Represents a collection of . + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + The parameter list to use when constructing the JsonConverter described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Instructs the to always serialize the member, and require the member has a value. + + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Specifies the type of JSON token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Represents a JSON array. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Represents a JSON constructor. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets the with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Represents a JSON property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Specifies the settings used when loading JSON. + + + + + Gets or sets how JSON comments are handled when loading JSON. + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + + The JSON line info handling. + + + + Specifies the settings used when merging JSON. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how how null value properties are merged. + + How null value properties are merged. + + + + Represents an abstract JSON token. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being writen. + + The token being writen. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + Allows users to control class loading and mandate what class to load. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object + The type of the object the formatter creates a new instance of. + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Used by to resolves a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only + happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different + results. When set to false it is highly recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the JsonConverter type described by the argument. + + The JsonConverter type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + Create a factory function that can be used to create instances of a JsonConverter described by the + argument type. The returned function can then be used to either invoke the converter's default ctor, or any + parameterized constructors by way of an object array. + + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + Represents a method that constructs an object. + + The object type to create. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Specifies what messages to output for the class. + + + + + Output no tracing and debugging messages. + + + + + Output error-handling messages. + + + + + Output warnings and error-handling messages. + + + + + Output informational messages, warnings, and error-handling messages. + + + + + Output all debugging and tracing messages. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. + + + + + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly. + + + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly. + + + + diff --git a/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML.meta b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML.meta new file mode 100644 index 0000000..c4619d0 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36f7323c55864364d8bb88c736e4bca6 +timeCreated: 1466788355 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll new file mode 100644 index 0000000..f7bd5c8 --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc70a73412ae2ab1e024394bd1b1dc166cced14f859e589164647ef470735012 +size 426496 diff --git a/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll.meta b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll.meta new file mode 100644 index 0000000..b91baae --- /dev/null +++ b/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll.meta @@ -0,0 +1,67 @@ +fileFormatVersion: 2 +guid: 9b6ba260dada0ea4a871a42011f8b87d +timeCreated: 1466788355 +licenseType: Store +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: x86 + Linux64: + enabled: 0 + settings: + CPU: x86_64 + OSXIntel: + enabled: 0 + settings: + CPU: AnyCPU + OSXIntel64: + enabled: 0 + settings: + CPU: AnyCPU + SamsungTV: + enabled: 0 + settings: + STV_MODEL: STANDARD_13 + Win: + enabled: 0 + settings: + CPU: AnyCPU + Win64: + enabled: 0 + settings: + CPU: AnyCPU + WindowsStoreApps: + enabled: 1 + settings: + CPU: AnyCPU + DontProcess: False + PlaceholderPath: Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll + SDK: AnySDK + ScriptingBackend: DotNet + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Documentation.meta b/Assets/JsonDotNet/Documentation.meta new file mode 100644 index 0000000..cda8075 --- /dev/null +++ b/Assets/JsonDotNet/Documentation.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 76f828f47ce26cc43991113c6a39dbbf +folderAsset: yes +timeCreated: 1466010535 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf b/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f7651d40a35d0388ef2794ac3e83e561d331056 GIT binary patch literal 409872 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%0AB`Zfm5~%jD6=ze?sR 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⁡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

Au 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

#9G{ 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®YOoRp|o$>9$SyEFR_XuL;Y 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

6PifKah3<`5t$bT}3 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 V&|g_?x2WnU;s-iB{y$a!zW}%gIO+fZ literal 0 HcmV?d00001 diff --git a/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf.meta b/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf.meta new file mode 100644 index 0000000..e5d0257 --- /dev/null +++ b/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e7d9a07cc3f02a41a575406e7230846 +timeCreated: 1466788421 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/JsonDotNet201Source.zip b/Assets/JsonDotNet/JsonDotNet201Source.zip new file mode 100644 index 0000000..561d86b --- /dev/null +++ b/Assets/JsonDotNet/JsonDotNet201Source.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed984ab3fcd7647615ad472bfbf59cec3dc2742ae94307ecdbc6412047be17f1 +size 484362 diff --git a/Assets/JsonDotNet/JsonDotNet201Source.zip.meta b/Assets/JsonDotNet/JsonDotNet201Source.zip.meta new file mode 100644 index 0000000..c846be6 --- /dev/null +++ b/Assets/JsonDotNet/JsonDotNet201Source.zip.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a6f8c7c1ea72ce46831c5e1b6150d0c +timeCreated: 1466790933 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/JsonDotNet/link.xml b/Assets/JsonDotNet/link.xml new file mode 100644 index 0000000..cf188f8 --- /dev/null +++ b/Assets/JsonDotNet/link.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Assets/JsonDotNet/link.xml.meta b/Assets/JsonDotNet/link.xml.meta new file mode 100644 index 0000000..1e0e273 --- /dev/null +++ b/Assets/JsonDotNet/link.xml.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 06314f49bdda26043963578d60a0a7ee +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs index 602026e..e1aac85 100644 --- a/Assets/Scripts/ARgorithmAPI/APIClient.cs +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -4,6 +4,9 @@ using UnityEngine.Networking; using ARgorithmAPI.Models; using ARgorithmAPI.Singleton; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using Newtonsoft.Json.Converters; namespace ARgorithmAPI { @@ -52,7 +55,7 @@ The ConnectionResponse.status can have following values if(webRequest.isDone) { - ConnectionRawResponse response = JsonUtility.FromJson( + ConnectionRawResponse response = JsonConvert.DeserializeObject( webRequest.downloadHandler.text ); serverEndpoint = url; @@ -154,7 +157,7 @@ The LoginResponse.status can have following values switch (webRequest.responseCode) { case 200: - LoginRawResponse response = JsonUtility.FromJson( + LoginRawResponse response = JsonConvert.DeserializeObject( webRequest.downloadHandler.text ); token = response.access_token; @@ -207,7 +210,7 @@ Returns list of ARgorithms if(webRequest.isDone){ string value = "{\"items\":" + webRequest.downloadHandler.text + "}"; Debug.Log(value); - ARgorithmCollection response = JsonUtility.FromJson(value); + ARgorithmCollection response = JsonConvert.DeserializeObject(value); callback(response); } } From 5b35b740cf083b2f9cf97fdc95df0665e4e40427 Mon Sep 17 00:00:00 2001 From: Alan P John Date: Mon, 8 Feb 2021 21:49:44 +0530 Subject: [PATCH 09/14] ARgorithm Execution and StateSet Model implemented --- Assets/Scripts/ARgorithmAPI/APIClient.cs | 65 ++++++++++---------- Assets/Scripts/ARgorithmAPI/Models/Models.cs | 24 +++++++- 2 files changed, 55 insertions(+), 34 deletions(-) diff --git a/Assets/Scripts/ARgorithmAPI/APIClient.cs b/Assets/Scripts/ARgorithmAPI/APIClient.cs index e1aac85..04c6e6d 100644 --- a/Assets/Scripts/ARgorithmAPI/APIClient.cs +++ b/Assets/Scripts/ARgorithmAPI/APIClient.cs @@ -59,7 +59,6 @@ The ConnectionResponse.status can have following values webRequest.downloadHandler.text ); serverEndpoint = url; - Debug.Log(serverEndpoint); if (response.auth == "ENABLED") { callback(new ConnectionResponse { @@ -209,7 +208,6 @@ Returns list of ARgorithms if(webRequest.isDone){ string value = "{\"items\":" + webRequest.downloadHandler.text + "}"; - Debug.Log(value); ARgorithmCollection response = JsonConvert.DeserializeObject(value); callback(response); } @@ -264,39 +262,42 @@ The LoginResponse.status can have following values } } - /* - BELOW CODE IS ATTEMPT AT RUNNING ARGOTIHMS - IGNORE FOR NOW , WILL IMPLEMENT LATER - */ - - // public IEnumerator run(ExecutionRequest exec,System.Action callback){ - // string body = JsonUtility.ToJson(exec); - // Debug.Log(body); - // using(UnityWebRequest webRequest = UnityWebRequest.Post(serverEndpoint+"/argorithms/run",body)){ - // webRequest.SetRequestHeader("authorization","Bearer "+token); - // webRequest.SetRequestHeader("Content-Type","application/json"); - // yield return webRequest.SendWebRequest(); + public IEnumerator run(ExecutionRequest exec,System.Action callback){ + string body = JsonConvert.SerializeObject(exec); + + using(UnityWebRequest webRequest = new UnityWebRequest(serverEndpoint+"/argorithms/run","POST")){ + byte[] jsonToSend = new System.Text.UTF8Encoding().GetBytes(body); + webRequest.uploadHandler = (UploadHandler)new UploadHandlerRaw(jsonToSend); + webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer(); + webRequest.SetRequestHeader("authorization","Bearer "+token); + webRequest.SetRequestHeader("Content-Type","application/json"); + yield return webRequest.SendWebRequest(); - // if(webRequest.isNetworkError){ - // callback("FAILURE"); - // } + if(webRequest.isNetworkError){ + callback(new ExecutionResponse{ + status="FAILURE", + data={} + }); + } - // if (webRequest.isDone){ - // switch (webRequest.responseCode) - // { - // case 200: - // callback(webRequest.downloadHandler.text); - // break; + if (webRequest.isDone){ + switch (webRequest.responseCode) + { + case 200: + ExecutionResponse res = JsonConvert.DeserializeObject(webRequest.downloadHandler.text); + callback(res); + break; - // default: - // Debug.Log(webRequest.responseCode); - // Debug.Log(webRequest.downloadHandler.text); - // callback("TRY_AGAIN"); - // break; - // } - // } - // } - // } + default: + callback(new ExecutionResponse{ + status="FAILURE", + data={} + }); + break; + } + } + } + } } diff --git a/Assets/Scripts/ARgorithmAPI/Models/Models.cs b/Assets/Scripts/ARgorithmAPI/Models/Models.cs index e2fa5a2..fd9c417 100644 --- a/Assets/Scripts/ARgorithmAPI/Models/Models.cs +++ b/Assets/Scripts/ARgorithmAPI/Models/Models.cs @@ -2,6 +2,7 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; +using Newtonsoft.Json.Linq; namespace ARgorithmAPI.Models{ /* @@ -73,8 +74,8 @@ public class ARgorithm{ public string description; public string function; public string filename; - public object parameters; - public object example; + public JObject parameters; + public JObject example; } [Serializable] @@ -85,4 +86,23 @@ public class ARgorithmCollection{ public ARgorithm[] items; } + [Serializable] + public class ExecutionRequest{ + public string argorithmID; + public JObject parameters; + } + + [Serializable] + public class State{ + public string state_type; + public JObject state_def; + public string comments; + } + + [Serializable] + public class ExecutionResponse{ + public string status; + public List data; + } + } From c2926877420c37426e099c96d010015791a7e7d5 Mon Sep 17 00:00:00 2001 From: Vin-dictive <34976549+Vin-dictive@users.noreply.github.com> Date: Tue, 9 Feb 2021 10:50:04 +0530 Subject: [PATCH 10/14] Cloud menu implemented Dynamic list showing algos --- Assets/Prefabs/ARgorithmItem.prefab | 725 ++ Assets/Prefabs/ARgorithmItem.prefab.meta | 7 + Assets/Scenes/UI.unity | 8875 ++++++--------------- Assets/Scripts/ARTapToPlace.cs | 2 +- Assets/Scripts/ArgorithmCloudMenu.cs | 74 + Assets/Scripts/ArgorithmCloudMenu.cs.meta | 11 + 6 files changed, 3121 insertions(+), 6573 deletions(-) create mode 100644 Assets/Prefabs/ARgorithmItem.prefab create mode 100644 Assets/Prefabs/ARgorithmItem.prefab.meta create mode 100644 Assets/Scripts/ArgorithmCloudMenu.cs create mode 100644 Assets/Scripts/ArgorithmCloudMenu.cs.meta diff --git a/Assets/Prefabs/ARgorithmItem.prefab b/Assets/Prefabs/ARgorithmItem.prefab new file mode 100644 index 0000000..802eb0f --- /dev/null +++ b/Assets/Prefabs/ARgorithmItem.prefab @@ -0,0 +1,725 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8151022268133371576 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022268133371579} + - component: {fileID: 8151022268133371557} + - component: {fileID: 8151022268133371578} + m_Layer: 5 + m_Name: Algo Description text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022268133371579 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268133371576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8151022269085020510} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 17.2, y: -41.7} + m_SizeDelta: {x: 606.0645, y: 67.27164} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022268133371557 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268133371576} + m_CullTransparentMesh: 0 +--- !u!114 &8151022268133371578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268133371576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Lorem Ipsum + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 25 + m_fontSizeBase: 25 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &8151022268816196294 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022268816196289} + - component: {fileID: 8151022268816196290} + - component: {fileID: 8151022268816196291} + - component: {fileID: 8151022268816196288} + m_Layer: 5 + m_Name: report button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022268816196289 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268816196294} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8151022269085020510} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 202, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022268816196290 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268816196294} + m_CullTransparentMesh: 0 +--- !u!114 &8151022268816196291 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268816196294} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8151022268816196288 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022268816196294} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 8151022268816196291} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &8151022269085020511 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022269085020510} + - component: {fileID: 8151022269085020504} + - component: {fileID: 8151022269085020505} + m_Layer: 5 + m_Name: ARgorithmItem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022269085020510 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269085020511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8151022269553422379} + - {fileID: 8151022268133371579} + - {fileID: 8151022269695092979} + - {fileID: 8151022268816196289} + - {fileID: 8151022269393131380} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 702.7241, y: 192.99345} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022269085020504 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269085020511} + m_CullTransparentMesh: 0 +--- !u!114 &8151022269085020505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269085020511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8151022269393131381 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022269393131380} + - component: {fileID: 8151022269393131377} + - component: {fileID: 8151022269393131382} + - component: {fileID: 8151022269393131383} + m_Layer: 5 + m_Name: 'Execute button ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022269393131380 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269393131381} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8151022269085020510} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022269393131377 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269393131381} + m_CullTransparentMesh: 0 +--- !u!114 &8151022269393131382 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269393131381} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8151022269393131383 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269393131381} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 8151022269393131382} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 0} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 0} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!1 &8151022269553422376 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022269553422379} + - component: {fileID: 8151022269553422357} + - component: {fileID: 8151022269553422378} + m_Layer: 5 + m_Name: Algo text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022269553422379 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269553422376} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8151022269085020510} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -18.697, y: 44.061} + m_SizeDelta: {x: 362.60315, y: 57.877876} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022269553422357 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269553422376} + m_CullTransparentMesh: 0 +--- !u!114 &8151022269553422378 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269553422376} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Bubble Sort + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &8151022269695092976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8151022269695092979} + - component: {fileID: 8151022269695092988} + - component: {fileID: 8151022269695092989} + - component: {fileID: 8151022269695092978} + m_Layer: 5 + m_Name: Function button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8151022269695092979 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269695092976} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8151022269085020510} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -269, y: 44.061} + m_SizeDelta: {x: 101.14667, y: 57.87774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8151022269695092988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269695092976} + m_CullTransparentMesh: 0 +--- !u!114 &8151022269695092989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269695092976} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8151022269695092978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8151022269695092976} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 8151022269695092989} + m_OnClick: + m_PersistentCalls: + m_Calls: [] diff --git a/Assets/Prefabs/ARgorithmItem.prefab.meta b/Assets/Prefabs/ARgorithmItem.prefab.meta new file mode 100644 index 0000000..a53083e --- /dev/null +++ b/Assets/Prefabs/ARgorithmItem.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 607002d78c51db54caf52d041607483b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/UI.unity b/Assets/Scenes/UI.unity index e33cb24..9f0ba55 100644 --- a/Assets/Scenes/UI.unity +++ b/Assets/Scenes/UI.unity @@ -199,286 +199,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 27085773} m_CullTransparentMesh: 0 ---- !u!1 &31157939 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 31157940} - - component: {fileID: 31157943} - - component: {fileID: 31157942} - - component: {fileID: 31157941} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &31157940 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 31157939} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 243254550} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &31157941 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 31157939} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 31157942} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &31157942 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 31157939} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &31157943 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 31157939} - m_CullTransparentMesh: 0 ---- !u!1 &37069626 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 37069627} - - component: {fileID: 37069630} - - component: {fileID: 37069629} - - component: {fileID: 37069628} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &37069627 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 37069626} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2140321482} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &37069628 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 37069626} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 37069629} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &37069629 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 37069626} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &37069630 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 37069626} - m_CullTransparentMesh: 0 --- !u!1 &40919614 GameObject: m_ObjectHideFlags: 0 @@ -580,7 +300,7 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} ---- !u!1 &44290832 +--- !u!1 &50626293 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -588,151 +308,11 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 44290833} - - component: {fileID: 44290836} - - component: {fileID: 44290835} - - component: {fileID: 44290834} + - component: {fileID: 50626294} + - component: {fileID: 50626296} + - component: {fileID: 50626295} m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &44290833 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 44290832} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1790748918} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &44290834 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 44290832} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 44290835} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &44290835 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 44290832} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &44290836 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 44290832} - m_CullTransparentMesh: 0 ---- !u!1 &50626293 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 50626294} - - component: {fileID: 50626296} - - component: {fileID: 50626295} - m_Layer: 5 - m_Name: Placeholder + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -798,140 +378,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 50626293} m_CullTransparentMesh: 0 ---- !u!1 &54851828 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 54851829} - - component: {fileID: 54851831} - - component: {fileID: 54851830} - m_Layer: 5 - m_Name: Algo text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &54851829 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 54851828} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 243254550} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &54851830 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 54851828} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &54851831 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 54851828} - m_CullTransparentMesh: 0 --- !u!1 &89875818 GameObject: m_ObjectHideFlags: 0 @@ -1021,6 +467,7 @@ GameObject: - component: {fileID: 94032617} - component: {fileID: 94032619} - component: {fileID: 94032618} + - component: {fileID: 94032620} m_Layer: 5 m_Name: Upper Panel m_TagString: Untagged @@ -1039,8 +486,7 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 316562005} - - {fileID: 1698532735} + - {fileID: 2101123192} - {fileID: 272289824} m_Father: {fileID: 122589841} m_RootOrder: 1 @@ -1087,8 +533,33 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 94032616} m_CullTransparentMesh: 0 ---- !u!1 &99337743 -GameObject: +--- !u!114 &94032620 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94032616} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &99337743 +GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} @@ -1307,7 +778,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &122589841 RectTransform: m_ObjectHideFlags: 0 @@ -1773,7 +1244,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -736} + m_AnchoredPosition: {x: 400, y: -736.0037} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &220107823 @@ -2016,85 +1487,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 228616810} m_CullTransparentMesh: 0 ---- !u!1 &243254549 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 243254550} - - component: {fileID: 243254552} - - component: {fileID: 243254551} - m_Layer: 5 - m_Name: ARgorithm (6) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &243254550 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 243254549} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 54851829} - - {fileID: 2066809534} - - {fileID: 1643328703} - - {fileID: 1235994082} - - {fileID: 31157940} - m_Father: {fileID: 2126360451} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -1604.4574} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &243254551 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 243254549} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &243254552 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 243254549} - m_CullTransparentMesh: 0 --- !u!1 &272289823 GameObject: m_ObjectHideFlags: 0 @@ -2125,12 +1517,12 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 94032617} - m_RootOrder: 2 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 2.8, y: -239.75} - m_SizeDelta: {x: 519.8163, y: 160.67627} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 703.67737, y: 132.19073} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &272289825 MonoBehaviour: @@ -2179,7 +1571,7 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 51.55 + m_fontSize: 55.05 m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 1 @@ -2439,12 +1831,12 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 94032617} - m_RootOrder: 0 + m_Father: {fileID: 2101123192} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -70, y: -91} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &316562006 @@ -2527,140 +1919,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 316562004} m_CullTransparentMesh: 0 ---- !u!1 &331303109 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 331303110} - - component: {fileID: 331303112} - - component: {fileID: 331303111} - m_Layer: 5 - m_Name: Algo Description text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &331303110 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 331303109} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1125795917} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &331303111 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 331303109} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &331303112 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 331303109} - m_CullTransparentMesh: 0 --- !u!1 &349355315 GameObject: m_ObjectHideFlags: 0 @@ -2873,9 +2131,9 @@ RectTransform: m_Father: {fileID: 349355316} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115.58856, y: -80.986206} m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &406189721 @@ -2915,7 +2173,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 406189719} m_CullTransparentMesh: 0 ---- !u!1 &415820188 +--- !u!1 &429911368 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2923,179 +2181,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 415820189} - - component: {fileID: 415820191} - - component: {fileID: 415820190} + - component: {fileID: 429911369} + - component: {fileID: 429911371} + - component: {fileID: 429911370} m_Layer: 5 - m_Name: Algo Description text + m_Name: Image m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &415820189 +--- !u!224 &429911369 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 415820188} + m_GameObject: {fileID: 429911368} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1465842363} - m_RootOrder: 1 + m_Father: {fileID: 545860182} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7, y: 0} + m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &415820190 +--- !u!114 &429911370 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 415820188} + m_GameObject: {fileID: 429911368} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &415820191 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 415820188} - m_CullTransparentMesh: 0 ---- !u!1 &429911368 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 429911369} - - component: {fileID: 429911371} - - component: {fileID: 429911370} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &429911369 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 429911368} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 545860182} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -7, y: 0} - m_SizeDelta: {x: -63.935684, y: -107.59886} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &429911370 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 429911368} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -3160,9 +2284,9 @@ RectTransform: m_Father: {fileID: 2126360451} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -146.49673} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 702.7241, y: 192.99345} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &430925420 @@ -3358,7 +2482,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 443532002} m_CullTransparentMesh: 0 ---- !u!1 &484736723 +--- !u!1 &492046891 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3366,249 +2490,115 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 484736724} - - component: {fileID: 484736726} - - component: {fileID: 484736725} + - component: {fileID: 492046892} + - component: {fileID: 492046895} + - component: {fileID: 492046894} + - component: {fileID: 492046893} m_Layer: 5 - m_Name: Algo Description text + m_Name: Enter Email input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &484736724 +--- !u!224 &492046892 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 484736723} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 492046891} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2140321482} + m_Children: + - {fileID: 607283314} + - {fileID: 89875819} + m_Father: {fileID: 1864138857} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -174.05313} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &484736725 +--- !u!114 &492046893 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 484736723} + m_GameObject: {fileID: 492046891} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 492046894} + m_TextComponent: {fileID: 89875820} + m_Placeholder: {fileID: 607283315} + m_ContentType: 6 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 7 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 5 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &492046894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 492046891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &484736726 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 484736723} - m_CullTransparentMesh: 0 ---- !u!1 &492046891 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 492046892} - - component: {fileID: 492046895} - - component: {fileID: 492046894} - - component: {fileID: 492046893} - m_Layer: 5 - m_Name: Enter Email input - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &492046892 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 492046891} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 607283314} - - {fileID: 89875819} - m_Father: {fileID: 1864138857} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -174} - m_SizeDelta: {x: 625, y: 75} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &492046893 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 492046891} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 492046894} - m_TextComponent: {fileID: 89875820} - m_Placeholder: {fileID: 607283315} - m_ContentType: 6 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 7 - m_LineType: 0 - m_HideMobileInput: 0 - m_CharacterValidation: 5 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 0 - m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 ---- !u!114 &492046894 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 492046891} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -3669,7 +2659,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -379} + m_AnchoredPosition: {x: 400, y: -378.7483} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &498761542 @@ -3914,7 +2904,6 @@ GameObject: - component: {fileID: 559574888} - component: {fileID: 559574887} - component: {fileID: 559574886} - - component: {fileID: 559574885} m_Layer: 5 m_Name: Create Account Button m_TagString: Untagged @@ -3939,21 +2928,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -481} + m_AnchoredPosition: {x: 400, y: -481.09586} m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &559574885 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 559574883} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3e1e30c4fa1c1174387d87eb7b1f872e, type: 3} - m_Name: - m_EditorClassIdentifier: --- !u!114 &559574886 MonoBehaviour: m_ObjectHideFlags: 0 @@ -3997,7 +2974,7 @@ MonoBehaviour: m_OnClick: m_PersistentCalls: m_Calls: - - m_Target: {fileID: 559574885} + - m_Target: {fileID: 0} m_MethodName: OnGUI m_Mode: 1 m_Arguments: @@ -4273,7 +3250,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &634758126 RectTransform: m_ObjectHideFlags: 0 @@ -4311,10 +3288,10 @@ MonoBehaviour: ConnectToCloudButton: {fileID: 1047745730} ConnectToLocalServerButton: {fileID: 985596071} ServerEndpointInput: {fileID: 869493777} - AlertBox: {fileID: 1031830846} ArgorithmCloudMenu: {fileID: 122589840} Mainmenu: {fileID: 634758125} LoginMenu: {fileID: 1105685627} + AlertBoxMain: {fileID: 1031830846} --- !u!1 &643908817 GameObject: m_ObjectHideFlags: 0 @@ -4423,7 +3400,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -645} + m_AnchoredPosition: {x: 400, y: -645.02563} m_SizeDelta: {x: 800, y: 52.261063} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &659324770 @@ -4523,7 +3500,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 659324768} m_CullTransparentMesh: 0 ---- !u!1 &693243760 +--- !u!1 &734707776 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4531,211 +3508,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 693243761} - - component: {fileID: 693243763} - - component: {fileID: 693243762} + - component: {fileID: 734707777} + - component: {fileID: 734707780} + - component: {fileID: 734707779} + - component: {fileID: 734707778} m_Layer: 5 - m_Name: Algo text + m_Name: 'Execute button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &693243761 +--- !u!224 &734707777 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 693243760} + m_GameObject: {fileID: 734707776} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 2140321482} - m_RootOrder: 0 + m_Father: {fileID: 430925419} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchoredPosition: {x: 280.79, y: 44.061} + m_SizeDelta: {x: 78.79053, y: 57.877876} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &693243762 +--- !u!114 &734707778 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 693243760} + m_GameObject: {fileID: 734707776} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &693243763 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 693243760} - m_CullTransparentMesh: 0 ---- !u!1 &707674913 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 707674914} - - component: {fileID: 707674917} - - component: {fileID: 707674916} - - component: {fileID: 707674915} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &707674914 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 707674913} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1465842363} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &707674915 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 707674913} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 707674916} - m_OnClick: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 734707779} + m_OnClick: m_PersistentCalls: m_Calls: - m_Target: {fileID: 40919614} @@ -4760,13 +3603,13 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 1 m_CallState: 2 ---- !u!114 &707674916 +--- !u!114 &734707779 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 707674913} + m_GameObject: {fileID: 734707776} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -4789,15 +3632,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &707674917 +--- !u!222 &734707780 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 707674913} + m_GameObject: {fileID: 734707776} m_CullTransparentMesh: 0 ---- !u!1 &734707776 +--- !u!1 &751857360 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4805,43 +3648,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 734707777} - - component: {fileID: 734707780} - - component: {fileID: 734707779} - - component: {fileID: 734707778} + - component: {fileID: 751857361} + - component: {fileID: 751857364} + - component: {fileID: 751857363} + - component: {fileID: 751857362} m_Layer: 5 - m_Name: 'Execute button ' + m_Name: Play Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &734707777 +--- !u!224 &751857361 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 751857360} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 4 + m_Children: + - {fileID: 2070172344} + m_Father: {fileID: 197731359} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 162.52039, y: 222} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &734707778 +--- !u!114 &751857362 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 751857360} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -4874,52 +3718,30 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 734707779} + m_TargetGraphic: {fileID: 751857363} m_OnClick: m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &734707779 + m_Calls: [] +--- !u!114 &751857363 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 751857360} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -4929,15 +3751,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &734707780 +--- !u!222 &751857364 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} + m_GameObject: {fileID: 751857360} m_CullTransparentMesh: 0 ---- !u!1 &751857360 +--- !u!1 &816927179 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -4945,164 +3767,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 751857361} - - component: {fileID: 751857364} - - component: {fileID: 751857363} - - component: {fileID: 751857362} + - component: {fileID: 816927180} + - component: {fileID: 816927182} + - component: {fileID: 816927181} m_Layer: 5 - m_Name: Play Button + m_Name: Argorithm Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &751857361 +--- !u!224 &816927180 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} + m_GameObject: {fileID: 816927179} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2070172344} - m_Father: {fileID: 197731359} + m_Children: [] + m_Father: {fileID: 1517534388} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 162.52039, y: 222} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -196.20204} + m_SizeDelta: {x: 427.42902, y: 339.11258} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &751857362 +--- !u!114 &816927181 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} + m_GameObject: {fileID: 816927179} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 751857363} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &751857363 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &751857364 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751857360} - m_CullTransparentMesh: 0 ---- !u!1 &816927179 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 816927180} - - component: {fileID: 816927182} - - component: {fileID: 816927181} - m_Layer: 5 - m_Name: Argorithm Logo - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &816927180 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 816927179} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1517534388} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -196.20204} - m_SizeDelta: {x: 427.42902, y: 339.11258} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &816927181 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 816927179} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -5284,9 +3987,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -554.6897} m_SizeDelta: {x: 700, y: 64.80564} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &869493777 @@ -5389,124 +4092,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 869493775} m_CullTransparentMesh: 0 ---- !u!1 &889600393 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 889600394} - - component: {fileID: 889600397} - - component: {fileID: 889600396} - - component: {fileID: 889600395} - m_Layer: 5 - m_Name: report button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &889600394 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889600393} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1030412807} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &889600395 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889600393} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 889600396} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &889600396 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889600393} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &889600397 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889600393} - m_CullTransparentMesh: 0 --- !u!1 &901031709 GameObject: m_ObjectHideFlags: 0 @@ -5675,7 +4260,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -569} + m_AnchoredPosition: {x: 400, y: -568.7455} m_SizeDelta: {x: 800, y: 45.60411} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &945662814 @@ -5807,9 +4392,9 @@ RectTransform: m_Father: {fileID: 302988619} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -528.3501} m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &965081360 @@ -5943,9 +4528,9 @@ RectTransform: m_Father: {fileID: 1370639141} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -673.9592} m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &985596071 @@ -6028,7 +4613,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 985596069} m_CullTransparentMesh: 0 ---- !u!1 &1002891522 +--- !u!1 &1025200735 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6036,42 +4621,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1002891523} - - component: {fileID: 1002891525} - - component: {fileID: 1002891524} + - component: {fileID: 1025200736} + - component: {fileID: 1025200738} + - component: {fileID: 1025200737} m_Layer: 5 - m_Name: Algo text + m_Name: Github Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1002891523 +--- !u!224 &1025200736 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002891522} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1025200735} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1465842363} - m_RootOrder: 0 + m_Father: {fileID: 99337744} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 440.5025, y: -80.986206} + m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1002891524 +--- !u!114 &1025200737 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002891522} + m_GameObject: {fileID: 1025200735} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -6084,7 +4669,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort + m_text: Check out more on Github m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -6094,8 +4679,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -6112,15 +4697,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 36 + m_fontSize: 47.8 m_fontSizeBase: 36 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 + m_fontSizeMax: 62 m_fontStyle: 0 m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -6148,21 +4733,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} + m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1002891525 +--- !u!222 &1025200738 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002891522} + m_GameObject: {fileID: 1025200735} m_CullTransparentMesh: 0 ---- !u!1 &1005224808 +--- !u!1 &1031830846 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6170,10 +4755,119 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1005224809} - - component: {fileID: 1005224812} - - component: {fileID: 1005224811} - - component: {fileID: 1005224810} + - component: {fileID: 1031830849} + - component: {fileID: 1031830848} + - component: {fileID: 1031830847} + m_Layer: 5 + m_Name: Alert + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1031830847 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.87843144, g: 0.24705884, b: 0.23137257, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 45 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1031830848 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_CullTransparentMesh: 0 +--- !u!224 &1031830849 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031830846} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1370639141} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -785.8259} + m_SizeDelta: {x: 675, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1034961194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1034961195} + m_Layer: 0 + m_Name: PlacementIndicator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1034961195 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1034961194} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1412616174} + m_Father: {fileID: 1863966798} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1036681157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1036681158} + - component: {fileID: 1036681161} + - component: {fileID: 1036681160} + - component: {fileID: 1036681159} m_Layer: 5 m_Name: Function button m_TagString: Untagged @@ -6181,18 +4875,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1005224809 +--- !u!224 &1036681158 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1005224808} + m_GameObject: {fileID: 1036681157} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1125795917} + m_Father: {fileID: 430925419} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -6200,13 +4894,13 @@ RectTransform: m_AnchoredPosition: {x: -269, y: 44.061} m_SizeDelta: {x: 101.14667, y: 57.87774} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1005224810 +--- !u!114 &1036681159 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1005224808} + m_GameObject: {fileID: 1036681157} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -6239,17 +4933,17 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1005224811} + m_TargetGraphic: {fileID: 1036681160} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &1005224811 +--- !u!114 &1036681160 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1005224808} + m_GameObject: {fileID: 1036681157} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -6272,15 +4966,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1005224812 +--- !u!222 &1036681161 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1005224808} + m_GameObject: {fileID: 1036681157} m_CullTransparentMesh: 0 ---- !u!1 &1025200735 +--- !u!1 &1047745728 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6288,194 +4982,100 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1025200736} - - component: {fileID: 1025200738} - - component: {fileID: 1025200737} + - component: {fileID: 1047745729} + - component: {fileID: 1047745732} + - component: {fileID: 1047745731} + - component: {fileID: 1047745730} m_Layer: 5 - m_Name: Github Text + m_Name: Connect To Cloud Server Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1025200736 +--- !u!224 &1047745729 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1025200735} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1047745728} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 99337744} + m_Children: + - {fileID: 1094096148} + m_Father: {fileID: 1370639141} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 440.5, y: -80.986206} - m_SizeDelta: {x: 568.8229, y: 78.005035} + m_AnchoredPosition: {x: 400, y: -252.77191} + m_SizeDelta: {x: 700, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1025200737 +--- !u!114 &1047745730 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1025200735} + m_GameObject: {fileID: 1047745728} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1047745731} + m_OnClick: m_PersistentCalls: m_Calls: [] - m_text: Check out more on Github - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 47.8 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 62 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1025200738 -CanvasRenderer: +--- !u!114 &1047745731 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1025200735} - m_CullTransparentMesh: 0 ---- !u!1 &1030412806 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1030412807} - - component: {fileID: 1030412809} - - component: {fileID: 1030412808} - m_Layer: 5 - m_Name: ARgorithm (2) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1030412807 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1030412806} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1282966551} - - {fileID: 1989206155} - - {fileID: 1863628985} - - {fileID: 889600394} - - {fileID: 1481621310} - m_Father: {fileID: 2126360451} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -632.48364} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1030412808 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1030412806} + m_GameObject: {fileID: 1047745728} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -6485,15 +5085,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1030412809 +--- !u!222 &1047745732 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1030412806} + m_GameObject: {fileID: 1047745728} m_CullTransparentMesh: 0 ---- !u!1 &1031830846 +--- !u!1 &1082830710 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6501,108 +5101,91 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1031830849} - - component: {fileID: 1031830848} - - component: {fileID: 1031830847} - m_Layer: 5 - m_Name: Alert Box + - component: {fileID: 1082830711} + - component: {fileID: 1082830712} + m_Layer: 0 + m_Name: Directional Light m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!114 &1031830847 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1031830846} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.87843144, g: 0.24705884, b: 0.23137257, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 35 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 3 - m_MaxSize: 45 - m_Alignment: 1 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: ---- !u!222 &1031830848 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1031830846} - m_CullTransparentMesh: 0 ---- !u!224 &1031830849 -RectTransform: +--- !u!4 &1082830711 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1031830846} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1082830710} + m_LocalRotation: {x: 0.41860905, y: -0, z: -0, w: 0.9081665} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 675, y: 50} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1034961194 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1034961195} - m_Layer: 0 - m_Name: PlacementIndicator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1034961195 -Transform: + m_Father: {fileID: 1863966798} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 49.494003, y: 0, z: 0} +--- !u!108 &1082830712 +Light: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1034961194} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1412616174} - m_Father: {fileID: 1863966798} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1036681157 + m_GameObject: {fileID: 1082830710} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &1089734188 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6610,89 +5193,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1036681158} - - component: {fileID: 1036681161} - - component: {fileID: 1036681160} - - component: {fileID: 1036681159} + - component: {fileID: 1089734189} + - component: {fileID: 1089734191} + - component: {fileID: 1089734190} m_Layer: 5 - m_Name: Function button + m_Name: Github Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1036681158 +--- !u!224 &1089734189 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1089734188} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 2 + m_Father: {fileID: 349355316} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 440.5025, y: -80.986206} + m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1036681159 +--- !u!114 &1089734190 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} + m_GameObject: {fileID: 1089734188} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1036681160} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1036681160 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -6702,25 +5241,85 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1036681161 + m_text: Check out more on Github + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 47.8 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 62 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1089734191 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} + m_GameObject: {fileID: 1089734188} m_CullTransparentMesh: 0 ---- !u!1 &1047745728 +--- !u!1 &1094096147 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6728,118 +5327,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1047745729} - - component: {fileID: 1047745732} - - component: {fileID: 1047745731} - - component: {fileID: 1047745730} + - component: {fileID: 1094096148} + - component: {fileID: 1094096150} + - component: {fileID: 1094096149} m_Layer: 5 - m_Name: Connect To Cloud Server Button + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1047745729 +--- !u!224 &1094096148 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047745728} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1094096147} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1094096148} - m_Father: {fileID: 1370639141} - m_RootOrder: 1 + m_Children: [] + m_Father: {fileID: 1047745729} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 700, y: 75} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1047745730 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047745728} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1047745731} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1047745731 +--- !u!114 &1094096149 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047745728} + m_GameObject: {fileID: 1094096147} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1047745732 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 45 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 45 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Connect to Cloud Server +--- !u!222 &1094096150 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047745728} + m_GameObject: {fileID: 1094096147} m_CullTransparentMesh: 0 ---- !u!1 &1082830710 +--- !u!1 &1105685627 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6847,91 +5405,61 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1082830711} - - component: {fileID: 1082830712} - m_Layer: 0 - m_Name: Directional Light + - component: {fileID: 1105685628} + - component: {fileID: 1105685629} + m_Layer: 5 + m_Name: Login Menu m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1082830711 -Transform: + m_IsActive: 0 +--- !u!224 &1105685628 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1082830710} - m_LocalRotation: {x: 0.41860905, y: -0, z: -0, w: 0.9081665} + m_GameObject: {fileID: 1105685627} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1863966798} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 49.494003, y: 0, z: 0} ---- !u!108 &1082830712 -Light: + m_Children: + - {fileID: 1517534388} + - {fileID: 1182829122} + - {fileID: 99337744} + m_Father: {fileID: 40919618} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1105685629 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1082830710} + m_GameObject: {fileID: 1105685627} m_Enabled: 1 - serializedVersion: 10 - m_Type: 1 - m_Shape: 0 - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_InnerSpotAngle: 21.80208 - m_CookieSize: 10 - m_Shadows: - m_Type: 0 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - m_Bias: 0.05 - m_NormalBias: 0.4 - m_NearPlane: 0.2 - m_CullingMatrixOverride: - e00: 1 - e01: 0 - e02: 0 - e03: 0 - e10: 0 - e11: 1 - e12: 0 - e13: 0 - e20: 0 - e21: 0 - e22: 1 - e23: 0 - e30: 0 - e31: 0 - e32: 0 - e33: 1 - m_UseCullingMatrixOverride: 0 - m_Cookie: {fileID: 0} - m_DrawHalo: 0 - m_Flare: {fileID: 0} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingLayerMask: 1 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} - m_UseBoundingSphereOverride: 0 - m_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!1 &1089734188 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 65a6393954a3bf84f92910cb548dee8d, type: 3} + m_Name: + m_EditorClassIdentifier: + NewEmailInput: {fileID: 492046893} + NewPasswordInput: {fileID: 1903245571} + NewRePasswordInput: {fileID: 498761542} + CreateAccountButton: {fileID: 559574886} + AlertBox: {fileID: 945662812} + ExistingEmailInput: {fileID: 220107823} + ExistingPasswordInput: {fileID: 1892302671} + LoginButton: {fileID: 1925248411} + ArgorithmCloudMenu: {fileID: 122589840} + Mainmenu: {fileID: 634758125} + LoginMenu: {fileID: 1105685627} +--- !u!1 &1170989746 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6939,133 +5467,118 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1089734189} - - component: {fileID: 1089734191} - - component: {fileID: 1089734190} + - component: {fileID: 1170989747} + - component: {fileID: 1170989750} + - component: {fileID: 1170989749} + - component: {fileID: 1170989748} m_Layer: 5 - m_Name: Github Text + m_Name: 'Replay Button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1089734189 +--- !u!224 &1170989747 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1089734188} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1170989746} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 349355316} - m_RootOrder: 1 + m_Children: + - {fileID: 228616811} + m_Father: {fileID: 197731359} + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 568.8229, y: 78.005035} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -300, y: 0} + m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1089734190 +--- !u!114 &1170989748 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1089734188} + m_GameObject: {fileID: 1170989746} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1170989749} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1170989749 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1170989746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Check out more on Github - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 47.8 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 62 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 20.881342, y: 0, z: 4.806677, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1089734191 + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1170989750 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1089734188} + m_GameObject: {fileID: 1170989746} m_CullTransparentMesh: 0 ---- !u!1 &1094096147 +--- !u!1 &1182829121 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7073,77 +5586,74 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1094096148} - - component: {fileID: 1094096150} - - component: {fileID: 1094096149} + - component: {fileID: 1182829122} + - component: {fileID: 1182829124} + - component: {fileID: 1182829123} m_Layer: 5 - m_Name: Text + m_Name: Bottom half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1094096148 +--- !u!224 &1182829122 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1094096147} + m_GameObject: {fileID: 1182829121} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1047745729} - m_RootOrder: 0 + m_Children: + - {fileID: 1864138857} + m_Father: {fileID: 1105685628} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 0.70850015} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0.21520996} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1094096149 +--- !u!114 &1182829123 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1094096147} + m_GameObject: {fileID: 1182829121} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 45 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 4 - m_MaxSize: 45 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Connect to Cloud Server ---- !u!222 &1094096150 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1182829124 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1094096147} + m_GameObject: {fileID: 1182829121} m_CullTransparentMesh: 0 ---- !u!1 &1105685627 +--- !u!1 &1195461812 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7151,61 +5661,133 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1105685628} - - component: {fileID: 1105685629} + - component: {fileID: 1195461813} + - component: {fileID: 1195461815} + - component: {fileID: 1195461814} m_Layer: 5 - m_Name: Login Menu + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1105685628 + m_IsActive: 1 +--- !u!224 &1195461813 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1105685627} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1195461812} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1517534388} - - {fileID: 1182829122} - - {fileID: 99337744} - m_Father: {fileID: 40919618} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 1517534388} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -409.23383} + m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1105685629 +--- !u!114 &1195461814 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1105685627} + m_GameObject: {fileID: 1195461812} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 65a6393954a3bf84f92910cb548dee8d, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: - NewEmailInput: {fileID: 492046893} - NewPasswordInput: {fileID: 1903245571} - NewRePasswordInput: {fileID: 498761542} - CreateAccountButton: {fileID: 559574886} - AlertBox: {fileID: 945662812} - ExistingEmailInput: {fileID: 220107823} - ExistingPasswordInput: {fileID: 1892302671} - LoginButton: {fileID: 1925248411} - ArgorithmCloudMenu: {fileID: 122589840} - Mainmenu: {fileID: 634758125} - LoginMenu: {fileID: 1105685627} ---- !u!1 &1125795916 + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: ARgorithm + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 65.9 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1195461815 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195461812} + m_CullTransparentMesh: 0 +--- !u!1 &1301547206 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7213,78 +5795,57 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1125795917} - - component: {fileID: 1125795919} - - component: {fileID: 1125795918} - m_Layer: 5 - m_Name: ARgorithm (3) + - component: {fileID: 1301547207} + - component: {fileID: 1301547209} + - component: {fileID: 1301547208} + m_Layer: 0 + m_Name: AR Session m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1125795917 -RectTransform: +--- !u!4 &1301547207 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1125795916} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_GameObject: {fileID: 1301547206} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1461860776} - - {fileID: 331303110} - - {fileID: 1005224809} - - {fileID: 1502711692} - - {fileID: 1760909557} - m_Father: {fileID: 2126360451} - m_RootOrder: 3 + m_Children: [] + m_Father: {fileID: 1863966798} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -875.4771} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1125795918 +--- !u!114 &1301547208 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1125795916} + m_GameObject: {fileID: 1301547206} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: fa850fbd5b8aded44846f96e35f1a9f5, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1125795919 -CanvasRenderer: +--- !u!114 &1301547209 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1125795916} - m_CullTransparentMesh: 0 ---- !u!1 &1170989746 + m_GameObject: {fileID: 1301547206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3859a92a05d4f5d418cb6ca605290e74, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AttemptUpdate: 1 + m_MatchFrameRate: 1 +--- !u!1 &1308166558 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7292,118 +5853,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1170989747} - - component: {fileID: 1170989750} - - component: {fileID: 1170989749} - - component: {fileID: 1170989748} + - component: {fileID: 1308166559} + - component: {fileID: 1308166561} + - component: {fileID: 1308166560} m_Layer: 5 - m_Name: 'Replay Button ' + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1170989747 +--- !u!224 &1308166559 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1308166558} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 228616811} - m_Father: {fileID: 197731359} - m_RootOrder: 4 + m_Children: [] + m_Father: {fileID: 869493776} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -300, y: 0} - m_SizeDelta: {x: 115.64688, y: 172.00165} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1170989748 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1170989749} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1170989749 +--- !u!114 &1308166560 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 1308166558} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1170989750 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 40 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 45 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter Server Endpoint +--- !u!222 &1308166561 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1170989746} + m_GameObject: {fileID: 1308166558} m_CullTransparentMesh: 0 ---- !u!1 &1182829121 +--- !u!1 &1320106894 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7411,58 +5931,57 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1182829122} - - component: {fileID: 1182829124} - - component: {fileID: 1182829123} + - component: {fileID: 1320106895} + - component: {fileID: 1320106897} + - component: {fileID: 1320106896} m_Layer: 5 - m_Name: Bottom half Panel + m_Name: Image m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1182829122 +--- !u!224 &1320106895 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1182829121} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1320106894} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1864138857} - m_Father: {fileID: 1105685628} - m_RootOrder: 1 + m_Children: [] + m_Father: {fileID: 2030604666} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.70850015} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0.21520996} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.000011444092, y: 0} + m_SizeDelta: {x: -63.935684, y: -107.59886} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1182829123 +--- !u!114 &1320106896 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1182829121} + m_GameObject: {fileID: 1320106894} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 + m_Sprite: {fileID: 21300000, guid: baddaec353f24f2439c48c36076fce66, type: 3} + m_Type: 0 + m_PreserveAspect: 1 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -7470,15 +5989,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1182829124 +--- !u!222 &1320106897 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1182829121} + m_GameObject: {fileID: 1320106894} m_CullTransparentMesh: 0 ---- !u!1 &1195461812 +--- !u!1 &1338962668 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7486,133 +6005,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1195461813} - - component: {fileID: 1195461815} - - component: {fileID: 1195461814} + - component: {fileID: 1338962669} + - component: {fileID: 1338962671} + - component: {fileID: 1338962670} m_Layer: 5 - m_Name: Text (TMP) + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1195461813 +--- !u!224 &1338962669 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195461812} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1338962668} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1517534388} + m_Father: {fileID: 220107822} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -409.23383} - m_SizeDelta: {x: 304.13464, y: 86.95102} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1195461814 +--- !u!114 &1338962670 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195461812} + m_GameObject: {fileID: 1338962668} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: ARgorithm - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 65.9 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1195461815 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1338962671 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1195461812} + m_GameObject: {fileID: 1338962668} m_CullTransparentMesh: 0 ---- !u!1 &1235994081 +--- !u!1 &1360073882 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7620,101 +6083,59 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1235994082} - - component: {fileID: 1235994085} - - component: {fileID: 1235994084} - - component: {fileID: 1235994083} + - component: {fileID: 1360073883} + - component: {fileID: 1360073885} + - component: {fileID: 1360073884} m_Layer: 5 - m_Name: report button + m_Name: Upper Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1235994082 +--- !u!224 &1360073883 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1235994081} + m_GameObject: {fileID: 1360073882} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 243254550} - m_RootOrder: 3 + m_Children: + - {fileID: 1965552093} + - {fileID: 1736886231} + m_Father: {fileID: 102440318} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} + m_AnchorMin: {x: 0, y: 0.8856622} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 3.0998535} + m_SizeDelta: {x: 0, y: -6.1220703} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1235994083 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1235994081} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1235994084} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1235994084 +--- !u!114 &1360073884 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1235994081} + m_GameObject: {fileID: 1360073882} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -7722,15 +6143,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1235994085 +--- !u!222 &1360073885 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1235994081} + m_GameObject: {fileID: 1360073882} m_CullTransparentMesh: 0 ---- !u!1 &1282966550 +--- !u!1 &1370639140 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7738,133 +6159,105 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1282966551} - - component: {fileID: 1282966553} - - component: {fileID: 1282966552} + - component: {fileID: 1370639141} + - component: {fileID: 1370639143} + - component: {fileID: 1370639142} + - component: {fileID: 1370639144} m_Layer: 5 - m_Name: Algo text + m_Name: Bottom half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1282966551 +--- !u!224 &1370639141 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1282966550} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1370639140} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1030412807} - m_RootOrder: 0 + m_Children: + - {fileID: 1562069059} + - {fileID: 1047745729} + - {fileID: 1793089057} + - {fileID: 869493776} + - {fileID: 985596070} + - {fileID: 1031830849} + m_Father: {fileID: 634758126} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.6088244} + m_AnchoredPosition: {x: 0, y: 79} + m_SizeDelta: {x: 0, y: -165.66852} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1282966552 +--- !u!114 &1370639142 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1282966550} + m_GameObject: {fileID: 1370639140} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1282966553 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1370639143 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1282966550} + m_GameObject: {fileID: 1370639140} m_CullTransparentMesh: 0 ---- !u!1 &1301547206 +--- !u!114 &1370639144 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1370639140} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &1412616173 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7872,57 +6265,93 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1301547207} - - component: {fileID: 1301547209} - - component: {fileID: 1301547208} + - component: {fileID: 1412616174} + - component: {fileID: 1412616177} + - component: {fileID: 1412616176} + - component: {fileID: 1412616175} m_Layer: 0 - m_Name: AR Session + m_Name: Quad m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &1301547207 +--- !u!4 &1412616174 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} - m_LocalScale: {x: 1, y: 1, z: 1} + m_GameObject: {fileID: 1412616173} + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} m_Children: [] - m_Father: {fileID: 1863966798} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1301547208 -MonoBehaviour: + m_Father: {fileID: 1034961195} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!64 &1412616175 +MeshCollider: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} + m_GameObject: {fileID: 1412616173} + m_Material: {fileID: 0} + m_IsTrigger: 0 m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fa850fbd5b8aded44846f96e35f1a9f5, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!114 &1301547209 -MonoBehaviour: - m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &1412616176 +MeshRenderer: + m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301547206} + m_GameObject: {fileID: 1412616173} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3859a92a05d4f5d418cb6ca605290e74, type: 3} - m_Name: - m_EditorClassIdentifier: - m_AttemptUpdate: 1 - m_MatchFrameRate: 1 ---- !u!1 &1308166558 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: fddcee9100b331248b7af6925deef6b8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1412616177 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1412616173} + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1415852810 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -7930,77 +6359,124 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1308166559} - - component: {fileID: 1308166561} - - component: {fileID: 1308166560} - m_Layer: 5 - m_Name: Placeholder + - component: {fileID: 1415852811} + - component: {fileID: 1415852815} + - component: {fileID: 1415852814} + - component: {fileID: 1415852813} + - component: {fileID: 1415852812} + m_Layer: 0 + m_Name: AR Camera m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1308166559 -RectTransform: +--- !u!4 &1415852811 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1308166558} + m_GameObject: {fileID: 1415852810} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 869493776} + m_Father: {fileID: 1856774239} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1308166560 +--- !u!114 &1415852812 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1308166558} + m_GameObject: {fileID: 1415852810} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: 816b289ef451e094f9ae174fb4cf8db0, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 40 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 3 - m_MaxSize: 45 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Enter Server Endpoint ---- !u!222 &1308166561 -CanvasRenderer: + m_UseCustomMaterial: 0 + m_CustomMaterial: {fileID: 0} + m_UseCustomRendererAsset: 0 + m_CustomRendererAsset: {fileID: 0} +--- !u!114 &1415852813 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1308166558} - m_CullTransparentMesh: 0 ---- !u!1 &1320106894 + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4966719baa26e4b0e8231a24d9bd491a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FocusMode: 1 + m_LightEstimationMode: 0 +--- !u!114 &1415852814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5a2a9c34df4095f47b9ca8f975175f5b, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Device: 0 + m_PoseSource: 6 + m_PoseProviderComponent: {fileID: 0} + m_TrackingType: 0 + m_UpdateType: 0 + m_UseRelativeTransform: 0 +--- !u!20 &1415852815 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415852810} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 20 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!1 &1455531919 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8008,73 +6484,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1320106895} - - component: {fileID: 1320106897} - - component: {fileID: 1320106896} + - component: {fileID: 1455531920} + - component: {fileID: 1455531922} + - component: {fileID: 1455531921} m_Layer: 5 - m_Name: Image + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1320106895 +--- !u!224 &1455531920 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1455531919} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 2030604666} + m_Father: {fileID: 498761541} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.000011444092, y: 0} - m_SizeDelta: {x: -63.935684, y: -107.59886} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1320106896 +--- !u!114 &1455531921 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} + m_GameObject: {fileID: 1455531919} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: baddaec353f24f2439c48c36076fce66, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1320106897 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Re-enter Password +--- !u!222 &1455531922 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1320106894} + m_GameObject: {fileID: 1455531919} m_CullTransparentMesh: 0 ---- !u!1 &1327508911 +--- !u!1 &1517534387 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8082,101 +6562,85 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1327508912} - - component: {fileID: 1327508915} - - component: {fileID: 1327508914} - - component: {fileID: 1327508913} + - component: {fileID: 1517534388} + - component: {fileID: 1517534391} + - component: {fileID: 1517534390} + - component: {fileID: 1517534389} m_Layer: 5 - m_Name: report button + m_Name: Upper half Panel m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1327508912 +--- !u!224 &1517534388 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1327508911} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1517534387} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2140321482} - m_RootOrder: 3 + m_Children: + - {fileID: 816927180} + - {fileID: 1195461813} + m_Father: {fileID: 1105685628} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1327508913 + m_AnchorMin: {x: 0, y: 0.70850015} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: -0.00024414062} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1517534389 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1327508911} + m_GameObject: {fileID: 1517534387} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1327508914} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1327508914 + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &1517534390 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1327508911} + m_GameObject: {fileID: 1517534387} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 m_FillAmount: 1 @@ -8184,15 +6648,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1327508915 +--- !u!222 &1517534391 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1327508911} + m_GameObject: {fileID: 1517534387} m_CullTransparentMesh: 0 ---- !u!1 &1338962668 +--- !u!1 &1562069058 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8200,77 +6664,134 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1338962669} - - component: {fileID: 1338962671} - - component: {fileID: 1338962670} + - component: {fileID: 1562069059} + - component: {fileID: 1562069061} + - component: {fileID: 1562069060} m_Layer: 5 - m_Name: Text + m_Name: Text 1 m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1338962669 +--- !u!224 &1562069059 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338962668} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1562069058} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 220107822} - m_RootOrder: 1 + m_Father: {fileID: 1370639141} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -95.29427} + m_SizeDelta: {x: 700, y: 141.22183} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1338962670 +--- !u!114 &1562069060 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338962668} + m_GameObject: {fileID: 1562069058} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 35 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 3 - m_MaxSize: 50 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 0 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: ---- !u!222 &1338962671 + m_text: You can connect to ARgorithmCloud Server where you can find ARgorithms + made by many contributors and developers + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} + m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 37.8 + m_fontSizeBase: 60 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 60 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1562069061 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338962668} + m_GameObject: {fileID: 1562069058} m_CullTransparentMesh: 0 ---- !u!1 &1360073882 +--- !u!1 &1624275341 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -8278,2365 +6799,55 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1360073883} - - component: {fileID: 1360073885} - - component: {fileID: 1360073884} + - component: {fileID: 1624275342} + - component: {fileID: 1624275344} + - component: {fileID: 1624275343} m_Layer: 5 - m_Name: Upper Panel + m_Name: Algo Description text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1360073883 +--- !u!224 &1624275342 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} + m_GameObject: {fileID: 1624275341} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1965552093} - - {fileID: 1736886231} - m_Father: {fileID: 102440318} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 430925419} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.8856622} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 3.0998535} - m_SizeDelta: {x: 0, y: -6.1220703} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 50.878, y: -40.9} + m_SizeDelta: {x: 538.6153, y: 81.77768} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1360073884 +--- !u!114 &1624275343 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} + m_GameObject: {fileID: 1624275341} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1360073885 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1360073882} - m_CullTransparentMesh: 0 ---- !u!1 &1370639140 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1370639141} - - component: {fileID: 1370639143} - - component: {fileID: 1370639142} - - component: {fileID: 1370639144} - m_Layer: 5 - m_Name: Bottom half Panel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1370639141 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1562069059} - - {fileID: 1047745729} - - {fileID: 1793089057} - - {fileID: 869493776} - - {fileID: 985596070} - - {fileID: 1031830849} - m_Father: {fileID: 634758126} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.6088244} - m_AnchoredPosition: {x: 0, y: 79} - m_SizeDelta: {x: 0, y: -165.66852} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1370639142 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1370639143 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} - m_CullTransparentMesh: 0 ---- !u!114 &1370639144 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1370639140} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!1 &1388274820 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1388274821} - - component: {fileID: 1388274824} - - component: {fileID: 1388274823} - - component: {fileID: 1388274822} - m_Layer: 5 - m_Name: report button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1388274821 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1388274820} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1790748918} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1388274822 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1388274820} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1388274823} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1388274823 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1388274820} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1388274824 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1388274820} - m_CullTransparentMesh: 0 ---- !u!1 &1412616173 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1412616174} - - component: {fileID: 1412616177} - - component: {fileID: 1412616176} - - component: {fileID: 1412616175} - m_Layer: 0 - m_Name: Quad - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1412616174 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} - m_Children: [] - m_Father: {fileID: 1034961195} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} ---- !u!64 &1412616175 -MeshCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_Enabled: 1 - serializedVersion: 4 - m_Convex: 0 - m_CookingOptions: 30 - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!23 &1412616176 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 2100000, guid: fddcee9100b331248b7af6925deef6b8, type: 2} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 ---- !u!33 &1412616177 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1412616173} - m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} ---- !u!1 &1415852810 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1415852811} - - component: {fileID: 1415852815} - - component: {fileID: 1415852814} - - component: {fileID: 1415852813} - - component: {fileID: 1415852812} - m_Layer: 0 - m_Name: AR Camera - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1415852811 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1856774239} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1415852812 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 816b289ef451e094f9ae174fb4cf8db0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_UseCustomMaterial: 0 - m_CustomMaterial: {fileID: 0} - m_UseCustomRendererAsset: 0 - m_CustomRendererAsset: {fileID: 0} ---- !u!114 &1415852813 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4966719baa26e4b0e8231a24d9bd491a, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FocusMode: 1 - m_LightEstimationMode: 0 ---- !u!114 &1415852814 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5a2a9c34df4095f47b9ca8f975175f5b, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Device: 0 - m_PoseSource: 6 - m_PoseProviderComponent: {fileID: 0} - m_TrackingType: 0 - m_UpdateType: 0 - m_UseRelativeTransform: 0 ---- !u!20 &1415852815 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415852810} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} - m_projectionMatrixMode: 1 - m_GateFitMode: 2 - m_FOVAxisMode: 0 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.1 - far clip plane: 20 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 1 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 0 - m_OcclusionCulling: 1 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!1 &1427400217 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1427400218} - - component: {fileID: 1427400220} - - component: {fileID: 1427400219} - m_Layer: 5 - m_Name: Algo text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1427400218 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427400217} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1790748918} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1427400219 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427400217} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1427400220 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1427400217} - m_CullTransparentMesh: 0 ---- !u!1 &1441188054 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1441188055} - - component: {fileID: 1441188058} - - component: {fileID: 1441188057} - - component: {fileID: 1441188056} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1441188055 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1441188054} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2140321482} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1441188056 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1441188054} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1441188057} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1441188057 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1441188054} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1441188058 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1441188054} - m_CullTransparentMesh: 0 ---- !u!1 &1455531919 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1455531920} - - component: {fileID: 1455531922} - - component: {fileID: 1455531921} - m_Layer: 5 - m_Name: Placeholder - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1455531920 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1455531919} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 498761541} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1455531921 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1455531919} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 35 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 0 - m_MaxSize: 300 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Re-enter Password ---- !u!222 &1455531922 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1455531919} - m_CullTransparentMesh: 0 ---- !u!1 &1461860775 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1461860776} - - component: {fileID: 1461860778} - - component: {fileID: 1461860777} - m_Layer: 5 - m_Name: Algo text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1461860776 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461860775} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1125795917} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1461860777 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461860775} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1461860778 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461860775} - m_CullTransparentMesh: 0 ---- !u!1 &1465842362 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1465842363} - - component: {fileID: 1465842365} - - component: {fileID: 1465842364} - m_Layer: 5 - m_Name: ARgorithm (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1465842363 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1465842362} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1002891523} - - {fileID: 415820189} - - {fileID: 2036773261} - - {fileID: 1929296032} - - {fileID: 707674914} - m_Father: {fileID: 2126360451} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -389.4902} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1465842364 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1465842362} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1465842365 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1465842362} - m_CullTransparentMesh: 0 ---- !u!1 &1481621309 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1481621310} - - component: {fileID: 1481621313} - - component: {fileID: 1481621312} - - component: {fileID: 1481621311} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1481621310 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1481621309} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1030412807} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1481621311 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1481621309} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1481621312} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &1481621312 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1481621309} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1481621313 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1481621309} - m_CullTransparentMesh: 0 ---- !u!1 &1502711691 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1502711692} - - component: {fileID: 1502711695} - - component: {fileID: 1502711694} - - component: {fileID: 1502711693} - m_Layer: 5 - m_Name: report button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1502711692 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1502711691} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1125795917} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1502711693 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1502711691} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1502711694} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1502711694 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1502711691} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1502711695 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1502711691} - m_CullTransparentMesh: 0 ---- !u!1 &1517534387 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1517534388} - - component: {fileID: 1517534391} - - component: {fileID: 1517534390} - - component: {fileID: 1517534389} - m_Layer: 5 - m_Name: Upper half Panel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1517534388 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1517534387} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 816927180} - - {fileID: 1195461813} - m_Father: {fileID: 1105685628} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.70850015} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: -0.00024414062} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1517534389 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1517534387} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!114 &1517534390 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1517534387} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.12941177, g: 0.14509805, b: 0.16078432, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1517534391 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1517534387} - m_CullTransparentMesh: 0 ---- !u!1 &1562069058 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1562069059} - - component: {fileID: 1562069061} - - component: {fileID: 1562069060} - m_Layer: 5 - m_Name: Text 1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1562069059 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 700, y: 141.22183} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1562069060 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: You can connect to ARgorithmCloud Server where you can find ARgorithms - made by many contributors and developers - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 37.8 - m_fontSizeBase: 60 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 60 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 1024 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1562069061 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1562069058} - m_CullTransparentMesh: 0 ---- !u!1 &1624275341 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1624275342} - - component: {fileID: 1624275344} - - component: {fileID: 1624275343} - m_Layer: 5 - m_Name: Algo Description text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1624275342 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1624275343 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1624275344 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} - m_CullTransparentMesh: 0 ---- !u!1 &1643328702 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1643328703} - - component: {fileID: 1643328706} - - component: {fileID: 1643328705} - - component: {fileID: 1643328704} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1643328703 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1643328702} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 243254550} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1643328704 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1643328702} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1643328705} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1643328705 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1643328702} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1643328706 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1643328702} - m_CullTransparentMesh: 0 ---- !u!1 &1698532734 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1698532735} - - component: {fileID: 1698532738} - - component: {fileID: 1698532737} - - component: {fileID: 1698532736} - m_Layer: 5 - m_Name: Back Button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1698532735 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 94032617} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 70, y: -91} - m_SizeDelta: {x: 140, y: 70} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1698532736 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1698532737} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 634758125} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 - - m_Target: {fileID: 122589840} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1698532737 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 1 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1698532738 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1698532734} - m_CullTransparentMesh: 0 ---- !u!1 &1736886230 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1736886231} - - component: {fileID: 1736886234} - - component: {fileID: 1736886233} - - component: {fileID: 1736886232} - m_Layer: 5 - m_Name: Back Button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1736886231 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1360073883} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 70, y: -90.95} - m_SizeDelta: {x: 140, y: 70} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1736886232 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1736886233} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &1736886233 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1736886234 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1736886230} - m_CullTransparentMesh: 1 ---- !u!1 &1760909556 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1760909557} - - component: {fileID: 1760909560} - - component: {fileID: 1760909559} - - component: {fileID: 1760909558} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1760909557 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1760909556} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1125795917} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1760909558 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1760909556} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1760909559} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &1760909559 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1760909556} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1760909560 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1760909556} - m_CullTransparentMesh: 0 ---- !u!1 &1790748917 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1790748918} - - component: {fileID: 1790748920} - - component: {fileID: 1790748919} - m_Layer: 5 - m_Name: ARgorithm (4) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1790748918 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1790748917} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1427400218} - - {fileID: 1923391994} - - {fileID: 1847559669} - - {fileID: 1388274821} - - {fileID: 44290833} - m_Father: {fileID: 2126360451} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -1118.4706} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1790748919 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1790748917} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1790748920 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1790748917} - m_CullTransparentMesh: 0 ---- !u!1 &1793089056 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1793089057} - - component: {fileID: 1793089059} - - component: {fileID: 1793089058} - m_Layer: 5 - m_Name: Text 2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1793089057 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1370639141} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 700, y: 133.28156} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1793089058 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: ' - - Setup your own ARgorithm server and connect to it' + m_text: Lorem Ipsum m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -10646,8 +6857,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} + rgba: 4284176727 + m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -10664,15 +6875,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 37 - m_fontSizeBase: 60 + m_fontSize: 25 + m_fontSizeBase: 25 m_fontWeight: 400 - m_enableAutoSizing: 1 + m_enableAutoSizing: 0 m_fontSizeMin: 18 - m_fontSizeMax: 60 + m_fontSizeMax: 72 m_fontStyle: 0 m_HorizontalAlignment: 1 - m_VerticalAlignment: 1024 + m_VerticalAlignment: 256 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -10699,287 +6910,22 @@ MonoBehaviour: m_IsTextObjectScaleStatic: 0 m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1793089059 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1793089056} - m_CullTransparentMesh: 0 ---- !u!1 &1801051559 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1801051560} - - component: {fileID: 1801051562} - - component: {fileID: 1801051561} - m_Layer: 5 - m_Name: Github Logo - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1801051560 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801051559} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 99337744} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 115.5, y: -80.986206} - m_SizeDelta: {x: 81.005005, y: 94.17969} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1801051561 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801051559} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 86050509ddb6d02488e4efd702650fbc, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1801051562 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801051559} - m_CullTransparentMesh: 0 ---- !u!1 &1847559668 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1847559669} - - component: {fileID: 1847559672} - - component: {fileID: 1847559671} - - component: {fileID: 1847559670} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1847559669 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1847559668} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1790748918} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1847559670 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1847559668} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1847559671} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1847559671 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1847559668} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1847559672 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1847559668} - m_CullTransparentMesh: 0 ---- !u!1 &1856774238 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1856774239} - - component: {fileID: 1856774240} - - component: {fileID: 1856774242} - - component: {fileID: 1856774241} - m_Layer: 0 - m_Name: AR Session Origin - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1856774239 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1415852811} - m_Father: {fileID: 1863966798} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1856774240 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 520bb47c46cf8624fafb307b7d1b862a, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Camera: {fileID: 1415852815} ---- !u!114 &1856774241 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e1760703bbd54c04488a8d10600262ab, type: 3} - m_Name: - m_EditorClassIdentifier: - m_PlanePrefab: {fileID: 0} - m_DetectionMode: -1 ---- !u!114 &1856774242 -MonoBehaviour: + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1624275344 +CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1856774238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fa17d122634046b4a8e23048891fafc5, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &1863628984 + m_GameObject: {fileID: 1624275341} + m_CullTransparentMesh: 0 +--- !u!1 &1698532734 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -10987,43 +6933,43 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1863628985} - - component: {fileID: 1863628988} - - component: {fileID: 1863628987} - - component: {fileID: 1863628986} + - component: {fileID: 1698532735} + - component: {fileID: 1698532738} + - component: {fileID: 1698532737} + - component: {fileID: 1698532736} m_Layer: 5 - m_Name: Function button + m_Name: Back Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1863628985 +--- !u!224 &1698532735 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863628984} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1698532734} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1030412807} - m_RootOrder: 2 + m_Father: {fileID: 2101123192} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1863628986 +--- !u!114 &1698532736 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863628984} + m_GameObject: {fileID: 1698532734} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -11056,17 +7002,39 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1863628987} + m_TargetGraphic: {fileID: 1698532737} m_OnClick: m_PersistentCalls: - m_Calls: [] ---- !u!114 &1863628987 + m_Calls: + - m_Target: {fileID: 1105685627} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 122589840} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1698532737 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863628984} + m_GameObject: {fileID: 1698532734} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -11079,7 +7047,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -11087,53 +7055,17 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 - m_UseSpriteMesh: 0 + m_UseSpriteMesh: 1 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1863628988 +--- !u!222 &1698532738 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863628984} + m_GameObject: {fileID: 1698532734} m_CullTransparentMesh: 0 ---- !u!1 &1863966797 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1863966798} - m_Layer: 0 - m_Name: AR - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &1863966798 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1863966797} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 712.5339, y: 1812.7913, z: -5777.2505} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1082830711} - - {fileID: 1856774239} - - {fileID: 1301547207} - - {fileID: 102440318} - - {fileID: 1034961195} - - {fileID: 1882462156} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1864138856 +--- !u!1 &1736886230 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11141,70 +7073,139 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1864138857} - - component: {fileID: 1864138858} + - component: {fileID: 1736886231} + - component: {fileID: 1736886234} + - component: {fileID: 1736886233} + - component: {fileID: 1736886232} m_Layer: 5 - m_Name: Inputs + m_Name: Back Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1864138857 +--- !u!224 &1736886231 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1864138856} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1736886230} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2031689195} - - {fileID: 492046892} - - {fileID: 1903245570} - - {fileID: 498761541} - - {fileID: 559574884} - - {fileID: 945662813} - - {fileID: 659324769} - - {fileID: 220107822} - - {fileID: 1892302670} - - {fileID: 1925248409} - m_Father: {fileID: 1182829122} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 1360073883} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 1, y: 87} - m_SizeDelta: {x: 0, y: -173.43164} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 70, y: -90.95} + m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1864138858 +--- !u!114 &1736886232 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1864138856} + m_GameObject: {fileID: 1736886230} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 0 - m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 ---- !u!1 &1869106835 + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1736886233} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1863966797} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 40919614} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 +--- !u!114 &1736886233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1736886234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1736886230} + m_CullTransparentMesh: 1 +--- !u!1 &1793089056 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11212,42 +7213,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1869106836} - - component: {fileID: 1869106838} - - component: {fileID: 1869106837} + - component: {fileID: 1793089057} + - component: {fileID: 1793089059} + - component: {fileID: 1793089058} m_Layer: 5 - m_Name: Text (TMP) + m_Name: Text 2 m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1869106836 +--- !u!224 &1793089057 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1869106835} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1793089056} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 559574884} - m_RootOrder: 0 + m_Father: {fileID: 1370639141} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -0.00016784668, y: 0.5000305} - m_SizeDelta: {x: -0.00039672852, y: -1.000061} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -406.2794} + m_SizeDelta: {x: 700, y: 133.28156} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1869106837 +--- !u!114 &1793089058 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1869106835} + m_GameObject: {fileID: 1793089056} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -11260,7 +7261,9 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Create Account + m_text: ' + + Setup your own ARgorithm server and connect to it' m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -11270,8 +7273,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4281478698 - m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -11288,15 +7291,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 40 - m_fontSizeBase: 61 + m_fontSize: 37 + m_fontSizeBase: 60 m_fontWeight: 400 m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 40 + m_fontSizeMax: 60 m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 1024 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -11324,67 +7327,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} + m_margin: {x: 0, y: 0, z: 0, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1869106838 +--- !u!222 &1793089059 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1869106835} + m_GameObject: {fileID: 1793089056} m_CullTransparentMesh: 0 ---- !u!1 &1882462155 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1882462156} - - component: {fileID: 1882462157} - m_Layer: 0 - m_Name: Interaction - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1882462156 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1882462155} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1863966798} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1882462157 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1882462155} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 31e210162dd17ae4d91a84a38663f04d, type: 3} - m_Name: - m_EditorClassIdentifier: - placementIndicator: {fileID: 1034961194} - cube: {fileID: 39518484157928013, guid: 40a3700af4216614b8336f12ca407fad, type: 3} - CommentBox: {fileID: 578948184} ---- !u!1 &1889909106 +--- !u!1 &1801051559 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11392,77 +7349,73 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1889909107} - - component: {fileID: 1889909109} - - component: {fileID: 1889909108} + - component: {fileID: 1801051560} + - component: {fileID: 1801051562} + - component: {fileID: 1801051561} m_Layer: 5 - m_Name: Placeholder + m_Name: Github Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1889909107 +--- !u!224 &1801051560 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1889909106} + m_GameObject: {fileID: 1801051559} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 220107822} + m_Father: {fileID: 99337744} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115.58856, y: -80.986206} + m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1889909108 +--- !u!114 &1801051561 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1889909106} + m_GameObject: {fileID: 1801051559} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} - m_FontSize: 35 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 0 - m_MaxSize: 300 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Email ---- !u!222 &1889909109 + m_Sprite: {fileID: 21300000, guid: 86050509ddb6d02488e4efd702650fbc, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1801051562 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1889909106} + m_GameObject: {fileID: 1801051559} m_CullTransparentMesh: 0 ---- !u!1 &1892302669 +--- !u!1 &1856774238 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11470,139 +7423,72 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1892302670} - - component: {fileID: 1892302673} - - component: {fileID: 1892302672} - - component: {fileID: 1892302671} - m_Layer: 5 - m_Name: 'Exiting password input ' + - component: {fileID: 1856774239} + - component: {fileID: 1856774240} + - component: {fileID: 1856774242} + - component: {fileID: 1856774241} + m_Layer: 0 + m_Name: AR Session Origin m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1892302670 -RectTransform: +--- !u!4 &1856774239 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1892302669} + m_GameObject: {fileID: 1856774238} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: -712.5339, y: -1812.7913, z: 5777.25} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 440807164} - - {fileID: 179358028} - m_Father: {fileID: 1864138857} - m_RootOrder: 8 + - {fileID: 1415852811} + m_Father: {fileID: 1863966798} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -838} - m_SizeDelta: {x: 625, y: 75} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1892302671 +--- !u!114 &1856774240 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1892302669} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1892302672} - m_TextComponent: {fileID: 179358029} - m_Placeholder: {fileID: 440807165} - m_ContentType: 7 - m_InputType: 2 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 0 - m_CharacterValidation: 0 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 0 - m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 ---- !u!114 &1892302672 + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1856774238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 520bb47c46cf8624fafb307b7d1b862a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Camera: {fileID: 1415852815} +--- !u!114 &1856774241 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1892302669} + m_GameObject: {fileID: 1856774238} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: e1760703bbd54c04488a8d10600262ab, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1892302673 -CanvasRenderer: + m_PlanePrefab: {fileID: 0} + m_DetectionMode: -1 +--- !u!114 &1856774242 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1892302669} - m_CullTransparentMesh: 0 ---- !u!1 &1903245569 + m_GameObject: {fileID: 1856774238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fa17d122634046b4a8e23048891fafc5, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1863966797 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11610,139 +7496,106 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1903245570} - - component: {fileID: 1903245573} - - component: {fileID: 1903245572} - - component: {fileID: 1903245571} + - component: {fileID: 1863966798} + m_Layer: 0 + m_Name: AR + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1863966798 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1863966797} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 712.5339, y: 1812.7913, z: -5777.2505} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1082830711} + - {fileID: 1856774239} + - {fileID: 1301547207} + - {fileID: 102440318} + - {fileID: 1034961195} + - {fileID: 1882462156} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1864138856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1864138857} + - component: {fileID: 1864138858} m_Layer: 5 - m_Name: Enter password input + m_Name: Inputs m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1903245570 +--- !u!224 &1864138857 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903245569} + m_GameObject: {fileID: 1864138856} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 50626294} - - {fileID: 373145511} - m_Father: {fileID: 1864138857} - m_RootOrder: 2 + - {fileID: 2031689195} + - {fileID: 492046892} + - {fileID: 1903245570} + - {fileID: 498761541} + - {fileID: 559574884} + - {fileID: 945662813} + - {fileID: 659324769} + - {fileID: 220107822} + - {fileID: 1892302670} + - {fileID: 1925248409} + m_Father: {fileID: 1182829122} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -276} - m_SizeDelta: {x: 625, y: 75} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 1, y: 87} + m_SizeDelta: {x: 0, y: -173.43164} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1903245571 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903245569} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1903245572} - m_TextComponent: {fileID: 373145512} - m_Placeholder: {fileID: 50626295} - m_ContentType: 7 - m_InputType: 2 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 0 - m_CharacterValidation: 0 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 0 - m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 ---- !u!114 &1903245572 +--- !u!114 &1864138858 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903245569} + m_GameObject: {fileID: 1864138856} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1903245573 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903245569} - m_CullTransparentMesh: 0 ---- !u!1 &1923391993 + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &1869106835 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -11750,42 +7603,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1923391994} - - component: {fileID: 1923391996} - - component: {fileID: 1923391995} + - component: {fileID: 1869106836} + - component: {fileID: 1869106838} + - component: {fileID: 1869106837} m_Layer: 5 - m_Name: Algo Description text + m_Name: Text (TMP) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1923391994 +--- !u!224 &1869106836 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1923391993} + m_GameObject: {fileID: 1869106835} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1790748918} - m_RootOrder: 1 + m_Father: {fileID: 559574884} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -0.00016784668, y: 0.5000305} + m_SizeDelta: {x: -0.00039672852, y: -1.000061} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1923391995 +--- !u!114 &1869106837 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1923391993} + m_GameObject: {fileID: 1869106835} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -11798,7 +7651,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum + m_text: Create Account m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -11808,8 +7661,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + rgba: 4281478698 + m_fontColor: {r: 0.16470589, g: 0.18039216, b: 0.19607843, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -11826,15 +7679,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 + m_fontSize: 40 + m_fontSizeBase: 61 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 + m_fontSizeMax: 40 m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -11862,151 +7715,21 @@ MonoBehaviour: m_VertexBufferAutoSizeReduction: 1 m_useMaxVisibleDescender: 1 m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} + m_margin: {x: 0, y: 0, z: 2.3706055, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1923391996 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1923391993} - m_CullTransparentMesh: 0 ---- !u!1 &1925248408 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1925248409} - - component: {fileID: 1925248413} - - component: {fileID: 1925248412} - - component: {fileID: 1925248411} - m_Layer: 5 - m_Name: 'Login Button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1925248409 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1925248408} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 154305066} - m_Father: {fileID: 1864138857} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -941} - m_SizeDelta: {x: 325, y: 75} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1925248411 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1925248408} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1925248412} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 0} - m_MethodName: - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1925248412 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1925248408} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1925248413 +--- !u!222 &1869106838 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1925248408} + m_GameObject: {fileID: 1869106835} m_CullTransparentMesh: 0 ---- !u!1 &1929296031 +--- !u!1 &1882462155 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12014,117 +7737,45 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1929296032} - - component: {fileID: 1929296035} - - component: {fileID: 1929296034} - - component: {fileID: 1929296033} - m_Layer: 5 - m_Name: report button + - component: {fileID: 1882462156} + - component: {fileID: 1882462157} + m_Layer: 0 + m_Name: Interaction m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1929296032 -RectTransform: +--- !u!4 &1882462156 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1929296031} + m_GameObject: {fileID: 1882462155} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1465842363} - m_RootOrder: 3 + m_Father: {fileID: 1863966798} + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1929296033 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1929296031} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1929296034} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1929296034 +--- !u!114 &1882462157 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1929296031} + m_GameObject: {fileID: 1882462155} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 31e210162dd17ae4d91a84a38663f04d, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1929296035 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1929296031} - m_CullTransparentMesh: 0 ---- !u!1 &1946396352 + placementIndicator: {fileID: 1034961194} + cube: {fileID: 39518484157928013, guid: 40a3700af4216614b8336f12ca407fad, type: 3} + CommentBox: {fileID: 578948184} +--- !u!1 &1889909106 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12132,73 +7783,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1946396353} - - component: {fileID: 1946396355} - - component: {fileID: 1946396354} + - component: {fileID: 1889909107} + - component: {fileID: 1889909109} + - component: {fileID: 1889909108} m_Layer: 5 - m_Name: Argorithm Logo + m_Name: Placeholder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1946396353 +--- !u!224 &1889909107 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1946396352} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1889909106} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 302988619} + m_Father: {fileID: 220107822} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 479.58746, y: 408.65707} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1946396354 +--- !u!114 &1889909108 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1946396352} + m_GameObject: {fileID: 1889909106} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 847dabb8c701ad84eaafee0f316da804, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1946396355 + m_FontData: + m_Font: {fileID: 12800000, guid: fca3a554e5cc5614ca8e6e2ece4d4e33, type: 3} + m_FontSize: 35 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Email +--- !u!222 &1889909109 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1946396352} + m_GameObject: {fileID: 1889909106} m_CullTransparentMesh: 0 ---- !u!1 &1965552092 +--- !u!1 &1892302669 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12206,133 +7861,139 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1965552093} - - component: {fileID: 1965552095} - - component: {fileID: 1965552094} + - component: {fileID: 1892302670} + - component: {fileID: 1892302673} + - component: {fileID: 1892302672} + - component: {fileID: 1892302671} m_Layer: 5 - m_Name: ARgorithm name text + m_Name: 'Exiting password input ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1965552093 +--- !u!224 &1892302670 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1892302669} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1360073883} - m_RootOrder: 0 + m_Children: + - {fileID: 440807164} + - {fileID: 179358028} + m_Father: {fileID: 1864138857} + m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -838.3513} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1965552094 +--- !u!114 &1892302671 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} + m_GameObject: {fileID: 1892302669} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1892302672} + m_TextComponent: {fileID: 179358029} + m_Placeholder: {fileID: 440807165} + m_ContentType: 7 + m_InputType: 2 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &1892302672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892302669} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Blank Example - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 65 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 65 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1965552095 + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1892302673 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1965552092} + m_GameObject: {fileID: 1892302669} m_CullTransparentMesh: 0 ---- !u!1 &1989206154 +--- !u!1 &1903245569 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12340,133 +8001,139 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1989206155} - - component: {fileID: 1989206157} - - component: {fileID: 1989206156} + - component: {fileID: 1903245570} + - component: {fileID: 1903245573} + - component: {fileID: 1903245572} + - component: {fileID: 1903245571} m_Layer: 5 - m_Name: Algo Description text + m_Name: Enter password input m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1989206155 +--- !u!224 &1903245570 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1989206154} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1903245569} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1030412807} - m_RootOrder: 1 + m_Children: + - {fileID: 50626294} + - {fileID: 373145511} + m_Father: {fileID: 1864138857} + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -276.4007} + m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1989206156 +--- !u!114 &1903245571 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903245569} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1903245572} + m_TextComponent: {fileID: 373145512} + m_Placeholder: {fileID: 50626295} + m_ContentType: 7 + m_InputType: 2 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 1, g: 1, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &1903245572 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1989206154} + m_GameObject: {fileID: 1903245569} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.9764706, g: 0.25490198, b: 0.23529412, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1989206157 + m_Sprite: {fileID: 21300000, guid: f2d8ecb2d2e10324789efebb97de94ad, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1903245573 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1989206154} + m_GameObject: {fileID: 1903245569} m_CullTransparentMesh: 0 ---- !u!1 &2030604665 +--- !u!1 &1925248408 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12474,44 +8141,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2030604666} - - component: {fileID: 2030604669} - - component: {fileID: 2030604668} - - component: {fileID: 2030604667} + - component: {fileID: 1925248409} + - component: {fileID: 1925248413} + - component: {fileID: 1925248412} + - component: {fileID: 1925248411} m_Layer: 5 - m_Name: Menu Button + m_Name: 'Login Button ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2030604666 +--- !u!224 &1925248409 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} - m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} + m_GameObject: {fileID: 1925248408} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1320106895} - m_Father: {fileID: 197731359} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 300, y: 0} - m_SizeDelta: {x: 115.64688, y: 172.00165} + - {fileID: 154305066} + m_Father: {fileID: 1864138857} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -940.6989} + m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2030604667 +--- !u!114 &1925248411 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} + m_GameObject: {fileID: 1925248408} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -12544,30 +8211,115 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 2030604668} + m_TargetGraphic: {fileID: 1925248412} m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 0} + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1925248412 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.99607843, g: 0.7372549, b: 0.17254902, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] ---- !u!114 &2030604668 + m_Sprite: {fileID: 21300000, guid: ec7180e8ace7cae499f35851a9d5a97c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1925248413 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925248408} + m_CullTransparentMesh: 0 +--- !u!1 &1946396352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1946396353} + - component: {fileID: 1946396355} + - component: {fileID: 1946396354} + m_Layer: 5 + m_Name: Argorithm Logo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1946396353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946396352} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 302988619} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -280.54602} + m_SizeDelta: {x: 479.58746, y: 408.65707} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1946396354 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} + m_GameObject: {fileID: 1946396352} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} + m_Sprite: {fileID: 21300000, guid: 847dabb8c701ad84eaafee0f316da804, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -12577,15 +8329,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2030604669 +--- !u!222 &1946396355 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2030604665} + m_GameObject: {fileID: 1946396352} m_CullTransparentMesh: 0 ---- !u!1 &2031689194 +--- !u!1 &1965552092 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12593,42 +8345,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2031689195} - - component: {fileID: 2031689197} - - component: {fileID: 2031689196} + - component: {fileID: 1965552093} + - component: {fileID: 1965552095} + - component: {fileID: 1965552094} m_Layer: 5 - m_Name: Login Text title + m_Name: ARgorithm name text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2031689195 +--- !u!224 &1965552093 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2031689194} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1965552092} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1864138857} + m_Father: {fileID: 1360073883} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -61} - m_SizeDelta: {x: 800, y: 95.53175} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2031689196 +--- !u!114 &1965552094 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2031689194} + m_GameObject: {fileID: 1965552092} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -12641,10 +8393,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: 'Welcome to ARgorithm - - Create your account - and start exploring' + m_text: Blank Example m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -12672,15 +8421,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 35 + m_fontSize: 65 m_fontSizeBase: 36 m_fontWeight: 400 m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 35 - m_fontStyle: 1 + m_fontSizeMax: 65 + m_fontStyle: 0 m_HorizontalAlignment: 2 - m_VerticalAlignment: 1024 + m_VerticalAlignment: 512 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -12714,15 +8463,15 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &2031689197 +--- !u!222 &1965552095 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2031689194} + m_GameObject: {fileID: 1965552092} m_CullTransparentMesh: 0 ---- !u!1 &2036773260 +--- !u!1 &2030604665 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12730,43 +8479,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2036773261} - - component: {fileID: 2036773264} - - component: {fileID: 2036773263} - - component: {fileID: 2036773262} + - component: {fileID: 2030604666} + - component: {fileID: 2030604669} + - component: {fileID: 2030604668} + - component: {fileID: 2030604667} m_Layer: 5 - m_Name: Function button + m_Name: Menu Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2036773261 +--- !u!224 &2030604666 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2036773260} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 2030604665} + m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1465842363} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1320106895} + m_Father: {fileID: 197731359} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} + m_AnchoredPosition: {x: 300, y: 0} + m_SizeDelta: {x: 115.64688, y: 172.00165} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2036773262 +--- !u!114 &2030604667 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2036773260} + m_GameObject: {fileID: 2030604665} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -12799,30 +8549,30 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 2036773263} + m_TargetGraphic: {fileID: 2030604668} m_OnClick: m_PersistentCalls: m_Calls: [] ---- !u!114 &2036773263 +--- !u!114 &2030604668 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2036773260} + m_GameObject: {fileID: 2030604665} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.16470589, g: 0.18039216, b: 0.19607845, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} + m_Sprite: {fileID: 21300000, guid: 6ff7fe6b05e289c4584d859968947a8a, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -12832,15 +8582,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2036773264 +--- !u!222 &2030604669 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2036773260} + m_GameObject: {fileID: 2030604665} m_CullTransparentMesh: 0 ---- !u!1 &2066809533 +--- !u!1 &2031689194 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -12848,42 +8598,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2066809534} - - component: {fileID: 2066809536} - - component: {fileID: 2066809535} + - component: {fileID: 2031689195} + - component: {fileID: 2031689197} + - component: {fileID: 2031689196} m_Layer: 5 - m_Name: Algo Description text + m_Name: Login Text title m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2066809534 +--- !u!224 &2031689195 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2066809533} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 2031689194} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 243254550} - m_RootOrder: 1 + m_Father: {fileID: 1864138857} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -61.439667} + m_SizeDelta: {x: 800, y: 95.53175} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2066809535 +--- !u!114 &2031689196 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2066809533} + m_GameObject: {fileID: 2031689194} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} @@ -12896,7 +8646,10 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum + m_text: 'Welcome to ARgorithm + + Create your account + and start exploring' m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, @@ -12906,8 +8659,8 @@ MonoBehaviour: m_fontMaterials: [] m_fontColor32: serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} m_enableVertexGradient: 0 m_colorMode: 3 m_fontColorGradient: @@ -12924,15 +8677,15 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 + m_fontSize: 35 + m_fontSizeBase: 36 m_fontWeight: 400 - m_enableAutoSizing: 0 + m_enableAutoSizing: 1 m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 + m_fontSizeMax: 35 + m_fontStyle: 1 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 1024 m_textAlignment: 65535 m_characterSpacing: 0 m_wordSpacing: 0 @@ -12966,13 +8719,13 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &2066809536 +--- !u!222 &2031689197 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2066809533} + m_GameObject: {fileID: 2031689194} m_CullTransparentMesh: 0 --- !u!1 &2070172343 GameObject: @@ -13048,7 +8801,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2070172343} m_CullTransparentMesh: 0 ---- !u!1 &2126360450 +--- !u!1 &2101123191 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -13056,81 +8809,62 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2126360451} - - component: {fileID: 2126360452} - - component: {fileID: 2126360453} + - component: {fileID: 2101123192} + - component: {fileID: 2101123193} m_Layer: 5 - m_Name: Panel List Holder + m_Name: 'Buttons ' m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2126360451 +--- !u!224 &2101123192 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2126360450} + m_GameObject: {fileID: 2101123191} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 430925419} - - {fileID: 1465842363} - - {fileID: 1030412807} - - {fileID: 1125795917} - - {fileID: 1790748918} - - {fileID: 2140321482} - - {fileID: 243254550} - m_Father: {fileID: 122589841} + - {fileID: 1698532735} + - {fileID: 316562005} + m_Father: {fileID: 94032617} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -364.99994} - m_SizeDelta: {x: 800, y: 1279} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &2126360452 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2126360450} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3e7ed65ef8abdf64c8fe2f1b41a3fa84, type: 3} - m_Name: - m_EditorClassIdentifier: - easing: 0.5 ---- !u!114 &2126360453 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1257.5479, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2101123193 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2126360450} + m_GameObject: {fileID: 2101123191} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} m_Name: m_EditorClassIdentifier: m_Padding: m_Left: 0 m_Right: 0 - m_Top: 50 + m_Top: 0 m_Bottom: 0 - m_ChildAlignment: 1 - m_Spacing: 50 + m_ChildAlignment: 4 + m_Spacing: 0 m_ChildForceExpandWidth: 1 m_ChildForceExpandHeight: 1 m_ChildControlWidth: 0 m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 ---- !u!1 &2140321481 +--- !u!1 &2126360450 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -13138,74 +8872,71 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 2140321482} - - component: {fileID: 2140321484} - - component: {fileID: 2140321483} + - component: {fileID: 2126360451} + - component: {fileID: 2126360452} + - component: {fileID: 2126360453} m_Layer: 5 - m_Name: ARgorithm (5) + m_Name: Panel List Holder m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &2140321482 +--- !u!224 &2126360451 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2140321481} + m_GameObject: {fileID: 2126360450} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 693243761} - - {fileID: 484736724} - - {fileID: 1441188055} - - {fileID: 1327508912} - - {fileID: 37069627} - m_Father: {fileID: 2126360451} - m_RootOrder: 5 + - {fileID: 430925419} + m_Father: {fileID: 122589841} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -1361.464} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2140321483 + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -364.99994} + m_SizeDelta: {x: 800, y: 1279} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2126360452 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2140321481} + m_GameObject: {fileID: 2126360450} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 3e7ed65ef8abdf64c8fe2f1b41a3fa84, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2140321484 -CanvasRenderer: + easing: 0.5 +--- !u!114 &2126360453 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2140321481} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 2126360450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 50 + m_Bottom: 0 + m_ChildAlignment: 1 + m_Spacing: 50 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 diff --git a/Assets/Scripts/ARTapToPlace.cs b/Assets/Scripts/ARTapToPlace.cs index 685c2c8..adf752d 100644 --- a/Assets/Scripts/ARTapToPlace.cs +++ b/Assets/Scripts/ARTapToPlace.cs @@ -20,7 +20,7 @@ public class ARTapToPlace : MonoBehaviour public GameObject CommentBox; - void Start() + void onEnable() { aRRaycastManager = FindObjectOfType(); diff --git a/Assets/Scripts/ArgorithmCloudMenu.cs b/Assets/Scripts/ArgorithmCloudMenu.cs new file mode 100644 index 0000000..0dda8b2 --- /dev/null +++ b/Assets/Scripts/ArgorithmCloudMenu.cs @@ -0,0 +1,74 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using TMPro; + +// import library of ARgorithm +using ARgorithmAPI; +using ARgorithmAPI.Models; + + +public class ArgorithmCloudMenu : MonoBehaviour +{ + public GameObject ArgorithmUiObject; + public Transform PanelListHolderGameObject; + + // this function is called only when it is enabled or set to active + void OnEnable() + { + list(); + } + + //Function to list algorithms present for showing animations of them + public void list() + { + foreach (Transform child in PanelListHolderGameObject.transform) + { + GameObject.Destroy(child.gameObject); + } + + StartCoroutine( + APIClient.Instance.list( + (r) => callback(r) + ) + ); + } + + void callback(ARgorithmCollection lar) + { + var NoOfAlgos = 0; + //Instantiates the UI object(a prefab) dynamically to list the various algos + foreach (ARgorithm item in lar.items) + { + Debug.Log(item.argorithmID); + var Item = Instantiate(ArgorithmUiObject); + Item.transform.SetParent(PanelListHolderGameObject); + Item.transform.localScale = new Vector3(1, 1, 1); + var child = Item.transform.GetChild(0).gameObject; + child.GetComponent().SetText(item.argorithmID.ToUpper()); + + child = Item.transform.GetChild(1).gameObject; + child.GetComponent().SetText(item.description.ToUpper()); + + NoOfAlgos += 1; + } + + // If more than 5 algos are not present, fill up rest of the space with blank boxes + if (NoOfAlgos < 5) + { + for(int i = 0; i < 5 - NoOfAlgos; i++) + { + var Item = Instantiate(ArgorithmUiObject); + Item.transform.SetParent(PanelListHolderGameObject); + Item.transform.localScale = new Vector3(1, 1, 1); + + foreach (Transform child in Item.transform) + { + GameObject.Destroy(child.gameObject); + } + } + } + } + +} diff --git a/Assets/Scripts/ArgorithmCloudMenu.cs.meta b/Assets/Scripts/ArgorithmCloudMenu.cs.meta new file mode 100644 index 0000000..978503d --- /dev/null +++ b/Assets/Scripts/ArgorithmCloudMenu.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b0ef241050d0197459085356da141c50 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: From 0d773012e455fc0d90d13bea8e308ea3406ea3c2 Mon Sep 17 00:00:00 2001 From: Vin-dictive <34976549+Vin-dictive@users.noreply.github.com> Date: Tue, 9 Feb 2021 10:53:04 +0530 Subject: [PATCH 11/14] Meta Commit Meta commit --- Assets/{StreamingAssets/HiddenARCore.meta => Materials.meta} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Assets/{StreamingAssets/HiddenARCore.meta => Materials.meta} (77%) diff --git a/Assets/StreamingAssets/HiddenARCore.meta b/Assets/Materials.meta similarity index 77% rename from Assets/StreamingAssets/HiddenARCore.meta rename to Assets/Materials.meta index 8370373..400253e 100644 --- a/Assets/StreamingAssets/HiddenARCore.meta +++ b/Assets/Materials.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b0da004f1dd13ef42ab1a6340fbbcdf8 +guid: 121c89dbf01364344952b358274e0162 folderAsset: yes DefaultImporter: externalObjects: {} From 105ad187fe9ad0e84d9706ae44da37f6df4d9895 Mon Sep 17 00:00:00 2001 From: Vin-dictive <34976549+Vin-dictive@users.noreply.github.com> Date: Tue, 9 Feb 2021 11:36:18 +0530 Subject: [PATCH 12/14] Run button Yet to implement --- Assets/Scenes/UI.unity | 1340 +++++++++++--------------- Assets/Scripts/ArgorithmCloudMenu.cs | 28 +- 2 files changed, 588 insertions(+), 780 deletions(-) diff --git a/Assets/Scenes/UI.unity b/Assets/Scenes/UI.unity index 9f0ba55..1982b5e 100644 --- a/Assets/Scenes/UI.unity +++ b/Assets/Scenes/UI.unity @@ -290,8 +290,8 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 122589841} - - {fileID: 634758126} - {fileID: 1105685628} + - {fileID: 634758126} m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -772,13 +772,14 @@ GameObject: - component: {fileID: 122589841} - component: {fileID: 122589843} - component: {fileID: 122589842} + - component: {fileID: 122589844} m_Layer: 5 m_Name: ARgorithmCloud Menu m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &122589841 RectTransform: m_ObjectHideFlags: 0 @@ -837,6 +838,21 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 122589840} m_CullTransparentMesh: 0 +--- !u!114 &122589844 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 122589840} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b0ef241050d0197459085356da141c50, type: 3} + m_Name: + m_EditorClassIdentifier: + ArgorithmUiObject: {fileID: 8151022269085020511, guid: 607002d78c51db54caf52d041607483b, + type: 3} + PanelListHolderGameObject: {fileID: 2126360451} --- !u!1 &154305065 GameObject: m_ObjectHideFlags: 0 @@ -971,124 +987,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 154305065} m_CullTransparentMesh: 0 ---- !u!1 &161846771 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 161846772} - - component: {fileID: 161846775} - - component: {fileID: 161846774} - - component: {fileID: 161846773} - m_Layer: 5 - m_Name: report button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &161846772 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 202, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &161846773 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 161846774} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &161846774 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05b24e393e4e1c44083cc8ce139f25c9, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &161846775 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 161846771} - m_CullTransparentMesh: 0 --- !u!1 &179358027 GameObject: m_ObjectHideFlags: 0 @@ -1242,9 +1140,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -736.0037} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &220107823 @@ -1519,9 +1417,9 @@ RectTransform: m_Father: {fileID: 94032617} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -265.84113} m_SizeDelta: {x: 703.67737, y: 132.19073} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &272289825 @@ -1834,9 +1732,9 @@ RectTransform: m_Father: {fileID: 2101123192} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 943.1609, y: -50} m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &316562006 @@ -1881,7 +1779,18 @@ MonoBehaviour: m_TargetGraphic: {fileID: 316562007} m_OnClick: m_PersistentCalls: - m_Calls: [] + m_Calls: + - m_Target: {fileID: 122589844} + m_MethodName: list + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 --- !u!114 &316562007 MonoBehaviour: m_ObjectHideFlags: 0 @@ -2247,85 +2156,12 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429911368} m_CullTransparentMesh: 0 ---- !u!1 &430925418 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 430925419} - - component: {fileID: 430925421} - - component: {fileID: 430925420} - m_Layer: 5 - m_Name: ARgorithm - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &430925419 +--- !u!224 &430925419 stripped RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 901031710} - - {fileID: 1624275342} - - {fileID: 1036681158} - - {fileID: 161846772} - - {fileID: 734707777} - m_Father: {fileID: 2126360451} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 702.7241, y: 192.99345} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &430925420 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 7e139cb4bdabcf54e8ef50d97ddb752c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &430925421 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + m_PrefabInstance: {fileID: 8151022268675462965} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 430925418} - m_CullTransparentMesh: 0 --- !u!1 &440807163 GameObject: m_ObjectHideFlags: 0 @@ -2404,7 +2240,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 440807163} m_CullTransparentMesh: 0 ---- !u!1 &443532002 +--- !u!1 &443007841 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2412,58 +2248,198 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 443532003} - - component: {fileID: 443532005} - - component: {fileID: 443532004} + - component: {fileID: 443007842} + - component: {fileID: 443007845} + - component: {fileID: 443007844} + - component: {fileID: 443007843} m_Layer: 5 - m_Name: Text + m_Name: Back Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &443532003 +--- !u!224 &443007842 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 443532002} + m_GameObject: {fileID: 443007841} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 869493776} - m_RootOrder: 1 + m_Father: {fileID: 1400259429} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &443532004 +--- !u!114 &443007843 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 443532002} + m_GameObject: {fileID: 443007841} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 443007844} + m_OnClick: m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 12800000, guid: 7c9240ee84a61544dbf2b1b66bf937ba, type: 3} - m_FontSize: 40 - m_FontStyle: 0 + m_Calls: + - m_Target: {fileID: 634758125} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 1105685627} + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &443007844 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 443007841} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cd1d1e5baa7622d47954ee4d2ca990d7, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 1 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &443007845 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 443007841} + m_CullTransparentMesh: 0 +--- !u!1 &443532002 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 443532003} + - component: {fileID: 443532005} + - component: {fileID: 443532004} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &443532003 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 443532002} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 869493776} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &443532004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 443532002} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.97647065, g: 0.25490198, b: 0.23529413, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 7c9240ee84a61544dbf2b1b66bf937ba, type: 3} + m_FontSize: 40 + m_FontStyle: 0 m_BestFit: 0 m_MinSize: 4 m_MaxSize: 40 @@ -2517,9 +2493,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -174.05313} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &492046893 @@ -2657,9 +2633,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -378.7483} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &498761542 @@ -2926,9 +2902,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -481.09586} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &559574886 @@ -3266,7 +3242,7 @@ RectTransform: - {fileID: 1370639141} - {fileID: 349355316} m_Father: {fileID: 40919618} - m_RootOrder: 1 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} @@ -3398,9 +3374,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -645.02563} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 800, y: 52.261063} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &659324770 @@ -3500,146 +3476,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 659324768} m_CullTransparentMesh: 0 ---- !u!1 &734707776 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 734707777} - - component: {fileID: 734707780} - - component: {fileID: 734707779} - - component: {fileID: 734707778} - m_Layer: 5 - m_Name: 'Execute button ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &734707777 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 280.79, y: 44.061} - m_SizeDelta: {x: 78.79053, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &734707778 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 734707779} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 40919614} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - m_Target: {fileID: 1863966797} - m_MethodName: SetActive - m_Mode: 6 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 1 - m_CallState: 2 ---- !u!114 &734707779 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 8b3227c6e9ce1af4e96772b5b1286a5f, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &734707780 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 734707776} - m_CullTransparentMesh: 0 --- !u!1 &751857360 GameObject: m_ObjectHideFlags: 0 @@ -3791,9 +3627,9 @@ RectTransform: m_Father: {fileID: 1517534388} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -196.20204} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 427.42902, y: 339.11258} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &816927181 @@ -4092,140 +3928,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 869493775} m_CullTransparentMesh: 0 ---- !u!1 &901031709 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 901031710} - - component: {fileID: 901031712} - - component: {fileID: 901031711} - m_Layer: 5 - m_Name: Algo text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &901031710 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -18.697, y: 44.061} - m_SizeDelta: {x: 362.60315, y: 57.877876} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &901031711 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Bubble Sort - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 36 - m_fontSizeBase: 36 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &901031712 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 901031709} - m_CullTransparentMesh: 0 --- !u!1 &945662812 GameObject: m_ObjectHideFlags: 0 @@ -4258,9 +3960,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -568.7455} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 800, y: 45.60411} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &945662814 @@ -4645,9 +4347,9 @@ RectTransform: m_Father: {fileID: 99337744} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 440.5025, y: -80.986206} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 568.8229, y: 78.005035} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1025200737 @@ -4836,144 +4538,26 @@ GameObject: - component: {fileID: 1034961195} m_Layer: 0 m_Name: PlacementIndicator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1034961195 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1034961194} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1412616174} - m_Father: {fileID: 1863966798} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1036681157 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1036681158} - - component: {fileID: 1036681161} - - component: {fileID: 1036681160} - - component: {fileID: 1036681159} - m_Layer: 5 - m_Name: Function button - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1036681158 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 430925419} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -269, y: 44.061} - m_SizeDelta: {x: 101.14667, y: 57.87774} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1036681159 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1036681160} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1036681160 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d523e01a3e08de64aa6265987d8c8a75, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1036681161 -CanvasRenderer: + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1034961195 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1036681157} - m_CullTransparentMesh: 0 + m_GameObject: {fileID: 1034961194} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1412616174} + m_Father: {fileID: 1863966798} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1047745728 GameObject: m_ObjectHideFlags: 0 @@ -5413,7 +4997,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &1105685628 RectTransform: m_ObjectHideFlags: 0 @@ -5428,8 +5012,9 @@ RectTransform: - {fileID: 1517534388} - {fileID: 1182829122} - {fileID: 99337744} + - {fileID: 1400259429} m_Father: {fileID: 40919618} - m_RootOrder: 2 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} @@ -5685,9 +5270,9 @@ RectTransform: m_Father: {fileID: 1517534388} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -409.23383} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 304.13464, y: 86.95102} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1195461814 @@ -6257,6 +5842,69 @@ MonoBehaviour: m_ChildControlHeight: 0 m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 +--- !u!1 &1400259428 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1400259429} + - component: {fileID: 1400259430} + m_Layer: 5 + m_Name: 'Top Buttons ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1400259429 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1400259428} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 443007842} + - {fileID: 1654888402} + m_Father: {fileID: 1105685628} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -83.078125} + m_SizeDelta: {x: 1257.5479, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1400259430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1400259428} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 --- !u!1 &1412616173 GameObject: m_ObjectHideFlags: 0 @@ -6791,7 +6439,7 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1562069058} m_CullTransparentMesh: 0 ---- !u!1 &1624275341 +--- !u!1 &1654888401 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -6799,131 +6447,126 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1624275342} - - component: {fileID: 1624275344} - - component: {fileID: 1624275343} + - component: {fileID: 1654888402} + - component: {fileID: 1654888405} + - component: {fileID: 1654888404} + - component: {fileID: 1654888403} m_Layer: 5 - m_Name: Algo Description text + m_Name: Refresh Button m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1624275342 +--- !u!224 &1654888402 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1654888401} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 430925419} + m_Father: {fileID: 1400259429} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50.878, y: -40.9} - m_SizeDelta: {x: 538.6153, y: 81.77768} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1624275343 +--- !u!114 &1654888403 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} + m_GameObject: {fileID: 1654888401} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1654888404} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 122589844} + m_MethodName: list + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1654888404 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1654888401} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 0} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Lorem Ipsum - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: db8e5d852fafb3f4ab85b612e8d470ce, type: 2} - m_sharedMaterial: {fileID: 8963545961531463164, guid: db8e5d852fafb3f4ab85b612e8d470ce, - type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284176727 - m_fontColor: {r: 0.34117648, g: 0.34901962, b: 0.35686275, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 25 - m_fontSizeBase: 25 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 1 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!222 &1624275344 + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1654888405 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1624275341} + m_GameObject: {fileID: 1654888401} m_CullTransparentMesh: 0 --- !u!1 &1698532734 GameObject: @@ -6958,9 +6601,9 @@ RectTransform: m_Father: {fileID: 2101123192} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 314.38696, y: -50} m_SizeDelta: {x: 140, y: 70} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1698532736 @@ -7373,9 +7016,9 @@ RectTransform: m_Father: {fileID: 99337744} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 115.58856, y: -80.986206} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 81.005005, y: 94.17969} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1801051561 @@ -7888,9 +7531,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -838.3513} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1892302671 @@ -8028,9 +7671,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -276.4007} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 625, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1903245571 @@ -8167,9 +7810,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -940.6989} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 325, y: 75} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1925248411 @@ -8622,9 +8265,9 @@ RectTransform: m_Father: {fileID: 1864138857} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 400, y: -61.439667} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 800, y: 95.53175} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2031689196 @@ -8834,9 +8477,9 @@ RectTransform: m_Father: {fileID: 94032617} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -83.24858} m_SizeDelta: {x: 1257.5479, y: 100} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2101123193 @@ -8938,5 +8581,144 @@ MonoBehaviour: m_ChildForceExpandHeight: 1 m_ChildControlWidth: 0 m_ChildControlHeight: 0 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 + m_ChildScaleWidth: 1 + m_ChildScaleHeight: 1 +--- !u!1001 &8151022268675462965 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2126360451} + m_Modifications: + - target: {fileID: 8151022268133371578, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_text + value: THIS WILL GET DELETED BY ITSELF + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_SizeDelta.x + value: 702.7241 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_SizeDelta.y + value: 192.99345 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -146.49673 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020510, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8151022269085020511, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_Name + value: ARgorithmItem + objectReference: {fileID: 0} + - target: {fileID: 8151022269393131383, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 40919614} + - target: {fileID: 8151022269393131383, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[1].m_Target + value: + objectReference: {fileID: 1863966797} + - target: {fileID: 8151022269553422378, guid: 607002d78c51db54caf52d041607483b, + type: 3} + propertyPath: m_text + value: ALGORITHM NAME + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 607002d78c51db54caf52d041607483b, type: 3} diff --git a/Assets/Scripts/ArgorithmCloudMenu.cs b/Assets/Scripts/ArgorithmCloudMenu.cs index 0dda8b2..9d8d613 100644 --- a/Assets/Scripts/ArgorithmCloudMenu.cs +++ b/Assets/Scripts/ArgorithmCloudMenu.cs @@ -7,6 +7,7 @@ // import library of ARgorithm using ARgorithmAPI; using ARgorithmAPI.Models; +using Newtonsoft.Json.Linq; public class ArgorithmCloudMenu : MonoBehaviour @@ -51,13 +52,20 @@ void callback(ARgorithmCollection lar) child = Item.transform.GetChild(1).gameObject; child.GetComponent().SetText(item.description.ToUpper()); + Button ExecuteButton = Item.transform.GetChild(4).GetComponent