Commit f45cdacd authored by Yousef Sameh's avatar Yousef Sameh

Basic UI Controllers

parent 7d2207de
using System;
using Supabase.Gotrue; using Supabase.Gotrue;
using Supabase.Gotrue.Interfaces; using Supabase.Gotrue.Interfaces;
using UnityEngine; using UnityEngine;
using UnityEngine.Events; using UnityEngine.Events;
public class SessionListener : MonoBehaviour public class SessionListener : Singleton<SessionListener>
{ {
[SerializeField] private SupabaseManager SupabaseManager; [SerializeField] private SupabaseManager SupabaseManager;
......
using System; using System;
using Supabase; using Supabase;
using Supabase.Gotrue; using Supabase.Gotrue;
using TMPro;
using UnityEngine; using UnityEngine;
using Client = Supabase.Client; using Client = Supabase.Client;
...@@ -9,14 +8,11 @@ public class SupabaseManager : Singleton<SupabaseManager> ...@@ -9,14 +8,11 @@ public class SupabaseManager : Singleton<SupabaseManager>
{ {
[SerializeField] private SessionListener SessionListener; [SerializeField] private SessionListener SessionListener;
public TMP_Text ErrorText = null!;
// Public in case other components are interested in network status // Public in case other components are interested in network status
private readonly NetworkStatus _networkStatus = new(); private readonly NetworkStatus _networkStatus = new();
// Internals // Internals
private Client private Client? _client;
? _client;
public Client? Supabase() => _client; public Client? Supabase() => _client;
...@@ -70,7 +66,6 @@ public class SupabaseManager : Singleton<SupabaseManager> ...@@ -70,7 +66,6 @@ public class SupabaseManager : Singleton<SupabaseManager>
catch (Exception e) catch (Exception e)
{ {
// Something else went wrong, so we assume we are offline // Something else went wrong, so we assume we are offline
ErrorText.text = e.Message;
Debug.Log(e.Message, gameObject); Debug.Log(e.Message, gameObject);
Debug.LogException(e, gameObject); Debug.LogException(e, gameObject);
...@@ -91,7 +86,6 @@ public class SupabaseManager : Singleton<SupabaseManager> ...@@ -91,7 +86,6 @@ public class SupabaseManager : Singleton<SupabaseManager>
private void DebugListener(string message, Exception e) private void DebugListener(string message, Exception e)
{ {
ErrorText.text = message;
Debug.Log(message, gameObject); Debug.Log(message, gameObject);
// ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract // ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
if (e != null) if (e != null)
......
...@@ -3,7 +3,6 @@ using System.Collections.Generic; ...@@ -3,7 +3,6 @@ using System.Collections.Generic;
using Cysharp.Threading.Tasks; using Cysharp.Threading.Tasks;
using OneOf; using OneOf;
using Supabase; using Supabase;
using UnityEditor.Experimental.GraphView;
public class LeaderboardService : Singleton<LeaderboardService> public class LeaderboardService : Singleton<LeaderboardService>
{ {
......
using Cysharp.Threading.Tasks; using Cysharp.Threading.Tasks;
using OneOf; using OneOf;
using Supabase;
using Supabase.Realtime; using Supabase.Realtime;
using Supabase.Realtime.PostgresChanges; using Supabase.Realtime.PostgresChanges;
using System; using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine; using UnityEngine;
public class UserService : Singleton<UserService> public class UserService : Singleton<UserService>
......
using System.Linq; using System.Linq;
using Cysharp.Threading.Tasks;
using LightSide;
using UnityEngine; using UnityEngine;
using UnityEngine.SceneManagement; using UnityEngine.UIElements;
public class HomeUI : MonoBehaviour public class HomeController : MonoBehaviour
{ {
[SerializeField] private UniText greetingText; [SerializeField] private UIDocument mainMenuDocument;
[SerializeField] private UniText rankText;
[SerializeField] private UniText leaderBoard; private Label name;
private Label xp;
private Label rank;
private CustomProgressBar xpProgressBar;
private ScrollView activityScrollView;
void Awake() void Awake()
{ {
var root = mainMenuDocument.rootVisualElement.Q("Home");
name = root.Q<Label>("Name");
rank = root.Q<Label>("Rank");
xp = root.Q<Label>("Xp");
xpProgressBar = root.Q<CustomProgressBar>("ProgressBar");
activityScrollView = mainMenuDocument.rootVisualElement.Q("LiveBar").Children().First() as ScrollView;
UserService.Instance.OnUserChange += OnUserChange; UserService.Instance.OnUserChange += OnUserChange;
ActivityService.Instance.OnNewActivityReceived += OnNewActivityReceived;
} }
private async void Start() private async void Start()
{ {
UserService.Instance.LoadCurrentUser(); UserService.Instance.LoadCurrentUser();
var playersOrFailure = await LeaderboardService.Instance.LoadTop100Players();
playersOrFailure.Switch(
(players) =>
{
string leaderTest = "";
foreach (var player in players)
{
leaderTest += player.Position + " " + player.DisplayName + "\n";
}
leaderBoard.Text = leaderTest;
}
,
(error) => Debug.LogError(error)
);
ActivityService.Instance.Initialize(); ActivityService.Instance.Initialize();
} }
public void show() public void show()
{ {
gameObject.SetActive(true); gameObject.SetActive(true);
...@@ -53,14 +44,16 @@ public class HomeUI : MonoBehaviour ...@@ -53,14 +44,16 @@ public class HomeUI : MonoBehaviour
private void OnUserChange(User user) private void OnUserChange(User user)
{ {
greetingText.Text = $"Hello, {user.DisplayName}"; name.text = user.DisplayName;
rankText.Text = $"Your rank is {user.Points}"; xp.text = user.Points.ToString();
rank.text = user.Rank.ToString();
xpProgressBar.Value = user.Points / 5000f;
} }
public void LoadMinigameScene(string sceneName) private void OnNewActivityReceived(Activity activity)
{ {
SceneManager.LoadScene(sceneName); var entry = new Label($"{activity.Message}");
activityScrollView.Add(entry);
} }
} }
using System.Collections.Generic;
using Cysharp.Threading.Tasks;
using UnityEngine;
using UnityEngine.UIElements;
public class LeaderboardController : MonoBehaviour
{
[SerializeField] private UIDocument leaderboardDocument;
private VisualElement leaderboardScrollView;
void Awake()
{
var root = leaderboardDocument.rootVisualElement;
leaderboardScrollView = root.Q<VisualElement>("LeadboardContent");
LoadLeaderboard().Forget();
}
private async UniTask LoadLeaderboard()
{
// Clear existing entries
leaderboardScrollView.Clear();
// Load top 100 players
await UniTask.WaitUntil(() => UserService.Instance.CurrentUser != null);
var result = await LeaderboardService.Instance.LoadTop100Players();
result.Switch(
(List<LeaderboardPlayerModel> players) =>
{
foreach (var player in players)
{
var entry = new CustomLeaderboardSlot
{
PlayerName = player.DisplayName,
Rank = player.Rank,
XP = player.Points.ToString(),
Index = player.Position.ToString(),
IsOwner = player.Id == UserService.Instance.CurrentUser?.Id
};
leaderboardScrollView.Add(entry);
}
},
(string error) =>
{
var errorLabel = new Label($"Error loading leaderboard: {error}");
leaderboardScrollView.Add(errorLabel);
}
);
}
}
fileFormatVersion: 2 fileFormatVersion: 2
guid: 8cf28bfc4d270e64287dfa1d4fa3420f guid: 15e0930515e265210811f31b2b312b18
\ No newline at end of file \ No newline at end of file
using TMPro;
using UnityEngine; using UnityEngine;
using UnityEngine.UI; using UnityEngine.SceneManagement;
using UnityEngine.UIElements;
public class LoginUI : MonoBehaviour public class LoginController : MonoBehaviour
{ {
//public static LoginUI Instance; [SerializeField] private UIDocument uIDocument;
[SerializeField] private TextField emailInputField;
[SerializeField] private TextField passwordInputField;
[SerializeField] private TMP_InputField emailInputField;
[SerializeField] private TMP_InputField passwordInputField;
[SerializeField] private Button loginButton; [SerializeField] private Button loginButton;
[SerializeField] private Button createAcountPanelButton;
[SerializeField] private TextMeshProUGUI messageText;
//private void Awake() private void OnEnable()
//{
// if (Instance == null)
// {
// Instance = this;
// }
// else
// {
// Debug.LogError("there are two login menu");
// }
//}
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{ {
loginButton.onClick.AddListener(Login); var root = uIDocument.rootVisualElement;
//createAcountPanelButton.onClick.AddListener(() => emailInputField = root.Q<TextField>("LoginEmail");
//{ passwordInputField = root.Q<TextField>("LoginPassword");
// CreateAcountUI.Instance.Show(); loginButton = root.Q<Button>("Login");
// hide();
//});
loginButton.clicked += Login;
} }
// Update is called once per frame private void OnDisable()
void Update()
{ {
loginButton.clicked -= Login;
} }
private async void Login() private async void Login()
...@@ -52,11 +32,16 @@ public class LoginUI : MonoBehaviour ...@@ -52,11 +32,16 @@ public class LoginUI : MonoBehaviour
var login = await SupabaseAuthentication.Instance.LogIn(email, password); var login = await SupabaseAuthentication.Instance.LogIn(email, password);
login.Switch( login.Switch(
(_) => { }, (_) => { },
(string error) => { messageText.text = error; } (string error) => { Debug.LogError(error); }
); );
} }
public void LoadMainMenu()
{
SceneManager.LoadScene("MainMenu");
}
public void Show() public void Show()
{ {
gameObject.SetActive(true); gameObject.SetActive(true);
......
using UnityEngine;
using UnityEngine.UIElements;
public class ProfileController : MonoBehaviour
{
[SerializeField] private UIDocument profileDocument;
private Label name;
private Label rank;
private Label xp;
private CustomProgressBar xpProgressBar;
void Awake()
{
var root = profileDocument.rootVisualElement.Q("Profile");
name = root.Q<Label>("Username");
rank = root.Q<Label>("Rank");
xp = root.Q<Label>("Xp");
xpProgressBar = root.Q<CustomProgressBar>("ProgressBar");
UserService.Instance.OnUserChange += OnUserChange;
}
private void OnUserChange(User user)
{
name.text = user.DisplayName;
rank.text = user.Rank;
xp.text = user.Points.ToString();
xpProgressBar.Value = user.Points / 5000f;
}
}
fileFormatVersion: 2
guid: fc2b3d6a8d39f3230aef9e126ee2b1ea
\ No newline at end of file
fileFormatVersion: 2
guid: 9f5e4a3bb94ec3648b180e433c73baf4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
using UnityEngine;
using UnityEngine.UIElements;
public class LoginManager : MonoBehaviour
{
[SerializeField] UIDocument UIDocument;
TextField email;
TextField password;
Button loginButton;
void Start()
{
email = UIDocument.rootVisualElement.Q<TextField>("email");
password = UIDocument.rootVisualElement.Q<TextField>("password");
loginButton = UIDocument.rootVisualElement.Q<Button>("loginButton");
loginButton.clicked += OnLoginButtonClick;
}
private void OnLoginButtonClick()
{
string emailValue = email.value;
string passwordValue = password.value;
Debug.Log($"Email: {emailValue}, Password: {passwordValue}");
}
void LiveBar()
{
ScrollView liveBar = UIDocument.rootVisualElement.Q<VisualElement>("liveBar").Q<ScrollView>();
Label text = new Label("<color=#FED700>Esraa</color> فازت");
liveBar.Add(text);
CustomLeaderboardSlot slot = new CustomLeaderboardSlot();
slot.Index = "1";
slot.PlayerName = "Abdo";
slot.Rank = "اسطوري";
slot.XP = "1000";
slot.IsOwner = true;
slot.SetPlayerImage("https://www.pngall.com/wp-content/uploads/5/Profile-PNG-High-Quality-Image.png");
liveBar.Add(slot);
CustomSwitch switchh = UIDocument.rootVisualElement.Q<ScrollView>("SettingList").Q<CustomSwitch>("SoundSwitch");
switchh.IsOn = true;
}
}
...@@ -119,6 +119,69 @@ NavMeshSettings: ...@@ -119,6 +119,69 @@ NavMeshSettings:
debug: debug:
m_Flags: 0 m_Flags: 0
m_NavMeshData: {fileID: 0} m_NavMeshData: {fileID: 0}
--- !u!1 &232732868
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 232732870}
- component: {fileID: 232732869}
m_Layer: 0
m_Name: SupabaseListener
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &232732869
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 232732868}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 14bbed8449713f51db869aa6dba9c6fa, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::SessionListener
SupabaseManager: {fileID: 689087718}
LoggedIn:
m_PersistentCalls:
m_Calls:
- m_Target: {fileID: 1746642442}
m_TargetAssemblyTypeName: LoginController, Assembly-CSharp
m_MethodName: LoadMainMenu
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
LoggedOut:
m_PersistentCalls:
m_Calls: []
--- !u!4 &232732870
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 232732868}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 616.9188, y: 1194.7426, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &414692743 --- !u!1 &414692743
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -153,6 +216,51 @@ Transform: ...@@ -153,6 +216,51 @@ Transform:
- {fileID: 2025346609} - {fileID: 2025346609}
m_Father: {fileID: 0} m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &689087716
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 689087717}
- component: {fileID: 689087718}
m_Layer: 0
m_Name: Supabase
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &689087717
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 689087716}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 616.9188, y: 1194.7426, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &689087718
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 689087716}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 5baed90edb7a40852b66a41622c93859, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::SupabaseManager
SessionListener: {fileID: 232732869}
--- !u!1 &1113388150 --- !u!1 &1113388150
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -277,6 +385,51 @@ Transform: ...@@ -277,6 +385,51 @@ Transform:
m_Children: [] m_Children: []
m_Father: {fileID: 2025346609} m_Father: {fileID: 2025346609}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1486533216
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1486533217}
- component: {fileID: 1486533218}
m_Layer: 0
m_Name: SupabaseAuthentication
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1486533217
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1486533216}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 616.9188, y: 1194.7426, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1486533218
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1486533216}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 740bc2dc1ba97be68adb58313f40de23, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::SupabaseAuthentication
supabaseManager: {fileID: 689087718}
--- !u!1 &1707671416 --- !u!1 &1707671416
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -307,8 +460,54 @@ Transform: ...@@ -307,8 +460,54 @@ Transform:
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
m_Children: m_Children:
- {fileID: 1113388151} - {fileID: 1113388151}
- {fileID: 1746642441}
m_Father: {fileID: 414692744} m_Father: {fileID: 414692744}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1746642440
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1746642441}
- component: {fileID: 1746642442}
m_Layer: 0
m_Name: LoginController
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1746642441
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1746642440}
serializedVersion: 2
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_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1707671417}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1746642442
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1746642440}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 15584a60abf537c4fb863ba3aeb3ee6d, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::LoginController
uIDocument: {fileID: 2143987065}
--- !u!1 &2025346608 --- !u!1 &2025346608
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -538,4 +737,7 @@ Transform: ...@@ -538,4 +737,7 @@ Transform:
SceneRoots: SceneRoots:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_Roots: m_Roots:
- {fileID: 232732870}
- {fileID: 1486533217}
- {fileID: 689087717}
- {fileID: 414692744} - {fileID: 414692744}
...@@ -365,6 +365,141 @@ Transform: ...@@ -365,6 +365,141 @@ Transform:
- {fileID: 178265492} - {fileID: 178265492}
m_Father: {fileID: 0} m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &755069555
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 755069556}
- component: {fileID: 755069557}
m_Layer: 0
m_Name: LeaderboardController
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &755069556
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 755069555}
serializedVersion: 2
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_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2129398203}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &755069557
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 755069555}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 15e0930515e265210811f31b2b312b18, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::LeaderboardController
leaderboardDocument: {fileID: 96388575}
--- !u!1 &882327169
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 882327170}
- component: {fileID: 882327171}
m_Layer: 0
m_Name: HomeController
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &882327170
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 882327169}
serializedVersion: 2
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_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2129398203}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &882327171
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 882327169}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 6abd7c2813215344aacce964e4964aac, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::HomeController
mainMenuDocument: {fileID: 96388575}
--- !u!1 &1859771920
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1859771921}
- component: {fileID: 1859771922}
m_Layer: 0
m_Name: ProfileController
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1859771921
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1859771920}
serializedVersion: 2
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_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2129398203}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1859771922
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1859771920}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fc2b3d6a8d39f3230aef9e126ee2b1ea, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::ProfileController
profileDocument: {fileID: 96388575}
--- !u!1 &1986353039 --- !u!1 &1986353039
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -532,6 +667,9 @@ Transform: ...@@ -532,6 +667,9 @@ Transform:
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
m_Children: m_Children:
- {fileID: 227517948} - {fileID: 227517948}
- {fileID: 882327170}
- {fileID: 755069556}
- {fileID: 1859771921}
m_Father: {fileID: 744843710} m_Father: {fileID: 744843710}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1660057539 &9223372036854775807 --- !u!1660057539 &9223372036854775807
......
...@@ -3,24 +3,24 @@ ...@@ -3,24 +3,24 @@
<ui:VisualElement name="Background" style="flex-grow: 1; background-color: rgb(62, 45, 206); justify-content: flex-end;"> <ui:VisualElement name="Background" style="flex-grow: 1; background-color: rgb(62, 45, 206); justify-content: flex-end;">
<ui:Image source="project://database/Assets/Art/SSLAB%20LOGOS/2.png?fileID=2800000&amp;guid=980570066fb5dd74abc396427104080f&amp;type=3#2" name="Logo" style="height: 15%; width: 100%;"/> <ui:Image source="project://database/Assets/Art/SSLAB%20LOGOS/2.png?fileID=2800000&amp;guid=980570066fb5dd74abc396427104080f&amp;type=3#2" name="Logo" style="height: 15%; width: 100%;"/>
<ui:VisualElement name="ContantPanel" class="padding" style="flex-grow: 1; background-color: rgb(255, 255, 255); border-top-left-radius: 50px; border-top-right-radius: 50px; transition-duration: 0.15s; translate: 0 100%;"> <ui:VisualElement name="ContantPanel" class="padding" style="flex-grow: 1; background-color: rgb(255, 255, 255); border-top-left-radius: 50px; border-top-right-radius: 50px; transition-duration: 0.15s; translate: 0 100%;">
<ui:Label text="اهلا بعودتك" name="HeaderText" class="base-text base-text-bold" style="font-size: 75px;"/> <ui:Label text="&#1575;&#1607;&#1604;&#1575; &#1576;&#1593;&#1608;&#1583;&#1578;&#1603;" name="HeaderText" class="base-text base-text-bold" style="font-size: 75px;"/>
<ui:Label text="سجل الدخول لمتابعة رحلتك" name="HeaderText" class="base-text base-text-light" style="margin-bottom: 60px;"/> <ui:Label text="&#1587;&#1580;&#1604; &#1575;&#1604;&#1583;&#1582;&#1608;&#1604; &#1604;&#1605;&#1578;&#1575;&#1576;&#1593;&#1577; &#1585;&#1581;&#1604;&#1578;&#1603;" name="HeaderText" class="base-text base-text-light" style="margin-bottom: 60px;"/>
<ui:VisualElement template="Template" name="Email" style="margin-bottom: 50px;"> <ui:VisualElement template="Template" name="Email" style="margin-bottom: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="البريد الإلكتروني" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1575;&#1604;&#1576;&#1585;&#1610;&#1583; &#1575;&#1604;&#1573;&#1604;&#1603;&#1578;&#1585;&#1608;&#1606;&#1610;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="LoginEmail" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement template="Template" name="Password"> <ui:VisualElement template="Template" name="Password">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="الباسورد" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1575;&#1604;&#1576;&#1575;&#1587;&#1608;&#1585;&#1583;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="LoginPassword" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/lock@3x.png?fileID=2800000&amp;guid=0a26ab6d1efabef45ad81ac8b01e1695&amp;type=3#lock@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px;"/> <ui:Image source="project://database/Assets/Art/export/lock@3x.png?fileID=2800000&amp;guid=0a26ab6d1efabef45ad81ac8b01e1695&amp;type=3#lock@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:Button text="نسيت كلمة السر؟" name="ForgetPassword" class="button-link"/> <ui:Button text="&#1606;&#1587;&#1610;&#1578; &#1603;&#1604;&#1605;&#1577; &#1575;&#1604;&#1587;&#1585;&#1567;" name="ForgetPassword" class="button-link"/>
<ui:Button text="دخول" language-direction="RTL" name="Login" class="base-button"/> <ui:Button text="&#1583;&#1582;&#1608;&#1604;" language-direction="RTL" name="Login" class="base-button"/>
<ui:VisualElement name="OR" style="flex-grow: 0; flex-direction: row-reverse; justify-content: space-between; margin-top: 40px; align-items: center; margin-bottom: 40px;"> <ui:VisualElement name="OR" style="flex-grow: 0; flex-direction: row-reverse; justify-content: space-between; margin-top: 40px; align-items: center; margin-bottom: 40px;">
<ui:VisualElement name="Line" style="flex-grow: 0; width: 45%; border-top-width: 0.1px; border-right-width: 0.1px; border-bottom-width: 0.1px; border-left-width: 0.1px; border-left-color: rgb(158, 158, 158); border-right-color: rgb(158, 158, 158); border-top-color: rgb(158, 158, 158); border-bottom-color: rgb(158, 158, 158); height: 0;"/> <ui:VisualElement name="Line" style="flex-grow: 0; width: 45%; border-top-width: 0.1px; border-right-width: 0.1px; border-bottom-width: 0.1px; border-left-width: 0.1px; border-left-color: rgb(158, 158, 158); border-right-color: rgb(158, 158, 158); border-top-color: rgb(158, 158, 158); border-bottom-color: rgb(158, 158, 158); height: 0;"/>
<ui:Label text="OR" class="base-text-light" style="font-size: 30px; margin-left: 0; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TS%20Hakwaty%20Bold.otf?fileID=12800000&amp;guid=3fd066470b6b5214a844c6c22bfaa0a4&amp;type=3#TS Hakwaty Bold&quot;); -unity-text-align: middle-center; white-space: normal; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/> <ui:Label text="OR" class="base-text-light" style="font-size: 30px; margin-left: 0; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TS%20Hakwaty%20Bold.otf?fileID=12800000&amp;guid=3fd066470b6b5214a844c6c22bfaa0a4&amp;type=3#TS Hakwaty Bold&quot;); -unity-text-align: middle-center; white-space: normal; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/>
...@@ -31,51 +31,51 @@ ...@@ -31,51 +31,51 @@
<ui:Button text="Google" enable-rich-text="true" name="Google" style="height: 80px; width: 40%; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;); font-size: 20px; background-color: rgba(255, 255, 255, 0); border-left-color: rgba(0, 0, 0, 0.1); border-right-color: rgba(0, 0, 0, 0.1); border-top-color: rgba(0, 0, 0, 0.1); border-bottom-color: rgba(0, 0, 0, 0.1); border-top-left-radius: 19px; border-top-right-radius: 19px; border-bottom-right-radius: 19px; border-bottom-left-radius: 19px; border-top-width: 3px; border-right-width: 3px; border-bottom-width: 3px; border-left-width: 3px; color: rgb(66, 66, 66);"/> <ui:Button text="Google" enable-rich-text="true" name="Google" style="height: 80px; width: 40%; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;); font-size: 20px; background-color: rgba(255, 255, 255, 0); border-left-color: rgba(0, 0, 0, 0.1); border-right-color: rgba(0, 0, 0, 0.1); border-top-color: rgba(0, 0, 0, 0.1); border-bottom-color: rgba(0, 0, 0, 0.1); border-top-left-radius: 19px; border-top-right-radius: 19px; border-bottom-right-radius: 19px; border-bottom-left-radius: 19px; border-top-width: 3px; border-right-width: 3px; border-bottom-width: 3px; border-left-width: 3px; color: rgb(66, 66, 66);"/>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement name="Register" style="flex-grow: 0; flex-direction: row-reverse; justify-content: center; margin-top: 40px;"> <ui:VisualElement name="Register" style="flex-grow: 0; flex-direction: row-reverse; justify-content: center; margin-top: 40px;">
<ui:Label text="ليس لديك حساب؟" class="base-text-light" style="font-size: 30px; margin-left: 10px;"/> <ui:Label text="&#1604;&#1610;&#1587; &#1604;&#1583;&#1610;&#1603; &#1581;&#1587;&#1575;&#1576;&#1567;" class="base-text-light" style="font-size: 30px; margin-left: 10px;"/>
<ui:Button text="التسحيل" name="OpenRegisterPanel" class="button-link" style="padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/> <ui:Button text="&#1575;&#1604;&#1578;&#1587;&#1581;&#1610;&#1604;" name="OpenRegisterPanel" class="button-link" style="padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/>
</ui:VisualElement> </ui:VisualElement>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement name="RegisterPanel" style="flex-grow: 0; height: 100%; position: absolute; width: 100%; background-color: rgb(255, 255, 255); translate: 0 100%; transition-duration: 0.15s; display: flex;"> <ui:VisualElement name="RegisterPanel" style="flex-grow: 0; height: 100%; position: absolute; width: 100%; background-color: rgb(255, 255, 255); translate: 0 100%; transition-duration: 0.15s; display: flex;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1;"> <ui:VisualElement name="Padding" class="padding" style="flex-grow: 1;">
<ui:VisualElement template="Template" name="Name" style="margin-bottom: 50px; margin-top: 50px;"> <ui:VisualElement template="Template" name="Name" style="margin-bottom: 50px; margin-top: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="الأسم بالكامل" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1575;&#1604;&#1571;&#1587;&#1605; &#1576;&#1575;&#1604;&#1603;&#1575;&#1605;&#1604;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement template="Template" name="Email" style="margin-bottom: 50px;"> <ui:VisualElement template="Template" name="Email" style="margin-bottom: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="البريد الإلكتروني" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1575;&#1604;&#1576;&#1585;&#1610;&#1583; &#1575;&#1604;&#1573;&#1604;&#1603;&#1578;&#1585;&#1608;&#1606;&#1610;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement template="Template" name="User" style="margin-bottom: 50px;"> <ui:VisualElement template="Template" name="User" style="margin-bottom: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="اسم المستخدم" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1575;&#1587;&#1605; &#1575;&#1604;&#1605;&#1587;&#1578;&#1582;&#1583;&#1605;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="TextField" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement template="Template" name="Password" style="margin-bottom: 50px;"> <ui:VisualElement template="Template" name="Password" style="margin-bottom: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="كلمة المرور" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1603;&#1604;&#1605;&#1577; &#1575;&#1604;&#1605;&#1585;&#1608;&#1585;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="TextField" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:VisualElement template="Template" name="RePassword" style="margin-bottom: 50px;"> <ui:VisualElement template="Template" name="RePassword" style="margin-bottom: 50px;">
<Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/> <Style src="project://database/Assets/AppUI/UIToolkit/USS/Style.uss?fileID=7433441132597879392&amp;guid=f90ac983f14f5f043a3437b2c294db62&amp;type=3#Style"/>
<ui:Label text="تأكيد كلمة المرور" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/> <ui:Label text="&#1578;&#1571;&#1603;&#1610;&#1583; &#1603;&#1604;&#1605;&#1577; &#1575;&#1604;&#1605;&#1585;&#1608;&#1585;" name="TextFieldLabel" class="base-text-light" style="color: rgb(117, 117, 117); margin-bottom: 20px; font-size: 30px; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&amp;guid=566b773a07b3d064aa1f4c6ef7b6f6fa&amp;type=3#TSHakwaty-DemiBold&quot;);"/>
<ui:TextField label="" placeholder-text="" name="TextField" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);"> <ui:TextField label="" placeholder-text="" name="TextField" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/> <ui:Image source="project://database/Assets/Art/export/mail@3x.png?fileID=2800000&amp;guid=0d76662a81af3a7408ca3c2975f08b8f&amp;type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField> </ui:TextField>
</ui:VisualElement> </ui:VisualElement>
<ui:Button text="تسجيل" language-direction="RTL" name="Register" class="base-button"/> <ui:Button text="&#1578;&#1587;&#1580;&#1610;&#1604;" language-direction="RTL" name="Register" class="base-button"/>
<ui:VisualElement name="OpenLoginPanel" style="flex-grow: 0; flex-direction: row-reverse; justify-content: center; margin-top: 40px;"> <ui:VisualElement name="OpenLoginPanel" style="flex-grow: 0; flex-direction: row-reverse; justify-content: center; margin-top: 40px;">
<ui:Label text="لديك حساب بالفعل؟" class="base-text-light" style="font-size: 30px; margin-left: 10px;"/> <ui:Label text="&#1604;&#1583;&#1610;&#1603; &#1581;&#1587;&#1575;&#1576; &#1576;&#1575;&#1604;&#1601;&#1593;&#1604;&#1567;" class="base-text-light" style="font-size: 30px; margin-left: 10px;"/>
<ui:Button text="تسجيل الدخول" name="OpenLoginPanel" class="button-link" style="padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/> <ui:Button text="&#1578;&#1587;&#1580;&#1610;&#1604; &#1575;&#1604;&#1583;&#1582;&#1608;&#1604;" name="OpenLoginPanel" class="button-link" style="padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0;"/>
</ui:VisualElement> </ui:VisualElement>
</ui:VisualElement> </ui:VisualElement>
</ui:VisualElement> </ui:VisualElement>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3,12 +3,14 @@ ...@@ -3,12 +3,14 @@
<Project Path="Unity.RenderPipelines.Universal.Runtime.csproj" /> <Project Path="Unity.RenderPipelines.Universal.Runtime.csproj" />
<Project Path="FlatKit.Utils.Editor.csproj" /> <Project Path="FlatKit.Utils.Editor.csproj" />
<Project Path="ExternAttributes.Editor.csproj" /> <Project Path="ExternAttributes.Editor.csproj" />
<Project Path="Nobi.UiRoundedCorners.Editor.csproj" />
<Project Path="CFXRRuntime.csproj" /> <Project Path="CFXRRuntime.csproj" />
<Project Path="CFXRDemo.csproj" /> <Project Path="CFXRDemo.csproj" />
<Project Path="CFXREditor.csproj" /> <Project Path="CFXREditor.csproj" />
<Project Path="Assembly-CSharp-firstpass.csproj" /> <Project Path="Assembly-CSharp-firstpass.csproj" />
<Project Path="Assembly-CSharp-Editor.csproj" /> <Project Path="Assembly-CSharp-Editor.csproj" />
<Project Path="KinoBloom.Runtime.csproj" /> <Project Path="KinoBloom.Runtime.csproj" />
<Project Path="Nobi.UiRoundedCorners.csproj" />
<Project Path="CFXR.WelcomeScreen.csproj" /> <Project Path="CFXR.WelcomeScreen.csproj" />
<Project Path="ToonyColorsPro.Demo.Editor.csproj" /> <Project Path="ToonyColorsPro.Demo.Editor.csproj" />
</Solution> </Solution>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.burst": { "com.unity.burst": {
"version": "1.8.27", "version": "1.8.25",
"depth": 2, "depth": 2,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
......
...@@ -6,8 +6,11 @@ EditorBuildSettings: ...@@ -6,8 +6,11 @@ EditorBuildSettings:
serializedVersion: 2 serializedVersion: 2
m_Scenes: m_Scenes:
- enabled: 1 - enabled: 1
path: Assets/Scenes/App.unity path: Assets/AppUI/Scenes/Login.unity
guid: 11cbccdcd0073e6b9b696ebb57616ab2 guid: e370a49a43f15c2469c4a8816600e643
- enabled: 1
path: Assets/AppUI/Scenes/Mainmenu.unity
guid: 198738685e2023340a77b711aabab84e
- enabled: 1 - enabled: 1
path: Assets/Scenes/TF/TF.unity path: Assets/Scenes/TF/TF.unity
guid: c2f60049cef0f6b44b9445afcf550aff guid: c2f60049cef0f6b44b9445afcf550aff
......
m_EditorVersion: 6000.3.8f1 m_EditorVersion: 6000.3.0f1
m_EditorVersionWithRevision: 6000.3.8f1 (1c7db571dde0) m_EditorVersionWithRevision: 6000.3.0f1 (d1870ce95baf)
...@@ -33,10 +33,10 @@ EditorUserSettings: ...@@ -33,10 +33,10 @@ EditorUserSettings:
value: 0752035101010f0c54595b2046760e44134e4e7a7f7d71677c2c4836b7b4633e value: 0752035101010f0c54595b2046760e44134e4e7a7f7d71677c2c4836b7b4633e
flags: 0 flags: 0
RecentlyUsedSceneGuid-8: RecentlyUsedSceneGuid-8:
value: 060203560401505a595d0a7345200d44404e1b7e2d707e617b7f4d63e7b6606b value: 52080c51560d5f03580b5e7242700c4446164f7d2e7f77612c281f32e0b8603d
flags: 0 flags: 0
RecentlyUsedSceneGuid-9: RecentlyUsedSceneGuid-9:
value: 52080c51560d5f03580b5e7242700c4446164f7d2e7f77612c281f32e0b8603d value: 060203560401505a595d0a7345200d44404e1b7e2d707e617b7f4d63e7b6606b
flags: 0 flags: 0
UnityEditor.ShaderGraph.Blackboard: UnityEditor.ShaderGraph.Blackboard:
value: 18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7 value: 18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7
......
...@@ -14,18 +14,17 @@ MonoBehaviour: ...@@ -14,18 +14,17 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 3} - {fileID: 3}
- {fileID: 9}
- {fileID: 14} - {fileID: 14}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 36 y: 36
width: 1920 width: 1904
height: 933 height: 983
m_MinSize: {x: 300, y: 112} m_MinSize: {x: 300, y: 112}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
controlID: 3949 controlID: 8197
draggingID: 0 draggingID: 0
--- !u!114 &2 --- !u!114 &2
MonoBehaviour: MonoBehaviour:
...@@ -48,10 +47,10 @@ MonoBehaviour: ...@@ -48,10 +47,10 @@ MonoBehaviour:
m_TextWithWhitespace: "Game\u200B" m_TextWithWhitespace: "Game\u200B"
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 355
y: 79 y: 61
width: 951 width: 1097
height: 499 height: 606
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -65,15 +64,13 @@ MonoBehaviour: ...@@ -65,15 +64,13 @@ MonoBehaviour:
m_DynamicPanelContainerData: [] m_DynamicPanelContainerData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0 m_DynamicPanelBehavior: 0
m_SerializedViewNames: m_SerializedViewNames: []
- UnityEditor.DeviceSimulation.SimulatorWindow m_SerializedViewValues: []
m_SerializedViewValues:
- D:\Work Games\ssbookminigames\My project\Library\PlayModeViewStates\2f5b92219d50f2a479557362dcd47f63
m_PlayModeViewName: GameView m_PlayModeViewName: GameView
m_ShowGizmos: 0 m_ShowGizmos: 0
m_TargetDisplay: 0 m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0} m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 1080, y: 1920} m_TargetSize: {x: 1080, y: 2400}
m_TextureFilterMode: 0 m_TextureFilterMode: 0
m_TextureHideFlags: 61 m_TextureHideFlags: 61
m_RenderIMGUI: 1 m_RenderIMGUI: 1
...@@ -82,7 +79,7 @@ MonoBehaviour: ...@@ -82,7 +79,7 @@ MonoBehaviour:
m_VSyncEnabled: 0 m_VSyncEnabled: 0
m_Gizmos: 0 m_Gizmos: 0
m_Stats: 0 m_Stats: 0
m_SelectedSizes: 07000000000000000000000000000000000000000000000000000000000000000000000000000000 m_SelectedSizes: 08000000000000000000000000000000000000000000000000000000000000000000000000000000
m_ZoomArea: m_ZoomArea:
m_HRangeLocked: 0 m_HRangeLocked: 0
m_VRangeLocked: 0 m_VRangeLocked: 0
...@@ -90,8 +87,8 @@ MonoBehaviour: ...@@ -90,8 +87,8 @@ MonoBehaviour:
vZoomLockedByDefault: 0 vZoomLockedByDefault: 0
m_HBaseRangeMin: -540 m_HBaseRangeMin: -540
m_HBaseRangeMax: 540 m_HBaseRangeMax: 540
m_VBaseRangeMin: -960 m_VBaseRangeMin: -1200
m_VBaseRangeMax: 960 m_VBaseRangeMax: 1200
m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1 m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1 m_VAllowExceedBaseRangeMin: 1
...@@ -109,23 +106,23 @@ MonoBehaviour: ...@@ -109,23 +106,23 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 21 y: 21
width: 951 width: 1097
height: 478 height: 585
m_Scale: {x: 0.24895833, y: 0.24895833} m_Scale: {x: 0.24375, y: 0.24375}
m_Translation: {x: 475.5, y: 239} m_Translation: {x: 548.5, y: 292.5}
m_MarginLeft: 0 m_MarginLeft: 0
m_MarginRight: 0 m_MarginRight: 0
m_MarginTop: 0 m_MarginTop: 0
m_MarginBottom: 0 m_MarginBottom: 0
m_LastShownAreaInsideMargins: m_LastShownAreaInsideMargins:
serializedVersion: 2 serializedVersion: 2
x: -1909.9581 x: -2250.2563
y: -960 y: -1200
width: 3819.9163 width: 4500.5127
height: 1920 height: 2400
m_MinimalGUI: 1 m_MinimalGUI: 1
m_defaultScale: 0.24895833 m_defaultScale: 0.24375
m_LastWindowPixelSize: {x: 951, y: 499} m_LastWindowPixelSize: {x: 1097, y: 606}
m_ClearInEditMode: 1 m_ClearInEditMode: 1
m_NoCameraWarning: 1 m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000 m_LowResolutionForAspectRatios: 01000000000000000000
...@@ -140,25 +137,51 @@ MonoBehaviour: ...@@ -140,25 +137,51 @@ MonoBehaviour:
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0} m_GameObject: {fileID: 0}
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 0 m_EditorHideFlags: 1
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name: m_Name:
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.SplitView m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 4} - {fileID: 4}
- {fileID: 5} - {fileID: 9}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 952 width: 1454
height: 933 height: 983
m_MinSize: {x: 100, y: 112} m_MinSize: {x: 200, y: 112}
m_MaxSize: {x: 8096, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
controlID: 3950 controlID: 8198
draggingID: 0 draggingID: 0
--- !u!114 &4 --- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children:
- {fileID: 5}
- {fileID: 7}
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 1454
height: 632
m_MinSize: {x: 200, y: 56}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 8199
draggingID: 0
--- !u!114 &5
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -168,23 +191,23 @@ MonoBehaviour: ...@@ -168,23 +191,23 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: GameView m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 952 width: 355
height: 525 height: 632
m_MinSize: {x: 201, y: 226} m_MinSize: {x: 201, y: 226}
m_MaxSize: {x: 4001, y: 4026} m_MaxSize: {x: 4001, y: 4026}
m_ActualView: {fileID: 2} m_ActualView: {fileID: 6}
m_Panes: m_Panes:
- {fileID: 2} - {fileID: 6}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &5 --- !u!114 &6
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -192,27 +215,134 @@ MonoBehaviour: ...@@ -192,27 +215,134 @@ MonoBehaviour:
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0} m_GameObject: {fileID: 0}
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 0 m_EditorHideFlags: 1
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Hierarchy
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Hierarchy\u200B"
m_Pos:
serializedVersion: 2
x: 0
y: 61
width: 354
height: 606
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
- m_Data: 31262
m_LastClickedID:
m_Data: 0
m_ExpandedIDs:
- m_Data: -35018
- m_Data: -34754
- m_Data: -33834
- m_Data: -33598
- m_Data: -32484
- m_Data: -22008
- m_Data: -21544
- m_Data: -14382
- m_Data: -13636
- m_Data: -11440
- m_Data: -9338
- m_Data: -9128
- m_Data: -6144
- m_Data: -5192
- m_Data: -4966
- m_Data: -3018
- m_Data: -1342
- m_Data: -12
- m_Data: 56188
- m_Data: 56206
- m_Data: 56210
- m_Data: 58072
- m_Data: 58082
- m_Data: 58096
- m_Data: 58462
- m_Data: 58466
- m_Data: 58492
- m_Data: 58502
- m_Data: 58958
- m_Data: 58968
- m_Data: 58988
- m_Data: 62456
- m_Data: 62476
- m_Data: 63974
- m_Data: 64000
- m_Data: 64600
- m_Data: 64632
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData:
m_Data: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 5}
m_SearchString:
m_ExpandedScenes: []
m_CurrenRootInstanceID: 0
m_LockTracker:
m_IsLocked: 0
m_CurrentSortingName: TransformSorting
m_WindowGUID: 4c969a2b90040154d917609493e03593
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: SceneView m_Name: GameView
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.DockArea m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 355
y: 525 y: 0
width: 952 width: 1099
height: 408 height: 632
m_MinSize: {x: 200, y: 200} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 6} m_ActualView: {fileID: 2}
m_Panes: m_Panes:
- {fileID: 6}
- {fileID: 7}
- {fileID: 8} - {fileID: 8}
m_Selected: 0 - {fileID: 2}
m_LastSelected: 1 m_Selected: 1
--- !u!114 &6 m_LastSelected: 0
--- !u!114 &8
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -233,10 +363,10 @@ MonoBehaviour: ...@@ -233,10 +363,10 @@ MonoBehaviour:
m_TextWithWhitespace: "Scene\u200B" m_TextWithWhitespace: "Scene\u200B"
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 355
y: 604 y: 61
width: 951 width: 1097
height: 382 height: 606
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -246,32 +376,46 @@ MonoBehaviour: ...@@ -246,32 +376,46 @@ MonoBehaviour:
m_OverlayCanvas: m_OverlayCanvas:
m_LastAppliedPresetName: Default m_LastAppliedPresetName: Default
m_SaveData: m_SaveData:
- dockPosition: 0
containerId: overlay-toolbar__top
displayed: 0
id: Brush Attributes
index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-toolbar__top containerId: overlay-toolbar__top
displayed: 1 displayed: 1
id: Tool Settings id: Tool Settings
index: 1 index: 1
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-101.0,"y":-26.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: -101, y: -26} snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 3 snapCorner: 0
layout: 1 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-toolbar__top containerId: overlay-toolbar__top
displayed: 1 displayed: 1
id: unity-grid-and-snap-toolbar id: unity-grid-and-snap-toolbar
index: 2 index: 3
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-141.0,"y":-227.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: -141, y: -227} snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 3 snapCorner: 0
layout: 1 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
...@@ -279,13 +423,27 @@ MonoBehaviour: ...@@ -279,13 +423,27 @@ MonoBehaviour:
displayed: 1 displayed: 1
id: unity-scene-view-toolbar id: unity-scene-view-toolbar
index: 0 index: 0
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-192.800048828125,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-322.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: -192.80005, y: 0} snapOffset: {x: -322, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 1 snapCorner: 1
layout: 1 layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-toolbar__top
displayed: 1
id: unity-scene-view-camera-mode-toolbar
index: 1
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
...@@ -293,61 +451,61 @@ MonoBehaviour: ...@@ -293,61 +451,61 @@ MonoBehaviour:
displayed: 0 displayed: 0
id: unity-search-toolbar id: unity-search-toolbar
index: 2 index: 2
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":1,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 1 snapCorner: 0
layout: 1 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-container--left containerId: overlay-toolbar__left
displayed: 1 displayed: 0
id: unity-transform-toolbar id: Terrain Tools
index: 0 index: 0
contents: '{"m_Layout":2,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 24, y: 25} snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 2 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-container--left containerId: overlay-toolbar__left
displayed: 1 displayed: 0
id: unity-component-tools id: Brush Masks
index: 1 index: 1
contents: contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 197} snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 2 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-container--right containerId: overlay-container--left
displayed: 1 displayed: 1
id: Orientation id: unity-transform-toolbar
index: 0 index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":67.5,"y":86.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":2,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 67.5, y: 86} snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 2
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--left
displayed: 0 displayed: 0
id: Scene View/Light Settings id: Scene View/Lighting Visualization Colors
index: 0 index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
...@@ -359,14 +517,28 @@ MonoBehaviour: ...@@ -359,14 +517,28 @@ MonoBehaviour:
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--left
displayed: 0 displayed: 1
id: Scene View/Camera id: Overlays/OverlayMenu
index: 1 index: 1
contents: contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-319.0,"y":-30.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: -319, y: -30}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 3
layout: 1
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 0
containerId: overlay-container--right
displayed: 1
id: Orientation
index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -375,9 +547,9 @@ MonoBehaviour: ...@@ -375,9 +547,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Cloth Constraints id: Scene View/Tile Palette Clipboard
index: 1 index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -386,25 +558,25 @@ MonoBehaviour: ...@@ -386,25 +558,25 @@ MonoBehaviour:
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 0
containerId: overlay-container--right containerId: Floating
displayed: 0 displayed: 0
id: Scene View/Cloth Collisions id: Scene View/Tilemap Focus
index: 2 index: 2
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 1
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: -155, y: -81}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 3
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Navmesh Display id: Scene View/Open Tile Palette
index: 4 index: 2
contents: contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -417,9 +589,9 @@ MonoBehaviour: ...@@ -417,9 +589,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Agent Display id: Scene View/Light Settings
index: 5 index: 0
contents: contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -431,9 +603,9 @@ MonoBehaviour: ...@@ -431,9 +603,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Obstacle Display id: Scene View/PBR Validation Settings
index: 6 index: 1
contents: contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -445,8 +617,8 @@ MonoBehaviour: ...@@ -445,8 +617,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Occlusion Culling id: Scene View/Cloth Collisions
index: 3 index: 2
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -459,8 +631,8 @@ MonoBehaviour: ...@@ -459,8 +631,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Physics Debugger id: Scene View/Cloth Constraints
index: 4 index: 3
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -473,9 +645,9 @@ MonoBehaviour: ...@@ -473,9 +645,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Scene Visibility id: Scene View/Tile Palette Brush Pick
index: 5 index: 8
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -487,23 +659,9 @@ MonoBehaviour: ...@@ -487,23 +659,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Particles id: unity-spline-inspector
index: 10
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":-232.0,"y":-198.39999389648438},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: -232, y: -198.4}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 3
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--right
displayed: 0
id: Scene View/Tilemap
index: 11 index: 11
contents: contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -515,9 +673,9 @@ MonoBehaviour: ...@@ -515,9 +673,9 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Tilemap Palette Helper id: APV Overlay
index: 12 index: 8
contents: contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 0}
...@@ -526,31 +684,17 @@ MonoBehaviour: ...@@ -526,31 +684,17 @@ MonoBehaviour:
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 0
containerId: overlay-container--right containerId: Floating
displayed: 0 displayed: 1
id: Scene View/Open Tile Palette id: Network Visualization
index: 0 index: 1
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":48.0,"y":48.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 1
collapsed: 0
snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--right
displayed: 0
id: Scene View/Tilemap Focus
index: 4
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":48.0,"y":48.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 48, y: 48} snapOffset: {x: -223.00098, y: -32}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 3
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
...@@ -558,11 +702,11 @@ MonoBehaviour: ...@@ -558,11 +702,11 @@ MonoBehaviour:
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Path id: Scene View/Path
index: 15 index: 14
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":48.0,"y":48.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 48, y: 48} snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -571,12 +715,12 @@ MonoBehaviour: ...@@ -571,12 +715,12 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: APV Overlay id: Scene View/Sprite Swap
index: 6 index: 16
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":48.0,"y":48.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 48, y: 48} snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -585,78 +729,8 @@ MonoBehaviour: ...@@ -585,78 +729,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/TrailRenderer id: SceneView/CamerasOverlay
index: 8 index: 5
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":48.0,"y":48.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 0
containerId: overlay-toolbar__top
displayed: 0
id: Brush Attributes
index: 3
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-toolbar__top
displayed: 1
id: unity-scene-view-camera-mode-toolbar
index: 1
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 25}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 1
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 0
containerId: overlay-toolbar__left
displayed: 0
id: Terrain Tools
index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 0
containerId: overlay-toolbar__left
displayed: 0
id: Brush Masks
index: 1
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--left
displayed: 0
id: Scene View/Lighting Visualization Colors
index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -666,25 +740,11 @@ MonoBehaviour: ...@@ -666,25 +740,11 @@ MonoBehaviour:
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--left
displayed: 1
id: Overlays/OverlayMenu
index: 1
contents: '{"m_Layout":1,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 25}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 1
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Tile Palette Clipboard id: Scene View/Physics Debugger
index: 2 index: 4
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -697,12 +757,12 @@ MonoBehaviour: ...@@ -697,12 +757,12 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Tile Palette Brush Pick id: Scene View/TrailRenderer
index: 6 index: 6
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -711,8 +771,8 @@ MonoBehaviour: ...@@ -711,8 +771,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Sprite Swap id: Scene View/Scene Visibility
index: 16 index: 7
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -725,12 +785,12 @@ MonoBehaviour: ...@@ -725,12 +785,12 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: SceneView/CamerasOverlay id: Scene View/Particles
index: 9 index: 9
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":25.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 24, y: 25} snapOffset: {x: 0, y: 25}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -739,8 +799,8 @@ MonoBehaviour: ...@@ -739,8 +799,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/PBR Validation Settings id: Scene View/Occlusion Culling
index: 11 index: 10
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -753,8 +813,8 @@ MonoBehaviour: ...@@ -753,8 +813,8 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: AINavigationOverlay id: Scene View/Visual Effect
index: 7 index: 12
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -767,21 +827,7 @@ MonoBehaviour: ...@@ -767,21 +827,7 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Animation Rigging id: Scene View/Visual Effect Timeline Control
index: 12
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":24.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 24, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--right
displayed: 1
id: UnityEditor.ProBuilder.MenuActionSettingsOverlay
index: 13 index: 13
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
...@@ -793,24 +839,24 @@ MonoBehaviour: ...@@ -793,24 +839,24 @@ MonoBehaviour:
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 0 - dockPosition: 0
containerId: overlay-toolbar__top containerId: Floating
displayed: 0 displayed: 0
id: unity-tool-contexts-toolbar id: Scene View/Visual Effect Model
index: 0 index: 0
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":true,"m_FloatingSnapOffset":{"x":-235.0,"y":-73.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":3,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 1
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: -235, y: -73}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 3
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Visual Effect id: Scene View/Visual Effect Event Tester
index: 12 index: 14
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -820,11 +866,11 @@ MonoBehaviour: ...@@ -820,11 +866,11 @@ MonoBehaviour:
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 0
containerId: overlay-container--right containerId: overlay-toolbar__top
displayed: 0 displayed: 0
id: Scene View/Visual Effect Timeline Control id: unity-tool-contexts-toolbar
index: 13 index: 2
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
collapsed: 0 collapsed: 0
...@@ -836,13 +882,13 @@ MonoBehaviour: ...@@ -836,13 +882,13 @@ MonoBehaviour:
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 1
id: Scene View/Visual Effect Model id: UnityEditor.SceneViewCameraOverlay
index: 14 index: 9
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
snapOffset: {x: 0, y: 0} snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
layout: 4 layout: 4
...@@ -851,7 +897,7 @@ MonoBehaviour: ...@@ -851,7 +897,7 @@ MonoBehaviour:
- dockPosition: 1 - dockPosition: 1
containerId: overlay-container--right containerId: overlay-container--right
displayed: 0 displayed: 0
id: Scene View/Visual Effect Event Tester id: AINavigationOverlay
index: 15 index: 15
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}' contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0 floating: 0
...@@ -862,39 +908,25 @@ MonoBehaviour: ...@@ -862,39 +908,25 @@ MonoBehaviour:
layout: 4 layout: 4
size: {x: 0, y: 0} size: {x: 0, y: 0}
sizeOverridden: 0 sizeOverridden: 0
- dockPosition: 1
containerId: overlay-container--right
displayed: 0
id: unity-spline-inspector
index: 16
contents: '{"m_Layout":4,"m_Collapsed":false,"m_Folded":false,"m_Floating":false,"m_FloatingSnapOffset":{"x":0.0,"y":0.0},"m_SnapOffsetDelta":{"x":0.0,"y":0.0},"m_FloatingSnapCorner":0,"m_Size":{"x":0.0,"y":0.0},"m_SizeOverridden":false}'
floating: 0
collapsed: 0
snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0
layout: 4
size: {x: 0, y: 0}
sizeOverridden: 0
m_ContainerData: m_ContainerData:
- containerId: overlay-toolbar__top - containerId: overlay-toolbar__top
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-toolbar__left - containerId: overlay-toolbar__left
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-dynamic-panel--left
scrollOffset: 0
- containerId: overlay-container--left - containerId: overlay-container--left
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-container--right - containerId: overlay-container--right
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-dynamic-panel--right
scrollOffset: 0
- containerId: overlay-toolbar__right - containerId: overlay-toolbar__right
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-toolbar__bottom - containerId: overlay-toolbar__bottom
scrollOffset: 0 scrollOffset: 0
- containerId: Floating - containerId: Floating
scrollOffset: 0 scrollOffset: 0
- containerId: overlay-dynamic-panel--left
scrollOffset: 0
- containerId: overlay-dynamic-panel--right
scrollOffset: 0
m_DynamicPanelContainerData: m_DynamicPanelContainerData:
- containerId: overlay-dynamic-panel--left - containerId: overlay-dynamic-panel--left
width: 56 width: 56
...@@ -908,10 +940,10 @@ MonoBehaviour: ...@@ -908,10 +940,10 @@ MonoBehaviour:
overlayData: [] overlayData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0 m_DynamicPanelBehavior: 0
m_WindowGUID: ab5a6f0fbfdc5cb468f66508e5f146f5 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
m_Gizmos: 1 m_Gizmos: 1
m_OverrideSceneCullingMask: 6917529027641081856 m_OverrideSceneCullingMask: 6917529027641081856
m_SceneIsLit: 0 m_SceneIsLit: 1
m_SceneLighting: 1 m_SceneLighting: 1
m_2DMode: 1 m_2DMode: 1
m_isRotationLocked: 0 m_isRotationLocked: 0
...@@ -919,9 +951,9 @@ MonoBehaviour: ...@@ -919,9 +951,9 @@ MonoBehaviour:
m_AudioPlay: 0 m_AudioPlay: 0
m_DebugDrawModesUseInteractiveLightBakingData: 0 m_DebugDrawModesUseInteractiveLightBakingData: 0
m_Position: m_Position:
m_Target: {x: 95.29111, y: 1207.8973, z: 0} m_Target: {x: 632.0484, y: 1166.8389, z: -2.3196595}
speed: 2 speed: 2
m_Value: {x: 95.29111, y: 1207.8973, z: 0} m_Value: {x: 632.0484, y: 1166.8389, z: -2.3196595}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
...@@ -934,10 +966,10 @@ MonoBehaviour: ...@@ -934,10 +966,10 @@ MonoBehaviour:
showFog: 1 showFog: 1
showSkybox: 1 showSkybox: 1
showFlares: 1 showFlares: 1
showImageEffects: 1 showImageEffects: 0
showParticleSystems: 1 showParticleSystems: 1
showVisualEffectGraphs: 1 showVisualEffectGraphs: 1
m_FxEnabled: 0 m_FxEnabled: 1
m_Grid: m_Grid:
xGrid: xGrid:
m_Fade: m_Fade:
...@@ -957,13 +989,13 @@ MonoBehaviour: ...@@ -957,13 +989,13 @@ MonoBehaviour:
m_Size: {x: 1, y: 1} m_Size: {x: 1, y: 1}
zGrid: zGrid:
m_Fade: m_Fade:
m_Target: 1 m_Target: 0
speed: 2 speed: 2
m_Value: 1 m_Value: 0
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
m_Pivot: {x: 0, y: 0, z: 0} m_Pivot: {x: 0, y: 0, z: 0}
m_Size: {x: 1, y: 1} m_Size: {x: 1, y: 1}
m_ShowGrid: 1 m_ShowGrid: 0
m_GridAxis: 1 m_GridAxis: 1
m_gridOpacity: 0.5 m_gridOpacity: 0.5
m_Rotation: m_Rotation:
...@@ -971,17 +1003,17 @@ MonoBehaviour: ...@@ -971,17 +1003,17 @@ MonoBehaviour:
speed: 2 speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1} m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size: m_Size:
m_Target: 44.25233 m_Target: 311.54352
speed: 2 speed: 2
m_Value: 44.25233 m_Value: 311.54352
m_Ortho: m_Ortho:
m_Target: 1 m_Target: 1
speed: 2 speed: 2
m_Value: 1 m_Value: 1
m_CameraSettings: m_CameraSettings:
m_Speed: 1 m_Speed: 2
m_SpeedNormalized: 0.5 m_SpeedNormalized: 1
m_SpeedMin: 0.01 m_SpeedMin: 0.001
m_SpeedMax: 2 m_SpeedMax: 2
m_EasingEnabled: 1 m_EasingEnabled: 1
m_EasingDuration: 0.4 m_EasingDuration: 0.4
...@@ -994,122 +1026,20 @@ MonoBehaviour: ...@@ -994,122 +1026,20 @@ MonoBehaviour:
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
m_LastSceneViewOrtho: 0 m_LastSceneViewOrtho: 0
m_Viewpoint: m_Viewpoint:
m_SceneView: {fileID: 6} m_SceneView: {fileID: 8}
m_CameraOverscanSettings: m_CameraOverscanSettings:
m_Opacity: 50 m_Opacity: 50
m_Scale: 1 m_Scale: 1
m_ReplacementShader: {fileID: 0} m_ReplacementShader: {fileID: 0}
m_ReplacementString: m_ReplacementString:
m_SceneVisActive: 1 m_SceneVisActive: 0
m_LastLockedObject: {fileID: 0} m_LastLockedObject: {fileID: 0}
m_LastDebugDrawMode: m_LastDebugDrawMode:
drawMode: 35 drawMode: 35
name: Contributors / Receivers name: Contributors / Receivers
section: Lighting section: Lighting
m_ViewIsLockedToObject: 0 m_ViewIsLockedToObject: 0
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.ConsoleWindow
m_MinSize: {x: 50, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Console
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Console\u200B"
m_Pos:
serializedVersion: 2
x: 0
y: 604
width: 951
height: 382
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 7c66a740a74845a08dc18bab7f2ffa03, type: 3}
m_Name:
m_EditorClassIdentifier: Unity.Recorder.Editor::UnityEditor.Recorder.RecorderWindow
m_MinSize: {x: 560, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Recorder
m_Image: {fileID: 0}
m_Tooltip:
m_TextWithWhitespace: "Recorder\u200B"
m_Pos:
serializedVersion: 2
x: 0
y: 604
width: 951
height: 382
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
--- !u!114 &9 --- !u!114 &9
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children:
- {fileID: 10}
- {fileID: 12}
m_Position:
serializedVersion: 2
x: 952
y: 0
width: 611
height: 933
m_MinSize: {x: 100, y: 112}
m_MaxSize: {x: 8096, y: 16192}
vertical: 1
controlID: 3979
draggingID: 0
--- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1119,127 +1049,26 @@ MonoBehaviour: ...@@ -1119,127 +1049,26 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: m_Name: ProjectBrowser
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 632
width: 611 width: 1454
height: 466 height: 351
m_MinSize: {x: 202, y: 226} m_MinSize: {x: 231, y: 276}
m_MaxSize: {x: 4002, y: 4026} m_MaxSize: {x: 10001, y: 10026}
m_ActualView: {fileID: 11} m_ActualView: {fileID: 10}
m_Panes: m_Panes:
- {fileID: 10}
- {fileID: 11} - {fileID: 11}
m_Selected: 0 - {fileID: 12}
m_LastSelected: 0
--- !u!114 &11
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Hierarchy
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Hierarchy\u200B"
m_Pos:
serializedVersion: 2
x: 952
y: 79
width: 609
height: 440
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
- m_Data: 54366
m_LastClickedID:
m_Data: 0
m_ExpandedIDs:
- m_Data: -27376
- m_Data: -26502
- m_Data: -20502
- m_Data: -19410
- m_Data: -16146
- m_Data: -6806
- m_Data: -1342
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData:
m_Data: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 10}
m_SearchString:
m_ExpandedScenes: []
m_CurrenRootInstanceID: 0
m_LockTracker:
m_IsLocked: 0
m_CurrentSortingName: TransformSorting
m_WindowGUID: 8e49cb6d5117e7f48bcaabb9b257c061
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 0
y: 466
width: 611
height: 467
m_MinSize: {x: 232, y: 276}
m_MaxSize: {x: 10002, y: 10026}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 13} - {fileID: 13}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 1
--- !u!114 &13 --- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1260,10 +1089,10 @@ MonoBehaviour: ...@@ -1260,10 +1089,10 @@ MonoBehaviour:
m_TextWithWhitespace: "Project\u200B" m_TextWithWhitespace: "Project\u200B"
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 952 x: 0
y: 545 y: 693
width: 609 width: 1453
height: 441 height: 325
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -1288,7 +1117,7 @@ MonoBehaviour: ...@@ -1288,7 +1117,7 @@ MonoBehaviour:
m_SkipHidden: 0 m_SkipHidden: 0
m_SearchArea: 1 m_SearchArea: 1
m_Folders: m_Folders:
- Assets/AppUI/UIToolkit/UXML - Assets/App/UI
m_Globs: [] m_Globs: []
m_ProductIds: m_ProductIds:
m_AnyWithAssetOrigin: 0 m_AnyWithAssetOrigin: 0
...@@ -1296,32 +1125,28 @@ MonoBehaviour: ...@@ -1296,32 +1125,28 @@ MonoBehaviour:
m_ImportLogFlags: 0 m_ImportLogFlags: 0
m_FilterByTypeIntersection: 0 m_FilterByTypeIntersection: 0
m_ViewMode: 1 m_ViewMode: 1
m_StartGridSize: 64 m_StartGridSize: 96
m_LastFolders: m_LastFolders:
- Assets/AppUI/UIToolkit/UXML - Assets/App/UI
m_LastFoldersGridSize: -1 m_LastFoldersGridSize: 96
m_LastProjectPath: D:\Work Games\ssbookminigames\My project m_LastProjectPath: /home/p0wer/development/ssbookminigames/My project
m_LockTracker: m_LockTracker:
m_IsLocked: 0 m_IsLocked: 0
m_LastLocalAssetsSearchArea: 1 m_LastLocalAssetsSearchArea: 1
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 79}
m_SelectedIDs: m_SelectedIDs:
- m_Data: 56184 - m_Data: 58130
m_LastClickedID: m_LastClickedID:
m_Data: 56184 m_Data: 58130
m_ExpandedIDs: m_ExpandedIDs:
- m_Data: 0 - m_Data: 0
- m_Data: 56000 - m_Data: 56322
- m_Data: 56002 - m_Data: 56682
- m_Data: 56004 - m_Data: 56684
- m_Data: 56006 - m_Data: 57236
- m_Data: 56008 - m_Data: 1000000000
- m_Data: 56010 - m_Data: 2147483647
- m_Data: 56112
- m_Data: 56114
- m_Data: 56186
- m_Data: 56192
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1339,7 +1164,7 @@ MonoBehaviour: ...@@ -1339,7 +1164,7 @@ MonoBehaviour:
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_TrimLeadingAndTrailingWhitespace: 0 m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 12} m_ClientGUIView: {fileID: 0}
m_SearchString: m_SearchString:
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
...@@ -1354,13 +1179,9 @@ MonoBehaviour: ...@@ -1354,13 +1179,9 @@ MonoBehaviour:
m_Data: 0 m_Data: 0
m_ExpandedIDs: m_ExpandedIDs:
- m_Data: 0 - m_Data: 0
- m_Data: 56002 - m_Data: 56322
- m_Data: 56004 - m_Data: 1000000000
- m_Data: 56006 - m_Data: 2147483647
- m_Data: 56008
- m_Data: 56010
- m_Data: 56112
- m_Data: 56186
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1388,12 +1209,13 @@ MonoBehaviour: ...@@ -1388,12 +1209,13 @@ MonoBehaviour:
m_ResourceFile: m_ResourceFile:
m_ListAreaState: m_ListAreaState:
m_SelectedInstanceIDs: m_SelectedInstanceIDs:
- m_Data: 54366 - m_Data: 31262
m_LastClickedInstanceID: 54366 m_LastClickedInstanceID: 31262
m_HadKeyboardFocusLastEvent: 1 m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: m_ExpandedInstanceIDs:
- m_Data: 60788 - m_Data: 46526
- m_Data: 60258 - m_Data: 61214
- m_Data: 54106
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1411,7 +1233,7 @@ MonoBehaviour: ...@@ -1411,7 +1233,7 @@ MonoBehaviour:
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_TrimLeadingAndTrailingWhitespace: 0 m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 12} m_ClientGUIView: {fileID: 0}
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
m_InstanceID: 0 m_InstanceID: 0
...@@ -1420,9 +1242,143 @@ MonoBehaviour: ...@@ -1420,9 +1242,143 @@ MonoBehaviour:
m_ResourceFile: m_ResourceFile:
m_NewAssetIndexInList: -1 m_NewAssetIndexInList: -1
m_ScrollPosition: {x: 0, y: 0} m_ScrollPosition: {x: 0, y: 0}
m_GridSize: 64 m_GridSize: 96
m_SkipHiddenPackages: 0 m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 166.8 m_DirectoriesAreaWidth: 207
--- !u!114 &11
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Console
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Console\u200B"
m_Pos:
serializedVersion: 2
x: 0
y: 693
width: 1453
height: 325
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12071, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.AnimationWindow
m_MinSize: {x: 50, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Animation
m_Image: {fileID: -8166618308981325432, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Animation\u200B"
m_Pos:
serializedVersion: 2
x: 1
y: 678
width: 1464
height: 349
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
m_LockTracker:
m_IsLocked: 0
m_LastSelectedObjectID: 31262
--- !u!114 &13
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier: UnityEditor.Graphs.dll::UnityEditor.Graphs.AnimatorControllerTool
m_MinSize: {x: 50, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Animator
m_Image: {fileID: -1673928668082335149, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_TextWithWhitespace: "Animator\u200B"
m_Pos:
serializedVersion: 2
x: 0
y: 680
width: 1466
height: 359
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_ContainerData: []
m_DynamicPanelContainerData: []
m_OverlaysVisible: 1
m_DynamicPanelBehavior: 0
m_ViewTransforms:
m_KeySerializationHelper: []
m_ValueSerializationHelper: []
m_PreviewAnimator: {fileID: 0}
m_AnimatorController: {fileID: 0}
m_BreadCrumbs: []
stateMachineGraph: {fileID: 0}
stateMachineGraphGUI: {fileID: 0}
blendTreeGraph: {fileID: 0}
blendTreeGraphGUI: {fileID: 0}
m_AutoLiveLink: 1
m_MiniTool: 0
m_LockTracker:
m_IsLocked: 0
m_CurrentEditor: 0
m_LayerEditor:
m_SelectedLayerIndex: 0
--- !u!114 &14 --- !u!114 &14
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
...@@ -1433,17 +1389,17 @@ MonoBehaviour: ...@@ -1433,17 +1389,17 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: m_Name: InspectorWindow
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 1563 x: 1454
y: 0 y: 0
width: 357 width: 450
height: 933 height: 983
m_MinSize: {x: 275, y: 50} m_MinSize: {x: 276, y: 76}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4001, y: 4026}
m_ActualView: {fileID: 15} m_ActualView: {fileID: 15}
m_Panes: m_Panes:
- {fileID: 15} - {fileID: 15}
...@@ -1470,10 +1426,10 @@ MonoBehaviour: ...@@ -1470,10 +1426,10 @@ MonoBehaviour:
m_TextWithWhitespace: "Inspector\u200B" m_TextWithWhitespace: "Inspector\u200B"
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 1563 x: 1454
y: 79 y: 61
width: 356 width: 449
height: 907 height: 957
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -1490,7 +1446,7 @@ MonoBehaviour: ...@@ -1490,7 +1446,7 @@ MonoBehaviour:
m_ObjectsLockedBeforeSerialization: [] m_ObjectsLockedBeforeSerialization: []
m_InstanceIDsLockedBeforeSerialization: m_InstanceIDsLockedBeforeSerialization:
m_PreviewResizer: m_PreviewResizer:
m_CachedPref: 160 m_CachedPref: -160
m_ControlHash: -371814159 m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: -1 m_LastInspectedObjectInstanceID: -1
......
...@@ -19,7 +19,7 @@ MonoBehaviour: ...@@ -19,7 +19,7 @@ MonoBehaviour:
width: 1904 width: 1904
height: 1039 height: 1039
m_ShowMode: 4 m_ShowMode: 4
m_Title: Project m_Title: Console
m_RootView: {fileID: 2} m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
...@@ -119,7 +119,7 @@ MonoBehaviour: ...@@ -119,7 +119,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 112} m_MinSize: {x: 300, y: 112}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
controlID: 4119 controlID: 8825
draggingID: 0 draggingID: 0
--- !u!114 &6 --- !u!114 &6
MonoBehaviour: MonoBehaviour:
...@@ -145,7 +145,7 @@ MonoBehaviour: ...@@ -145,7 +145,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 112} m_MinSize: {x: 200, y: 112}
m_MaxSize: {x: 16192, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
controlID: 4120 controlID: 8826
draggingID: 0 draggingID: 0
--- !u!114 &7 --- !u!114 &7
MonoBehaviour: MonoBehaviour:
...@@ -171,7 +171,7 @@ MonoBehaviour: ...@@ -171,7 +171,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 56} m_MinSize: {x: 200, y: 56}
m_MaxSize: {x: 16192, y: 8096} m_MaxSize: {x: 16192, y: 8096}
vertical: 0 vertical: 0
controlID: 4121 controlID: 8827
draggingID: 0 draggingID: 0
--- !u!114 &8 --- !u!114 &8
MonoBehaviour: MonoBehaviour:
...@@ -236,7 +236,7 @@ MonoBehaviour: ...@@ -236,7 +236,7 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: ProjectBrowser m_Name: ConsoleWindow
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
...@@ -245,16 +245,16 @@ MonoBehaviour: ...@@ -245,16 +245,16 @@ MonoBehaviour:
y: 632 y: 632
width: 1454 width: 1454
height: 351 height: 351
m_MinSize: {x: 231, y: 276} m_MinSize: {x: 101, y: 126}
m_MaxSize: {x: 10001, y: 10026} m_MaxSize: {x: 4001, y: 4026}
m_ActualView: {fileID: 16} m_ActualView: {fileID: 17}
m_Panes: m_Panes:
- {fileID: 16} - {fileID: 16}
- {fileID: 17} - {fileID: 17}
- {fileID: 18} - {fileID: 18}
- {fileID: 19} - {fileID: 19}
m_Selected: 0 m_Selected: 1
m_LastSelected: 1 m_LastSelected: 0
--- !u!114 &11 --- !u!114 &11
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
...@@ -706,27 +706,47 @@ MonoBehaviour: ...@@ -706,27 +706,47 @@ MonoBehaviour:
m_TreeViewState: m_TreeViewState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
- m_Data: 64392 - m_Data: 31262
m_LastClickedID: m_LastClickedID:
m_Data: 64392 m_Data: 0
m_ExpandedIDs: m_ExpandedIDs:
- m_Data: -43612 - m_Data: -35018
- m_Data: -35028 - m_Data: -34754
- m_Data: -27586 - m_Data: -33834
- m_Data: -17086 - m_Data: -33598
- m_Data: -16000 - m_Data: -32484
- m_Data: -6542 - m_Data: -22008
- m_Data: -5310 - m_Data: -21544
- m_Data: -5188 - m_Data: -14382
- m_Data: -5014 - m_Data: -13636
- m_Data: -4876 - m_Data: -11440
- m_Data: -4218 - m_Data: -9338
- m_Data: -1344 - m_Data: -9128
- m_Data: 60786 - m_Data: -6144
- m_Data: 60858 - m_Data: -5192
- m_Data: 60864 - m_Data: -4966
- m_Data: 60924 - m_Data: -3018
- m_Data: 70810 - m_Data: -1342
- m_Data: -12
- m_Data: 56188
- m_Data: 56206
- m_Data: 56210
- m_Data: 58072
- m_Data: 58082
- m_Data: 58096
- m_Data: 58462
- m_Data: 58466
- m_Data: 58492
- m_Data: 58502
- m_Data: 58958
- m_Data: 58968
- m_Data: 58988
- m_Data: 62456
- m_Data: 62476
- m_Data: 63974
- m_Data: 64000
- m_Data: 64600
- m_Data: 64632
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -744,7 +764,7 @@ MonoBehaviour: ...@@ -744,7 +764,7 @@ MonoBehaviour:
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 0 m_IsRenamingFilename: 0
m_TrimLeadingAndTrailingWhitespace: 0 m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 0} m_ClientGUIView: {fileID: 8}
m_SearchString: m_SearchString:
m_ExpandedScenes: [] m_ExpandedScenes: []
m_CurrenRootInstanceID: 0 m_CurrenRootInstanceID: 0
...@@ -1361,9 +1381,9 @@ MonoBehaviour: ...@@ -1361,9 +1381,9 @@ MonoBehaviour:
m_AudioPlay: 0 m_AudioPlay: 0
m_DebugDrawModesUseInteractiveLightBakingData: 0 m_DebugDrawModesUseInteractiveLightBakingData: 0
m_Position: m_Position:
m_Target: {x: 616.9188, y: 1194.7426, z: -1.9342693} m_Target: {x: 632.0484, y: 1166.8389, z: -2.3196595}
speed: 2 speed: 2
m_Value: {x: 616.9188, y: 1194.7426, z: -1.9342693} m_Value: {x: 632.0484, y: 1166.8389, z: -2.3196595}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
...@@ -1413,9 +1433,9 @@ MonoBehaviour: ...@@ -1413,9 +1433,9 @@ MonoBehaviour:
speed: 2 speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1} m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size: m_Size:
m_Target: 273.00452 m_Target: 311.54352
speed: 2 speed: 2
m_Value: 273.00452 m_Value: 311.54352
m_Ortho: m_Ortho:
m_Target: 1 m_Target: 1
speed: 2 speed: 2
...@@ -1498,7 +1518,7 @@ MonoBehaviour: ...@@ -1498,7 +1518,7 @@ MonoBehaviour:
m_SkipHidden: 0 m_SkipHidden: 0
m_SearchArea: 1 m_SearchArea: 1
m_Folders: m_Folders:
- Assets/Scenes - Assets/App/UI
m_Globs: [] m_Globs: []
m_ProductIds: m_ProductIds:
m_AnyWithAssetOrigin: 0 m_AnyWithAssetOrigin: 0
...@@ -1508,21 +1528,22 @@ MonoBehaviour: ...@@ -1508,21 +1528,22 @@ MonoBehaviour:
m_ViewMode: 1 m_ViewMode: 1
m_StartGridSize: 96 m_StartGridSize: 96
m_LastFolders: m_LastFolders:
- Assets/Scenes - Assets/App/UI
m_LastFoldersGridSize: 96 m_LastFoldersGridSize: 96
m_LastProjectPath: /home/p0wer/development/ssbookminigames/My project m_LastProjectPath: /home/p0wer/development/ssbookminigames/My project
m_LockTracker: m_LockTracker:
m_IsLocked: 0 m_IsLocked: 0
m_LastLocalAssetsSearchArea: 1 m_LastLocalAssetsSearchArea: 1
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 415} scrollPos: {x: 0, y: 79}
m_SelectedIDs: m_SelectedIDs:
- m_Data: 57350 - m_Data: 58130
m_LastClickedID: m_LastClickedID:
m_Data: 57350 m_Data: 58130
m_ExpandedIDs: m_ExpandedIDs:
- m_Data: 0 - m_Data: 0
- m_Data: 56162 - m_Data: 56322
- m_Data: 56682
- m_Data: 1000000000 - m_Data: 1000000000
- m_Data: 2147483647 - m_Data: 2147483647
m_RenameOverlay: m_RenameOverlay:
...@@ -1557,7 +1578,7 @@ MonoBehaviour: ...@@ -1557,7 +1578,7 @@ MonoBehaviour:
m_Data: 0 m_Data: 0
m_ExpandedIDs: m_ExpandedIDs:
- m_Data: 0 - m_Data: 0
- m_Data: 56162 - m_Data: 56322
- m_Data: 1000000000 - m_Data: 1000000000
- m_Data: 2147483647 - m_Data: 2147483647
m_RenameOverlay: m_RenameOverlay:
...@@ -1587,8 +1608,8 @@ MonoBehaviour: ...@@ -1587,8 +1608,8 @@ MonoBehaviour:
m_ResourceFile: m_ResourceFile:
m_ListAreaState: m_ListAreaState:
m_SelectedInstanceIDs: m_SelectedInstanceIDs:
- m_Data: 64392 - m_Data: 31262
m_LastClickedInstanceID: 64392 m_LastClickedInstanceID: 31262
m_HadKeyboardFocusLastEvent: 0 m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: m_ExpandedInstanceIDs:
- m_Data: 46526 - m_Data: 46526
...@@ -1611,7 +1632,7 @@ MonoBehaviour: ...@@ -1611,7 +1632,7 @@ MonoBehaviour:
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_TrimLeadingAndTrailingWhitespace: 0 m_TrimLeadingAndTrailingWhitespace: 0
m_ClientGUIView: {fileID: 10} m_ClientGUIView: {fileID: 0}
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
m_InstanceID: 0 m_InstanceID: 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment