Commit 5bf877b7 authored by Yousef Sameh's avatar Yousef Sameh

signup

parent 42e75487
using System;
using System.Collections.Generic;
using System.Threading;
using Cysharp.Threading.Tasks;
using OneOf;
using Supabase.Realtime;
using Supabase.Realtime.PostgresChanges;
using UnityEngine;
......@@ -51,23 +53,21 @@ public class ActivityService : Singleton<ActivityService>
}
}
public async UniTask LoadLatest5Activies()
public async UniTask<OneOf<List<Activity>, string>> LoadLatest3Activies()
{
try
{
var activities = await supabase.From<Activity>()
.Order("created_at", Supabase.Postgrest.Constants.Ordering.Descending)
.Limit(5)
.Limit(3)
.Get();
foreach (var activity in activities.Models)
{
OnNewActivityReceived?.Invoke(activity);
}
return activities.Models;
}
catch (Exception e)
{
Debug.LogError($"[ActivityService] Error loading activities: {e.Message}");
return e.Message;
}
}
......
......@@ -53,7 +53,19 @@ public class HomeController : MonoBehaviour
{
OnUserChange(UserService.Instance.CurrentUser);
ActivityService.Instance.Initialize();
ActivityService.Instance.LoadLatest5Activies();
var activiesOrError = await ActivityService.Instance.LoadLatest3Activies();
activiesOrError.Switch(activities =>
{
var reversedActivities = activities.AsEnumerable().Reverse();
foreach (var activity in reversedActivities)
{
var Label = new Label($"<color=#FED700>{activity.Message.Split(" ")[0]}</color> {activity.Message.Split(" ")[1..].Aggregate((a, b) => a + " " + b)}");
activityScrollView.Add(Label);
}
}, error =>
{
Debug.LogError($"Failed to load activities: {error}");
});
FakeActivity();
}
......@@ -64,7 +76,7 @@ public class HomeController : MonoBehaviour
{
await UniTask.Delay(2000);
var ran = Random.Range(0, 100);
print($"Fake Activity: حصلت على {ran} نقطة خبرة!");
OnNewActivityReceived(new Activity { Message = $"لقد حصلت على {ran} نقطة خبرة!" });
}
}
......@@ -97,8 +109,26 @@ public class HomeController : MonoBehaviour
var name = activity.Message.Split(" ")[0];
var label = new Label($"<color=#FED700>{name}</color> {activity.Message[name.Length..]}");
var oldHighvalue = activityScrollView.horizontalScroller.highValue;
activityScrollView.Add(label);
activityScrollView.contentContainer.RegisterCallbackOnce<GeometryChangedEvent>(_ =>
{
var targetScroll = activityScrollView.horizontalScroller.highValue;
var currentScroll = activityScrollView.scrollOffset;
activityScrollView.schedule.Execute(() =>
{
var newOffset = Mathf.Lerp(currentScroll.x, targetScroll, 0.15f);
if (Mathf.Abs(targetScroll - newOffset) < 1f)
{
activityScrollView.scrollOffset = new Vector2(targetScroll, currentScroll.y);
return;
}
currentScroll.x = newOffset;
activityScrollView.scrollOffset = currentScroll;
}).Every(16).Until(() => Mathf.Abs(activityScrollView.scrollOffset.x - targetScroll) < 1f);
});
}
}
......@@ -8,6 +8,12 @@ public class LoginController : MonoBehaviour
private TextField passwordInputField;
private Button loginButton;
private TextField signUpFullname;
private TextField signUpUsername;
private TextField signUpemail;
private TextField signUppassword;
private Button signUpButton;
private VisualElement loginRoot;
private VisualElement registerRoot;
......@@ -20,25 +26,46 @@ public class LoginController : MonoBehaviour
passwordInputField = loginRoot.Q<TextField>("LoginPassword");
loginButton = loginRoot.Q<Button>("Login");
signUpFullname = registerRoot.Q<TextField>("FullName");
signUpUsername = registerRoot.Q<TextField>("Username");
signUpemail = registerRoot.Q<TextField>("Email");
signUppassword = registerRoot.Q<TextField>("Password");
signUpButton = registerRoot.Q<Button>("Register");
loginButton.clicked += Login;
signUpButton.clicked += ShowRegister;
}
private void OnDisable()
{
loginButton.clicked -= Login;
signUpButton.clicked -= ShowRegister;
}
private async void Login()
{
string email = emailInputField.text;
string password = passwordInputField.text;
print(email);
var login = await SupabaseAuthentication.Instance.LogIn(email, password);
login.Switch(
(_) => { },
(string error) => { Debug.LogError(error); }
);
}
public async void ShowRegister()
{
string fullname = signUpFullname.text;
string username = signUpUsername.text;
string email = signUpemail.text;
string password = signUppassword.text;
var signUp = await SupabaseAuthentication.Instance.SignUp(email, password, username, fullname);
signUp.Switch(
(_) => { },
(string error) => { Debug.LogError(error); }
);
}
......
......@@ -40,28 +40,28 @@
<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"/>
<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="FullName" 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:TextField>
</ui:VisualElement>
<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"/>
<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="Email" 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:TextField>
</ui:VisualElement>
<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"/>
<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="Username" 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:TextField>
</ui:VisualElement>
<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"/>
<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="Password" 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:TextField>
</ui:VisualElement>
......
......@@ -338,62 +338,7 @@
<ui:Button text="&#1581;&#1601;&#1592; &#1575;&#1604;&#1578;&#1594;&#1610;&#1610;&#1585;&#1575;&#1578;" language-direction="RTL" icon-image="" name="PlayButton" class="play-game-button" style="background-color: rgb(62, 45, 206); color: rgb(255, 255, 255); margin-top: 40px;"/>
</ui:VisualElement>
</ui:VisualElement>
<ui:VisualElement name="MenuPanel" style="position: absolute; width: 100%; height: 100%; flex-direction: row; translate: -100% 0; transition-duration: 0.1s;">
<ui:VisualElement name="Menu" style="flex-grow: 0; height: 100%; width: 75%; position: relative; background-color: rgb(255, 255, 255);">
<ui:VisualElement name="Header" class="padding" style="flex-grow: 0; height: 425px; background-color: rgb(14, 36, 55); justify-content: space-between;">
<ui:VisualElement name="ProfileImage" style="flex-grow: 0; position: relative; height: 125px; width: 125px; left: 0; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; border-top-width: 3px; border-right-width: 3px; border-bottom-width: 3px; border-left-width: 3px; border-left-color: rgb(254, 215, 0); border-right-color: rgb(254, 215, 0); border-top-color: rgb(254, 215, 0); border-bottom-color: rgb(254, 215, 0); background-image: url(&quot;project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_00_l_Sample.png?fileID=2800000&amp;guid=01e095d6eb9c54de18317c5e7f0df125&amp;type=3#UserPicture_00_l_Sample&quot;); -unity-background-scale-mode: scale-to-fit; flex-shrink: 0;"/>
<ui:Label text="Abdo" name="Name" class="base-text-bold" style="-unity-text-align: upper-left; color: rgb(255, 255, 255); font-size: 73px;"/>
<ui:VisualElement name="Details" style="flex-grow: 0; flex-direction: row; justify-content: flex-start; align-items: flex-end; height: 74px;">
<ui:VisualElement name="1" style="flex-grow: 0; background-image: none; height: 86%; width: 286px; background-color: rgba(254, 215, 0, 0.15); border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: space-evenly; margin-left: 0; flex-direction: row-reverse;">
<ui:Label text=" &#1605;&#1581;&#1578;&#1585;&#1601; " language-direction="RTL" name="Rank" class="base-text-bold" style="font-size: 25px; color: rgb(254, 215, 0); -unity-text-align: middle-center; position: relative; translate: 0% 2px;"/>
<ui:Label text="2,450 XP" language-direction="RTL" name="Xp" class="base-text-bold" style="font-size: 25px; color: rgb(254, 215, 0); -unity-text-align: middle-center; position: relative; translate: 0% 2px;"/>
</ui:VisualElement>
</ui:VisualElement>
</ui:VisualElement>
<ui:Button text="" name="OpenRankPanelButton" class="menu-button" style="margin-top: 40px;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/military_tech@3x.png?fileID=2800000&amp;guid=0fbda5b44b3a23945a79b7a8a358482a&amp;type=3#military_tech@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1585;&#1578;&#1576;&#1578;&#1610;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenSettingButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/settings@3x.png?fileID=2800000&amp;guid=22bd2adfdb425914c83dfc0ed36951e4&amp;type=3#settings@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1575;&#1604;&#1573;&#1593;&#1583;&#1575;&#1583;&#1575;&#1578;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenHowToPlayButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/help_outline@3x.png?fileID=2800000&amp;guid=9fa2f33cc225ad24887bc600f4d20a6a&amp;type=3#help_outline@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1603;&#1610;&#1601;&#1610;&#1577; &#1575;&#1604;&#1604;&#1593;&#1576;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenAboutButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/information.png?fileID=2800000&amp;guid=f96ea4f0c864e1e45852c7516b0ed124&amp;type=3#information" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1581;&#1608;&#1604;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="Logout" class="menu-button" style="position: absolute; bottom: 0; width: 100%;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center; 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-width: 4px;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/logout@3x.png?fileID=2800000&amp;guid=85762d9df90c5cd478b28c4c9b918482&amp;type=3#logout@3x" tint-color="rgb(245, 3, 45)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1578;&#1587;&#1580;&#1610;&#1604; &#1575;&#1604;&#1582;&#1585;&#1608;&#1580;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(245, 3, 45); -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:VisualElement>
</ui:Button>
</ui:VisualElement>
<ui:Button text="" name="CloseMenuButton" style="flex-grow: 1; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; background-color: rgba(0, 0, 0, 0.5); border-top-width: 0; border-right-width: 0; border-bottom-width: 0; border-left-width: 0;"/>
</ui:VisualElement>
<ui:VisualElement name="RankingSystemPanel" style="flex-grow: 0; width: 100%; height: 83%; background-color: rgb(255, 255, 255); position: absolute; top: 10%; left: 0; display: none; opacity: 0;">
<ui:VisualElement name="RankingSystemPanel" style="flex-grow: 0; width: 100%; height: 83%; background-color: rgb(255, 255, 255); position: absolute; top: 238px; left: -2px; display: none; opacity: 0;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1;">
<ui:VisualElement name="ClosePanel" style="flex-grow: 0; flex-direction: row; align-items: center; justify-content: flex-end;">
<ui:Label text="&#1606;&#1592;&#1575;&#1605; &#1575;&#1604;&#1585;&#1578;&#1576;" class="base-text-bold" style="font-size: 50px;"/>
......@@ -403,14 +348,14 @@
<ui:ScrollView name="NotificationsList" horizontal-scroller-visibility="Hidden" vertical-scroller-visibility="Hidden" style="height: auto; width: 100%; flex-grow: 1; margin-top: 0;">
<ui:VisualElement name="Contant" style="flex-grow: 0; border-top-width: 0; border-right-width: 0; border-bottom-width: 0; border-left-width: 0; border-top-left-radius: 75px; border-top-right-radius: 75px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; background-color: rgb(255, 255, 255); display: flex;">
<ui:VisualElement name="RankSlot" enabled="true" class="game-panel rank-slot current-rank-slot">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; justify-content: flex-start; flex-direction: column; align-items: flex-end; padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; width: 100%;">
<ui:VisualElement name="Padding" enabled="true" class="padding" style="flex-grow: 1; justify-content: flex-start; flex-direction: column; align-items: flex-end; padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; width: 100%;">
<ui:VisualElement name="RankName" style="flex-grow: 1; flex-direction: row-reverse; margin-bottom: 25px;">
<ui:VisualElement name="NotificationsImageBackground" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgba(14, 36, 55, 0.15); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-left: 50px;">
<ui:Image source="project://database/Assets/Art/export/shield@3x.png?fileID=2800000&amp;guid=df23d499387dc634bba3eee0b85d0088&amp;type=3#shield@3x" tint-color="rgb(14, 36, 55)" name="NotificationsImage" style="flex-grow: 0; height: 60px; width: 60px;"/>
</ui:VisualElement>
<ui:VisualElement name="GameDetailsPanel" style="flex-grow: 0; height: 100px; width: auto; justify-content: space-between;">
<ui:Label text="&#1605;&#1576;&#1578;&#1583;&#1571;" name="NotificationsName" language-direction="RTL" class="base-text-bold" style="font-size: 30px; height: auto; flex-shrink: 0; -unity-text-generator: advanced; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&amp;guid=9edc60294a97d7f4e87aee01d4e4d689&amp;type=3#TSHakwaty-ExtraBold&quot;); color: rgb(14, 36, 55);"/>
<ui:Label text="1,000 &#8212; 4,999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
<ui:Label text="0 &#8212; 999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
</ui:VisualElement>
</ui:VisualElement>
<CustomProgressBar background-color="rgb(229, 229, 229)" fill-color="rgb(14, 36, 55)" left-text="2,450 pts " right-text="5,000 pts " style="width: 100%;"/>
......@@ -418,14 +363,14 @@
</ui:VisualElement>
</ui:VisualElement>
<ui:VisualElement name="RankSlot" enabled="false" class="game-panel rank-slot">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; justify-content: flex-start; flex-direction: column; align-items: flex-end; padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; width: 100%;">
<ui:VisualElement name="Padding" enabled="false" class="padding" style="flex-grow: 1; justify-content: flex-start; flex-direction: column; align-items: flex-end; padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; width: 100%;">
<ui:VisualElement name="RankName" style="flex-grow: 1; flex-direction: row-reverse; margin-bottom: 25px;">
<ui:VisualElement name="NotificationsImageBackground" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgba(28, 93, 85, 0.15); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-left: 50px;">
<ui:Image source="project://database/Assets/Art/export/psychology@3x.png?fileID=2800000&amp;guid=c3651e8064bc32d408cbcf02b0b19e8d&amp;type=3#psychology@3x" tint-color="rgb(28, 93, 85)" name="NotificationsImage" style="flex-grow: 0; height: 60px; width: 60px;"/>
</ui:VisualElement>
<ui:VisualElement name="GameDetailsPanel" style="flex-grow: 0; height: 100px; width: auto; justify-content: space-between;">
<ui:Label text="&#1607;&#1575;&#1608;&#1610;" name="NotificationsName" language-direction="RTL" class="base-text-bold" style="font-size: 30px; height: auto; flex-shrink: 0; -unity-text-generator: advanced; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&amp;guid=9edc60294a97d7f4e87aee01d4e4d689&amp;type=3#TSHakwaty-ExtraBold&quot;); color: rgb(28, 93, 85);"/>
<ui:Label text="1,000 &#8212; 4,999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
<ui:Label text="1000 &#8212; 2499 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
</ui:VisualElement>
</ui:VisualElement>
<CustomProgressBar background-color="rgb(229, 229, 229)" fill-color="rgb(28, 93, 85)" left-text="2,450 pts " right-text="5,000 pts " style="width: 100%;"/>
......@@ -440,7 +385,7 @@
</ui:VisualElement>
<ui:VisualElement name="GameDetailsPanel" style="flex-grow: 0; height: 100px; width: auto; justify-content: space-between;">
<ui:Label text="&#1605;&#1581;&#1578;&#1585;&#1601;" name="NotificationsName" language-direction="RTL" class="base-text-bold" style="font-size: 30px; height: auto; flex-shrink: 0; -unity-text-generator: advanced; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&amp;guid=9edc60294a97d7f4e87aee01d4e4d689&amp;type=3#TSHakwaty-ExtraBold&quot;); color: rgb(62, 45, 206);"/>
<ui:Label text="1,000 &#8212; 4,999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
<ui:Label text="2500 &#8212; 3999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
</ui:VisualElement>
</ui:VisualElement>
<CustomProgressBar background-color="rgb(229, 229, 229)" fill-color="rgb(62, 45, 206)" left-text="2,450 pts " right-text="5,000 pts " style="width: 100%;"/>
......@@ -455,7 +400,7 @@
</ui:VisualElement>
<ui:VisualElement name="GameDetailsPanel" style="flex-grow: 0; height: 100px; width: auto; justify-content: space-between;">
<ui:Label text="&#1575;&#1587;&#1591;&#1608;&#1585;&#1610;" name="NotificationsName" language-direction="RTL" class="base-text-bold" style="font-size: 30px; height: auto; flex-shrink: 0; -unity-text-generator: advanced; -unity-font-definition: url(&quot;project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&amp;guid=9edc60294a97d7f4e87aee01d4e4d689&amp;type=3#TSHakwaty-ExtraBold&quot;); color: rgb(245, 97, 26);"/>
<ui:Label text="1,000 &#8212; 4,999 &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
<ui:Label text="4000+ &#1606;&#1602;&#1591;&#1577;" name="NotificationsTime" language-direction="RTL" class="base-text-bold" style="font-size: 28px; height: auto; flex-shrink: 0; color: rgb(158, 158, 158);"/>
</ui:VisualElement>
</ui:VisualElement>
<CustomProgressBar background-color="rgb(229, 229, 229)" fill-color="rgb(245, 97, 26)" left-text="2,450 pts " right-text="5,000 pts " style="width: 100%;"/>
......@@ -649,4 +594,59 @@
</ui:ScrollView>
</ui:VisualElement>
</ui:VisualElement>
<ui:VisualElement name="MenuPanel" style="position: absolute; width: 100%; height: 100%; flex-direction: row; translate: -100% 0; transition-duration: 0.1s;">
<ui:VisualElement name="Menu" style="flex-grow: 0; height: 100%; width: 75%; position: relative; background-color: rgb(255, 255, 255);">
<ui:VisualElement name="Header" class="padding" style="flex-grow: 0; height: 425px; background-color: rgb(14, 36, 55); justify-content: space-between;">
<ui:VisualElement name="ProfileImage" style="flex-grow: 0; position: relative; height: 125px; width: 125px; left: 0; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; border-top-width: 3px; border-right-width: 3px; border-bottom-width: 3px; border-left-width: 3px; border-left-color: rgb(254, 215, 0); border-right-color: rgb(254, 215, 0); border-top-color: rgb(254, 215, 0); border-bottom-color: rgb(254, 215, 0); background-image: url(&quot;project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_00_l_Sample.png?fileID=2800000&amp;guid=01e095d6eb9c54de18317c5e7f0df125&amp;type=3#UserPicture_00_l_Sample&quot;); -unity-background-scale-mode: scale-to-fit; flex-shrink: 0;"/>
<ui:Label text="Abdo" name="Name" class="base-text-bold" style="-unity-text-align: upper-left; color: rgb(255, 255, 255); font-size: 73px;"/>
<ui:VisualElement name="Details" style="flex-grow: 0; flex-direction: row; justify-content: flex-start; align-items: flex-end; height: 74px;">
<ui:VisualElement name="1" style="flex-grow: 0; background-image: none; height: 86%; width: 286px; background-color: rgba(254, 215, 0, 0.15); border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: space-evenly; margin-left: 0; flex-direction: row-reverse;">
<ui:Label text=" &#1605;&#1581;&#1578;&#1585;&#1601; " language-direction="RTL" name="Rank" class="base-text-bold" style="font-size: 25px; color: rgb(254, 215, 0); -unity-text-align: middle-center; position: relative; translate: 0% 2px;"/>
<ui:Label text="2,450 XP" language-direction="RTL" name="Xp" class="base-text-bold" style="font-size: 25px; color: rgb(254, 215, 0); -unity-text-align: middle-center; position: relative; translate: 0% 2px;"/>
</ui:VisualElement>
</ui:VisualElement>
</ui:VisualElement>
<ui:Button text="" name="OpenRankPanelButton" class="menu-button" style="margin-top: 40px;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/military_tech@3x.png?fileID=2800000&amp;guid=0fbda5b44b3a23945a79b7a8a358482a&amp;type=3#military_tech@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1585;&#1578;&#1576;&#1578;&#1610;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenSettingButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/settings@3x.png?fileID=2800000&amp;guid=22bd2adfdb425914c83dfc0ed36951e4&amp;type=3#settings@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1575;&#1604;&#1573;&#1593;&#1583;&#1575;&#1583;&#1575;&#1578;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenHowToPlayButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/help_outline@3x.png?fileID=2800000&amp;guid=9fa2f33cc225ad24887bc600f4d20a6a&amp;type=3#help_outline@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1603;&#1610;&#1601;&#1610;&#1577; &#1575;&#1604;&#1604;&#1593;&#1576;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="OpenAboutButton" class="menu-button">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/information.png?fileID=2800000&amp;guid=f96ea4f0c864e1e45852c7516b0ed124&amp;type=3#information" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1581;&#1608;&#1604;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -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:VisualElement>
</ui:Button>
<ui:Button text="" name="Logout" class="menu-button" style="position: absolute; bottom: 0; width: 100%;">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center; 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-width: 4px;">
<ui:VisualElement name="Image" style="flex-grow: 0; background-image: none; height: 100px; width: 100px; background-color: rgb(250, 250, 250); border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-right-radius: 40px; border-bottom-left-radius: 40px; border-left-color: rgba(255, 255, 255, 0.25); border-right-color: rgba(255, 255, 255, 0.25); border-top-color: rgba(255, 255, 255, 0.25); border-bottom-color: rgba(255, 255, 255, 0.25); border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; align-items: center; justify-content: center; margin-right: 0; margin-left: 35px;">
<ui:Image source="project://database/Assets/Art/export/logout@3x.png?fileID=2800000&amp;guid=85762d9df90c5cd478b28c4c9b918482&amp;type=3#logout@3x" tint-color="rgb(245, 3, 45)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="&#1578;&#1587;&#1580;&#1610;&#1604; &#1575;&#1604;&#1582;&#1585;&#1608;&#1580;" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(245, 3, 45); -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:VisualElement>
</ui:Button>
</ui:VisualElement>
<ui:Button text="" name="CloseMenuButton" style="flex-grow: 1; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; background-color: rgba(0, 0, 0, 0.5); border-top-width: 0; border-right-width: 0; border-bottom-width: 0; border-left-width: 0;"/>
</ui:VisualElement>
</ui:UXML>
......@@ -24,7 +24,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 112}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 14859
controlID: 17415
draggingID: 0
--- !u!114 &2
MonoBehaviour:
......@@ -97,7 +97,7 @@ MonoBehaviour:
m_HSlider: 0
m_VSlider: 0
m_IgnoreScrollWheelUntilClicked: 0
m_EnableMouseInput: 1
m_EnableMouseInput: 0
m_EnableSliderZoomHorizontal: 0
m_EnableSliderZoomVertical: 0
m_UniformScale: 1
......@@ -153,7 +153,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 112}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 14860
controlID: 17416
draggingID: 0
--- !u!114 &4
MonoBehaviour:
......@@ -179,7 +179,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 56}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 14861
controlID: 17417
draggingID: 0
--- !u!114 &5
MonoBehaviour:
......@@ -274,6 +274,7 @@ MonoBehaviour:
- m_Data: 58582
- m_Data: 62798
- m_Data: 71130
- m_Data: 71352
- m_Data: 75232
- m_Data: 75264
- m_Data: 76034
......@@ -1105,7 +1106,7 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/AppUI/UIToolkit/UXML
- Assets/App/Infrastructure
m_Globs: []
m_ProductIds:
m_AnyWithAssetOrigin: 0
......@@ -1115,7 +1116,7 @@ MonoBehaviour:
m_ViewMode: 1
m_StartGridSize: 96
m_LastFolders:
- Assets/AppUI/UIToolkit/UXML
- Assets/App/Infrastructure
m_LastFoldersGridSize: 96
m_LastProjectPath: /home/p0wer/development/ssbookminigames/My project
m_LockTracker:
......@@ -1124,14 +1125,12 @@ MonoBehaviour:
m_FolderTreeState:
scrollPos: {x: 0, y: 79}
m_SelectedIDs:
- m_Data: 58354
- m_Data: 58294
m_LastClickedID:
m_Data: 58354
m_Data: 58294
m_ExpandedIDs:
- m_Data: 0
- m_Data: 56354
- m_Data: 58152
- m_Data: 58348
- m_Data: 1000000000
- m_Data: 2147483647
m_RenameOverlay:
......@@ -1196,9 +1195,9 @@ MonoBehaviour:
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs:
- m_Data: 31262
m_LastClickedInstanceID: 31262
m_HadKeyboardFocusLastEvent: 0
- m_Data: 62082
m_LastClickedInstanceID: 62082
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs:
- m_Data: 46526
- m_Data: 61214
......@@ -1386,8 +1385,8 @@ MonoBehaviour:
y: 0
width: 450
height: 983
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_MinSize: {x: 276, y: 76}
m_MaxSize: {x: 4001, y: 4026}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
......
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