Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SSBookMinigames
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
SSBookMinigames
Commits
5bf877b7
Commit
5bf877b7
authored
Apr 05, 2026
by
Yousef Sameh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
signup
parent
42e75487
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
147 additions
and
91 deletions
+147
-91
ActivityService.cs
...ect/Assets/App/Infrastructure/Activity/ActivityService.cs
+6
-6
HomeController.cs
My project/Assets/App/UI/HomeController.cs
+33
-3
LoginController.cs
My project/Assets/App/UI/LoginController.cs
+28
-1
Login.uxml
My project/Assets/AppUI/UIToolkit/UXML/Login.uxml
+4
-4
Mainmenu.uxml
My project/Assets/AppUI/UIToolkit/UXML/Mainmenu.uxml
+62
-62
CurrentMaximizeLayout.dwlt
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
+14
-15
No files found.
My project/Assets/App/Infrastructure/Activity/ActivityService.cs
View file @
5bf877b7
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
LoadLatest5
Activies
()
public
async
UniTask
<
OneOf
<
List
<
Activity
>,
string
>>
LoadLatest3
Activies
()
{
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
;
}
}
...
...
My project/Assets/App/UI/HomeController.cs
View file @
5bf877b7
...
...
@@ -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
);
});
}
}
My project/Assets/App/UI/LoginController.cs
View file @
5bf877b7
...
...
@@ -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
);
}
);
}
...
...
My project/Assets/AppUI/UIToolkit/UXML/Login.uxml
View file @
5bf877b7
...
...
@@ -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&guid=f90ac983f14f5f043a3437b2c294db62&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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<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&guid=0d76662a81af3a7408ca3c2975f08b8f&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&guid=f90ac983f14f5f043a3437b2c294db62&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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<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&guid=0d76662a81af3a7408ca3c2975f08b8f&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&guid=f90ac983f14f5f043a3437b2c294db62&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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<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&guid=0d76662a81af3a7408ca3c2975f08b8f&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&guid=f90ac983f14f5f043a3437b2c294db62&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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<ui:TextField label="" placeholder-text="" name="
TextFiel
d" password="true" class="textField" style="height: 107px; width: 100%; flex-direction: row-reverse; color: rgb(0, 0, 0);">
<ui:TextField label="" placeholder-text="" name="
Passwor
d" 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&guid=0d76662a81af3a7408ca3c2975f08b8f&type=3#mail@3x" tint-color="rgb(158, 158, 158)" style="margin-left: 25px; width: 51px; display: none;"/>
</ui:TextField>
</ui:VisualElement>
...
...
My project/Assets/AppUI/UIToolkit/UXML/Mainmenu.uxml
View file @
5bf877b7
...
...
@@ -338,62 +338,7 @@
<ui:Button text="حفظ التغييرات" 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("project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_00_l_Sample.png?fileID=2800000&guid=01e095d6eb9c54de18317c5e7f0df125&type=3#UserPicture_00_l_Sample"); -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=" محترف " 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&guid=0fbda5b44b3a23945a79b7a8a358482a&type=3#military_tech@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="رتبتي" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=22bd2adfdb425914c83dfc0ed36951e4&type=3#settings@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="الإعدادات" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=9fa2f33cc225ad24887bc600f4d20a6a&type=3#help_outline@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="كيفية اللعب" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=f96ea4f0c864e1e45852c7516b0ed124&type=3#information" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="حول" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=85762d9df90c5cd478b28c4c9b918482&type=3#logout@3x" tint-color="rgb(245, 3, 45)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="تسجيل الخروج" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(245, 3, 45); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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="نظام الرتب" 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&guid=df23d499387dc634bba3eee0b85d0088&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="مبتدأ" 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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&guid=9edc60294a97d7f4e87aee01d4e4d689&type=3#TSHakwaty-ExtraBold"); color: rgb(14, 36, 55);"/>
<ui:Label text="
1,000 — 4,
999 نقطة" 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 —
999 نقطة" 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&guid=c3651e8064bc32d408cbcf02b0b19e8d&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="هاوي" 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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&guid=9edc60294a97d7f4e87aee01d4e4d689&type=3#TSHakwaty-ExtraBold"); color: rgb(28, 93, 85);"/>
<ui:Label text="1
,000 — 4,9
99 نقطة" 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="1
000 — 24
99 نقطة" 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="محترف" 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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&guid=9edc60294a97d7f4e87aee01d4e4d689&type=3#TSHakwaty-ExtraBold"); color: rgb(62, 45, 206);"/>
<ui:Label text="
1,000 — 4,
999 نقطة" 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 — 3
999 نقطة" 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="اسطوري" 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("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-ExtraBold.otf?fileID=12800000&guid=9edc60294a97d7f4e87aee01d4e4d689&type=3#TSHakwaty-ExtraBold"); color: rgb(245, 97, 26);"/>
<ui:Label text="
1,000 — 4,999
نقطة" 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+
نقطة" 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("project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_00_l_Sample.png?fileID=2800000&guid=01e095d6eb9c54de18317c5e7f0df125&type=3#UserPicture_00_l_Sample"); -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=" محترف " 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&guid=0fbda5b44b3a23945a79b7a8a358482a&type=3#military_tech@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="رتبتي" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=22bd2adfdb425914c83dfc0ed36951e4&type=3#settings@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="الإعدادات" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=9fa2f33cc225ad24887bc600f4d20a6a&type=3#help_outline@3x" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="كيفية اللعب" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=f96ea4f0c864e1e45852c7516b0ed124&type=3#information" tint-color="rgb(117, 117, 117)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="حول" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(117, 117, 117); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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&guid=85762d9df90c5cd478b28c4c9b918482&type=3#logout@3x" tint-color="rgb(245, 3, 45)" style="flex-grow: 0; height: 50px; width: 50px;"/>
</ui:VisualElement>
<ui:Label text="تسجيل الخروج" class="base-text-bold" style="font-size: 35px; -unity-text-align: middle-right; color: rgb(245, 3, 45); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
</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>
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
View file @
5bf877b7
...
...
@@ -24,7 +24,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
300
,
y
:
112
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
controlID
:
1
4859
controlID
:
1
7415
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
:
1
4860
controlID
:
1
7416
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
:
1
4861
controlID
:
1
7417
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/App
UI/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/App
UI/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
:
58
35
4
-
m_Data
:
58
29
4
m_LastClickedID
:
m_Data
:
58
35
4
m_Data
:
58
29
4
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
:
3126
2
m_LastClickedInstanceID
:
3126
2
m_HadKeyboardFocusLastEvent
:
0
-
m_Data
:
6208
2
m_LastClickedInstanceID
:
6208
2
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
:
27
5
,
y
:
50
}
m_MaxSize
:
{
x
:
400
0
,
y
:
4000
}
m_MinSize
:
{
x
:
27
6
,
y
:
76
}
m_MaxSize
:
{
x
:
400
1
,
y
:
4026
}
m_ActualView
:
{
fileID
:
15
}
m_Panes
:
-
{
fileID
:
15
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment