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
e81089ff
Commit
e81089ff
authored
Apr 08, 2026
by
Yousef Sameh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
supabase challenge timesaved
parent
c32eb974
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
114 additions
and
1344 deletions
+114
-1344
ChallengeModel.cs
...ect/Assets/App/Infrastructure/Challenge/ChallengeModel.cs
+3
-0
ChallengeService.cs
...t/Assets/App/Infrastructure/Challenge/ChallengeService.cs
+2
-0
SessionListener.cs
My project/Assets/App/Infrastructure/Core/SessionListener.cs
+4
-0
CustomLeaderboardSlot.uxml
My project/Assets/Resources/CustomLeaderboardSlot.uxml
+1
-1
ChallengeManager.cs
...sets/ScienceStreet/Features/Challenge/ChallengeManager.cs
+5
-3
PanelSettings.asset
My project/Assets/UI Toolkit/PanelSettings.asset
+1
-1
CurrentMaximizeLayout.dwlt
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
+35
-31
default-6000.dwlt
My project/UserSettings/Layouts/default-6000.dwlt
+60
-1308
Search.settings
My project/UserSettings/Search.settings
+3
-0
No files found.
My project/Assets/App/Infrastructure/Challenge/ChallengeModel.cs
View file @
e81089ff
...
@@ -17,6 +17,9 @@ public class Challenge : BaseModel
...
@@ -17,6 +17,9 @@ public class Challenge : BaseModel
[
Column
(
"points_earned"
)]
[
Column
(
"points_earned"
)]
public
int
PointsEarned
{
get
;
set
;
}
=
0
;
public
int
PointsEarned
{
get
;
set
;
}
=
0
;
[
Column
(
"time_saved"
)]
public
int
TimeSaved
{
get
;
set
;
}
=
0
;
[
Column
(
"started_at"
)]
[
Column
(
"started_at"
)]
public
DateTime
StartedAt
{
get
;
set
;
}
public
DateTime
StartedAt
{
get
;
set
;
}
...
...
My project/Assets/App/Infrastructure/Challenge/ChallengeService.cs
View file @
e81089ff
...
@@ -13,6 +13,7 @@ public class ChallengeService : Singleton<ChallengeService>
...
@@ -13,6 +13,7 @@ public class ChallengeService : Singleton<ChallengeService>
// Add a completed challenge
// Add a completed challenge
public
async
UniTask
<
OneOf
<
ChallengeResult
,
ErrorResult
>>
AddChallenge
(
public
async
UniTask
<
OneOf
<
ChallengeResult
,
ErrorResult
>>
AddChallenge
(
bool
hasWon
,
bool
hasWon
,
int
timeSaved
,
int
points
,
int
points
,
DateTime
startTime
,
DateTime
startTime
,
DateTime
endTime
)
DateTime
endTime
)
...
@@ -26,6 +27,7 @@ public class ChallengeService : Singleton<ChallengeService>
...
@@ -26,6 +27,7 @@ public class ChallengeService : Singleton<ChallengeService>
var
challenge
=
new
Challenge
var
challenge
=
new
Challenge
{
{
HasWon
=
hasWon
,
HasWon
=
hasWon
,
TimeSaved
=
timeSaved
,
PointsEarned
=
points
,
PointsEarned
=
points
,
StartedAt
=
startTime
,
StartedAt
=
startTime
,
EndedAt
=
endTime
,
EndedAt
=
endTime
,
...
...
My project/Assets/App/Infrastructure/Core/SessionListener.cs
View file @
e81089ff
...
@@ -47,6 +47,10 @@ public class SessionListener : Singleton<SessionListener>
...
@@ -47,6 +47,10 @@ public class SessionListener : Singleton<SessionListener>
case
Constants
.
AuthState
.
SignedIn
:
case
Constants
.
AuthState
.
SignedIn
:
break
;
break
;
case
Constants
.
AuthState
.
SignedOut
:
case
Constants
.
AuthState
.
SignedOut
:
if
(
SceneManager
.
GetActiveScene
().
name
!=
"Login"
)
{
LoggedOut
.
Invoke
();
}
break
;
break
;
case
Constants
.
AuthState
.
UserUpdated
:
case
Constants
.
AuthState
.
UserUpdated
:
break
;
break
;
...
...
My project/Assets/Resources/CustomLeaderboardSlot.uxml
View file @
e81089ff
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center; background-color: rgb(255, 255, 255); padding-top: 25px; padding-bottom: 25px; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; border-top-width: 0; border-right-width: 0; border-bottom-width: 10px; border-left-width: 0; border-left-color: rgba(0, 0, 0, 0.25); border-right-color: rgba(0, 0, 0, 0.25); border-top-color: rgba(0, 0, 0, 0.25); border-bottom-color: rgba(0, 0, 0, 0.25);">
<ui:VisualElement name="Padding" class="padding" style="flex-grow: 1; flex-direction: row-reverse; align-items: center; background-color: rgb(255, 255, 255); padding-top: 25px; padding-bottom: 25px; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; border-bottom-left-radius: 30px; border-top-width: 0; border-right-width: 0; border-bottom-width: 10px; border-left-width: 0; border-left-color: rgba(0, 0, 0, 0.25); border-right-color: rgba(0, 0, 0, 0.25); border-top-color: rgba(0, 0, 0, 0.25); border-bottom-color: rgba(0, 0, 0, 0.25);">
<ui:Label text="1" name="IndexLabel" class="base-text-bold" style="color: rgb(158, 158, 158); font-size: 34px; margin-left: 5px; width: 60px;"/>
<ui:Label text="1" name="IndexLabel" class="base-text-bold" style="color: rgb(158, 158, 158); font-size: 34px; margin-left: 5px; width: 60px;"/>
<ui:VisualElement name="PlayerImage" style="flex-grow: 0; height: 125px; width: 125px; background-image: url("project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_01_Sample.png?fileID=2800000&guid=358c17b4dd4c0461f8bcaf75f245f54e&type=3#UserPicture_01_Sample"); -unity-background-scale-mode: scale-to-fit; margin-left: 35px; background-color: rgb(209, 209, 209); border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%;"/>
<ui:VisualElement name="PlayerImage" style="flex-grow: 0; height: 125px; width: 125px; background-image: url("project://database/Assets/GUI%20PRO%20Kit%20-%20Simple%20Casual/Sprite/Demo/Demo_Character/UserPicture_01_Sample.png?fileID=2800000&guid=358c17b4dd4c0461f8bcaf75f245f54e&type=3#UserPicture_01_Sample"); -unity-background-scale-mode: scale-to-fit; margin-left: 35px; background-color: rgb(209, 209, 209); border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%;"/>
<ui:VisualElement name="GameDetailsPanel" style="height: 117px; width:
auto
; justify-content: space-between;">
<ui:VisualElement name="GameDetailsPanel" style="height: 117px; width:
404px
; justify-content: space-between;">
<ui:Label text="عبد الرحمن" name="PlayerNameLabel" class="base-text-bold" style="font-size: 40px; height: auto; flex-shrink: 0; -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<ui:Label text="عبد الرحمن" name="PlayerNameLabel" class="base-text-bold" style="font-size: 40px; height: auto; flex-shrink: 0; -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TSHakwaty-DemiBold.otf?fileID=12800000&guid=566b773a07b3d064aa1f4c6ef7b6f6fa&type=3#TSHakwaty-DemiBold");"/>
<ui:Label text="ماستر" name="RankLabel" language-direction="RTL" class="base-text-bold" style="font-size: 26px; white-space: pre-wrap; flex-shrink: 0; translate: 0% -13px; color: rgb(158, 158, 158); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TS%20Hakwaty%20Light.otf?fileID=12800000&guid=aeb653dff1f4d2f4fad340e3cf210c77&type=3#TS Hakwaty Light"); -unity-font-style: bold;"/>
<ui:Label text="ماستر" name="RankLabel" language-direction="RTL" class="base-text-bold" style="font-size: 26px; white-space: pre-wrap; flex-shrink: 0; translate: 0% -13px; color: rgb(158, 158, 158); -unity-font-definition: url("project://database/Assets/ALArcade/Hakwaty%20Font/TS%20Hakwaty%20Light.otf?fileID=12800000&guid=aeb653dff1f4d2f4fad340e3cf210c77&type=3#TS Hakwaty Light"); -unity-font-style: bold;"/>
</ui:VisualElement>
</ui:VisualElement>
...
...
My project/Assets/ScienceStreet/Features/Challenge/ChallengeManager.cs
View file @
e81089ff
...
@@ -83,7 +83,9 @@ public class ChallengeManager : MonoBehaviour
...
@@ -83,7 +83,9 @@ public class ChallengeManager : MonoBehaviour
currentGameIndex
++;
currentGameIndex
++;
if
(
currentGameIndex
>=
gameSceneNames
.
Count
)
if
(
currentGameIndex
>=
gameSceneNames
.
Count
)
{
{
WonChallenge
(
timeSaved
,
timeSaved
*
timeSavedBonusMultiplier
).
Forget
();
var
pointsEarnedTotal
=
winningPoints
+
(
timeSaved
*
timeSavedBonusMultiplier
);
WonChallenge
(
timeSaved
,
pointsEarnedTotal
).
Forget
();
return
;
return
;
}
}
...
@@ -121,7 +123,7 @@ public class ChallengeManager : MonoBehaviour
...
@@ -121,7 +123,7 @@ public class ChallengeManager : MonoBehaviour
// Show results, reset challenge, etc.
// Show results, reset challenge, etc.
challengeCanvas
.
ShowChallengeResult
(
false
,
0
,
penaltiesPerGame
[
currentGameIndex
]);
challengeCanvas
.
ShowChallengeResult
(
false
,
0
,
penaltiesPerGame
[
currentGameIndex
]);
await
ChallengeService
.
Instance
.
AddChallenge
(
false
,
-
penaltiesPerGame
[
currentGameIndex
],
startTime
,
DateTime
.
UtcNow
);
await
ChallengeService
.
Instance
.
AddChallenge
(
false
,
-
penaltiesPerGame
[
currentGameIndex
],
0
,
startTime
,
DateTime
.
UtcNow
);
}
}
private
async
UniTask
WonChallenge
(
int
timeSaved
,
int
pointsEarned
)
private
async
UniTask
WonChallenge
(
int
timeSaved
,
int
pointsEarned
)
...
@@ -129,7 +131,7 @@ public class ChallengeManager : MonoBehaviour
...
@@ -129,7 +131,7 @@ public class ChallengeManager : MonoBehaviour
Debug
.
Log
(
"Challenge completed! Total time saved: "
+
timeSaved
);
Debug
.
Log
(
"Challenge completed! Total time saved: "
+
timeSaved
);
challengeCanvas
.
ShowChallengeResult
(
true
,
timeSaved
,
pointsEarned
);
challengeCanvas
.
ShowChallengeResult
(
true
,
timeSaved
,
pointsEarned
);
await
ChallengeService
.
Instance
.
AddChallenge
(
true
,
timeSaved
,
startTime
,
DateTime
.
UtcNow
);
await
ChallengeService
.
Instance
.
AddChallenge
(
true
,
timeSaved
,
pointsEarned
,
startTime
,
DateTime
.
UtcNow
);
}
}
public
void
EndChallenge
()
public
void
EndChallenge
()
...
...
My project/Assets/UI Toolkit/PanelSettings.asset
View file @
e81089ff
...
@@ -24,7 +24,7 @@ MonoBehaviour:
...
@@ -24,7 +24,7 @@ MonoBehaviour:
m_Scale
:
1
m_Scale
:
1
m_ReferenceDpi
:
96
m_ReferenceDpi
:
96
m_FallbackDpi
:
96
m_FallbackDpi
:
96
m_ReferenceResolution
:
{
x
:
1080
,
y
:
192
0
}
m_ReferenceResolution
:
{
x
:
1080
,
y
:
240
0
}
m_ScreenMatchMode
:
0
m_ScreenMatchMode
:
0
m_Match
:
0
m_Match
:
0
m_SortingOrder
:
0
m_SortingOrder
:
0
...
...
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
View file @
e81089ff
...
@@ -26,7 +26,7 @@ MonoBehaviour:
...
@@ -26,7 +26,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
400
,
y
:
112
}
m_MinSize
:
{
x
:
400
,
y
:
112
}
m_MaxSize
:
{
x
:
32384
,
y
:
16192
}
m_MaxSize
:
{
x
:
32384
,
y
:
16192
}
vertical
:
0
vertical
:
0
controlID
:
8795
controlID
:
12788
draggingID
:
0
draggingID
:
0
---
!u!114
&2
---
!u!114
&2
MonoBehaviour
:
MonoBehaviour
:
...
@@ -99,7 +99,7 @@ MonoBehaviour:
...
@@ -99,7 +99,7 @@ MonoBehaviour:
m_HSlider
:
0
m_HSlider
:
0
m_VSlider
:
0
m_VSlider
:
0
m_IgnoreScrollWheelUntilClicked
:
0
m_IgnoreScrollWheelUntilClicked
:
0
m_EnableMouseInput
:
0
m_EnableMouseInput
:
1
m_EnableSliderZoomHorizontal
:
0
m_EnableSliderZoomHorizontal
:
0
m_EnableSliderZoomVertical
:
0
m_EnableSliderZoomVertical
:
0
m_UniformScale
:
1
m_UniformScale
:
1
...
@@ -155,7 +155,7 @@ MonoBehaviour:
...
@@ -155,7 +155,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
100
,
y
:
112
}
m_MinSize
:
{
x
:
100
,
y
:
112
}
m_MaxSize
:
{
x
:
8096
,
y
:
16192
}
m_MaxSize
:
{
x
:
8096
,
y
:
16192
}
vertical
:
1
vertical
:
1
controlID
:
8796
controlID
:
12789
draggingID
:
0
draggingID
:
0
---
!u!114
&4
---
!u!114
&4
MonoBehaviour
:
MonoBehaviour
:
...
@@ -890,9 +890,9 @@ MonoBehaviour:
...
@@ -890,9 +890,9 @@ MonoBehaviour:
m_AudioPlay
:
0
m_AudioPlay
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_Position
:
m_Position
:
m_Target
:
{
x
:
558.48663
,
y
:
808.17773
,
z
:
5.863441
}
m_Target
:
{
x
:
338.53738
,
y
:
1304.445
,
z
:
-10.085905
}
speed
:
2
speed
:
2
m_Value
:
{
x
:
558.48663
,
y
:
808.17773
,
z
:
5.863441
}
m_Value
:
{
x
:
338.53738
,
y
:
1304.445
,
z
:
-10.085905
}
m_RenderMode
:
0
m_RenderMode
:
0
m_CameraMode
:
m_CameraMode
:
drawMode
:
0
drawMode
:
0
...
@@ -942,9 +942,9 @@ MonoBehaviour:
...
@@ -942,9 +942,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
:
440.55576
m_Target
:
2035.4912
speed
:
2
speed
:
2
m_Value
:
440.55576
m_Value
:
2035.4912
m_Ortho
:
m_Ortho
:
m_Target
:
1
m_Target
:
1
speed
:
2
speed
:
2
...
@@ -1023,12 +1023,12 @@ MonoBehaviour:
...
@@ -1023,12 +1023,12 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
914
x
:
914
y
:
0
y
:
0
width
:
3
51
width
:
3
84
height
:
933
height
:
933
m_MinSize
:
{
x
:
100
,
y
:
112
}
m_MinSize
:
{
x
:
100
,
y
:
112
}
m_MaxSize
:
{
x
:
8096
,
y
:
16192
}
m_MaxSize
:
{
x
:
8096
,
y
:
16192
}
vertical
:
1
vertical
:
1
controlID
:
8860
controlID
:
12878
draggingID
:
0
draggingID
:
0
---
!u!114
&8
---
!u!114
&8
MonoBehaviour
:
MonoBehaviour
:
...
@@ -1047,7 +1047,7 @@ MonoBehaviour:
...
@@ -1047,7 +1047,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
3
51
width
:
3
84
height
:
500
height
:
500
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
...
@@ -1079,7 +1079,7 @@ MonoBehaviour:
...
@@ -1079,7 +1079,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
914
x
:
914
y
:
79
y
:
79
width
:
3
49
width
:
3
82
height
:
474
height
:
474
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
@@ -1098,15 +1098,16 @@ MonoBehaviour:
...
@@ -1098,15 +1098,16 @@ MonoBehaviour:
m_TreeViewState
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_SelectedIDs
:
-
m_Data
:
18
2598
-
m_Data
:
18
8016
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
0
m_Data
:
188016
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
-194492
-
m_Data
:
-194492
-
m_Data
:
-192202
-
m_Data
:
-192202
-
m_Data
:
-171102
-
m_Data
:
-171102
-
m_Data
:
-170836
-
m_Data
:
-170836
-
m_Data
:
-81142
-
m_Data
:
-81142
-
m_Data
:
-12
-
m_Data
:
187514
-
m_Data
:
187514
-
m_Data
:
187570
-
m_Data
:
187570
-
m_Data
:
187930
-
m_Data
:
187930
...
@@ -1153,7 +1154,7 @@ MonoBehaviour:
...
@@ -1153,7 +1154,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
500
y
:
500
width
:
3
51
width
:
3
84
height
:
433
height
:
433
m_MinSize
:
{
x
:
51
,
y
:
76
}
m_MinSize
:
{
x
:
51
,
y
:
76
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
...
@@ -1185,7 +1186,7 @@ MonoBehaviour:
...
@@ -1185,7 +1186,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
914
x
:
914
y
:
579
y
:
579
width
:
3
49
width
:
3
82
height
:
407
height
:
407
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
@@ -1215,9 +1216,9 @@ MonoBehaviour:
...
@@ -1215,9 +1216,9 @@ MonoBehaviour:
m_Children
:
[]
m_Children
:
[]
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
12
65
x
:
12
98
y
:
0
y
:
0
width
:
289
width
:
184
height
:
933
height
:
933
m_MinSize
:
{
x
:
232
,
y
:
276
}
m_MinSize
:
{
x
:
232
,
y
:
276
}
m_MaxSize
:
{
x
:
10002
,
y
:
10026
}
m_MaxSize
:
{
x
:
10002
,
y
:
10026
}
...
@@ -1247,9 +1248,9 @@ MonoBehaviour:
...
@@ -1247,9 +1248,9 @@ MonoBehaviour:
m_TextWithWhitespace
:
"
Project
\u200B
"
m_TextWithWhitespace
:
"
Project
\u200B
"
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
12
65
x
:
12
98
y
:
79
y
:
79
width
:
287
width
:
182
height
:
907
height
:
907
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
@@ -1275,7 +1276,7 @@ MonoBehaviour:
...
@@ -1275,7 +1276,7 @@ MonoBehaviour:
m_SkipHidden
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_SearchArea
:
1
m_Folders
:
m_Folders
:
-
Assets/
ScienceStreet/Features/Challenge
-
Assets/
AppUI/NewAppUI
m_Globs
:
[]
m_Globs
:
[]
m_ProductIds
:
m_ProductIds
:
m_AnyWithAssetOrigin
:
0
m_AnyWithAssetOrigin
:
0
...
@@ -1300,11 +1301,14 @@ MonoBehaviour:
...
@@ -1300,11 +1301,14 @@ MonoBehaviour:
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
0
-
m_Data
:
103290
-
m_Data
:
103290
-
m_Data
:
103640
-
m_Data
:
103688
-
m_Data
:
103702
-
m_Data
:
103780
-
m_Data
:
103780
-
m_Data
:
103784
-
m_Data
:
103784
-
m_Data
:
166894
-
m_Data
:
166894
-
m_Data
:
167086
-
m_Data
:
167086
-
m_Data
:
196692
-
m_Data
:
196702
-
m_Data
:
1000000000
-
m_Data
:
1000000000
-
m_Data
:
2147483647
-
m_Data
:
2147483647
m_RenameOverlay
:
m_RenameOverlay
:
...
@@ -1333,16 +1337,16 @@ MonoBehaviour:
...
@@ -1333,16 +1337,16 @@ MonoBehaviour:
m_Icon
:
{
fileID
:
0
}
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ResourceFile
:
m_AssetTreeState
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
18
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_SelectedIDs
:
-
m_Data
:
18
2598
-
m_Data
:
18
8016
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
182598
m_Data
:
0
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
0
-
m_Data
:
103290
-
m_Data
:
103290
-
m_Data
:
103640
-
m_Data
:
103688
-
m_Data
:
103688
-
m_Data
:
103702
-
m_Data
:
103780
-
m_Data
:
103780
-
m_Data
:
103784
-
m_Data
:
103784
-
m_Data
:
166894
-
m_Data
:
166894
...
@@ -1378,8 +1382,8 @@ MonoBehaviour:
...
@@ -1378,8 +1382,8 @@ MonoBehaviour:
m_ResourceFile
:
m_ResourceFile
:
m_ListAreaState
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_SelectedInstanceIDs
:
-
m_Data
:
18
2598
-
m_Data
:
18
8016
m_LastClickedInstanceID
:
18
2598
m_LastClickedInstanceID
:
18
8016
m_HadKeyboardFocusLastEvent
:
0
m_HadKeyboardFocusLastEvent
:
0
m_ExpandedInstanceIDs
:
[]
m_ExpandedInstanceIDs
:
[]
m_RenameOverlay
:
m_RenameOverlay
:
...
@@ -1426,9 +1430,9 @@ MonoBehaviour:
...
@@ -1426,9 +1430,9 @@ MonoBehaviour:
m_Children
:
[]
m_Children
:
[]
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
1
554
x
:
1
482
y
:
0
y
:
0
width
:
366
width
:
438
height
:
933
height
:
933
m_MinSize
:
{
x
:
276
,
y
:
76
}
m_MinSize
:
{
x
:
276
,
y
:
76
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
...
@@ -1458,9 +1462,9 @@ MonoBehaviour:
...
@@ -1458,9 +1462,9 @@ MonoBehaviour:
m_TextWithWhitespace
:
"
Inspector
\u200B
"
m_TextWithWhitespace
:
"
Inspector
\u200B
"
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
1
554
x
:
1
482
y
:
79
y
:
79
width
:
365
width
:
437
height
:
907
height
:
907
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
...
My project/UserSettings/Layouts/default-6000.dwlt
View file @
e81089ff
...
@@ -14,17 +14,39 @@ MonoBehaviour:
...
@@ -14,17 +14,39 @@ MonoBehaviour:
m_EditorClassIdentifier
:
UnityEditor.dll::UnityEditor.ContainerWindow
m_EditorClassIdentifier
:
UnityEditor.dll::UnityEditor.ContainerWindow
m_PixelRect
:
m_PixelRect
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
1
y
:
43
y
:
51
width
:
19
20
width
:
19
18
height
:
98
9
height
:
98
0
m_ShowMode
:
4
m_ShowMode
:
4
m_Title
:
Hierarchy
m_Title
:
Game
m_RootView
:
{
fileID
:
2
}
m_RootView
:
{
fileID
:
3
}
m_MinSize
:
{
x
:
875
,
y
:
498
}
m_MinSize
:
{
x
:
875
,
y
:
498
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_Maximized
:
1
m_Maximized
:
0
---
!u!114
&2
---
!u!114
&2
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
:
12060
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
GameView
m_EditorClassIdentifier
:
UnityEditor.dll::UnityEditor.MaximizedHostView
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
36
width
:
1918
height
:
924
m_MinSize
:
{
x
:
200
,
y
:
228
}
m_MaxSize
:
{
x
:
4000
,
y
:
4028
}
m_ActualView
:
{
fileID
:
7
}
---
!u!114
&3
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
@@ -37,22 +59,22 @@ MonoBehaviour:
...
@@ -37,22 +59,22 @@ MonoBehaviour:
m_Name
:
m_Name
:
m_EditorClassIdentifier
:
m_EditorClassIdentifier
:
m_Children
:
m_Children
:
-
{
fileID
:
3
}
-
{
fileID
:
4
}
-
{
fileID
:
4
}
-
{
fileID
:
2
}
-
{
fileID
:
5
}
-
{
fileID
:
5
}
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
19
20
width
:
19
18
height
:
98
9
height
:
98
0
m_MinSize
:
{
x
:
875
,
y
:
498
}
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_UseTopView
:
1
m_UseTopView
:
1
m_TopViewHeight
:
36
m_TopViewHeight
:
36
m_UseBottomView
:
1
m_UseBottomView
:
1
m_BottomViewHeight
:
20
m_BottomViewHeight
:
20
---
!u!114
&
3
---
!u!114
&
4
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
@@ -69,39 +91,11 @@ MonoBehaviour:
...
@@ -69,39 +91,11 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
19
20
width
:
19
18
height
:
36
height
:
36
m_MinSize
:
{
x
:
50
,
y
:
50
}
m_MinSize
:
{
x
:
50
,
y
:
50
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_ActualView
:
{
fileID
:
12
}
m_ActualView
:
{
fileID
:
6
}
---
!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
:
6
}
-
{
fileID
:
7
}
-
{
fileID
:
8
}
-
{
fileID
:
9
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
36
width
:
1920
height
:
933
m_MinSize
:
{
x
:
400
,
y
:
112
}
m_MaxSize
:
{
x
:
32384
,
y
:
16192
}
vertical
:
0
controlID
:
263
draggingID
:
0
---
!u!114
&5
---
!u!114
&5
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
...
@@ -118,168 +112,12 @@ MonoBehaviour:
...
@@ -118,168 +112,12 @@ MonoBehaviour:
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
96
9
y
:
96
0
width
:
19
20
width
:
19
18
height
:
20
height
:
20
m_MinSize
:
{
x
:
0
,
y
:
0
}
m_MinSize
:
{
x
:
0
,
y
:
0
}
m_MaxSize
:
{
x
:
0
,
y
:
0
}
m_MaxSize
:
{
x
:
0
,
y
:
0
}
---
!u!114
&6
---
!u!114
&6
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
:
11
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
907
height
:
933
m_MinSize
:
{
x
:
100
,
y
:
112
}
m_MaxSize
:
{
x
:
8096
,
y
:
16192
}
vertical
:
1
controlID
:
178
draggingID
:
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
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
907
y
:
0
width
:
308
height
:
933
m_MinSize
:
{
x
:
202
,
y
:
226
}
m_MaxSize
:
{
x
:
4002
,
y
:
4026
}
m_ActualView
:
{
fileID
:
13
}
m_Panes
:
-
{
fileID
:
13
}
m_Selected
:
0
m_LastSelected
:
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
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
1215
y
:
0
width
:
275
height
:
933
m_MinSize
:
{
x
:
232
,
y
:
276
}
m_MaxSize
:
{
x
:
10002
,
y
:
10026
}
m_ActualView
:
{
fileID
:
15
}
m_Panes
:
-
{
fileID
:
15
}
m_Selected
:
0
m_LastSelected
:
0
---
!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
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
1490
y
:
0
width
:
430
height
:
933
m_MinSize
:
{
x
:
276
,
y
:
76
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
14
}
m_Panes
:
-
{
fileID
:
14
}
m_Selected
:
0
m_LastSelected
:
0
---
!u!114
&10
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
:
0
width
:
907
height
:
479
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
17
}
m_Panes
:
-
{
fileID
:
17
}
m_Selected
:
0
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
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
479
width
:
907
height
:
454
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
16
}
m_Panes
:
-
{
fileID
:
16
}
m_Selected
:
0
m_LastSelected
:
0
---
!u!114
&12
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
@@ -302,7 +140,7 @@ MonoBehaviour:
...
@@ -302,7 +140,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
19
20
width
:
19
18
height
:
36
height
:
36
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
@@ -559,298 +397,7 @@ MonoBehaviour:
...
@@ -559,298 +397,7 @@ MonoBehaviour:
m_DynamicPanelContainerData
:
[]
m_DynamicPanelContainerData
:
[]
m_OverlaysVisible
:
1
m_OverlaysVisible
:
1
m_DynamicPanelBehavior
:
0
m_DynamicPanelBehavior
:
0
---
!u!114
&13
---
!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
:
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
:
908
y
:
24
width
:
306
height
:
907
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
:
-95428
m_LastClickedID
:
m_Data
:
0
m_ExpandedIDs
:
[]
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
:
0
}
m_SearchString
:
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_LockTracker
:
m_IsLocked
:
0
m_CurrentSortingName
:
TransformSorting
m_WindowGUID
:
949f038eeaccae048b8a9611e8d5a811
---
!u!114
&14
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
:
12019
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
275
,
y
:
50
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Inspector
m_Image
:
{
fileID
:
-2667387946076563598
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_TextWithWhitespace
:
"
Inspector
\u200B
"
m_Pos
:
serializedVersion
:
2
x
:
1491
y
:
24
width
:
429
height
:
907
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_ObjectsLockedBeforeSerialization
:
[]
m_InstanceIDsLockedBeforeSerialization
:
m_PreviewResizer
:
m_CachedPref
:
-160
m_ControlHash
:
-371814159
m_PrefName
:
Preview_InspectorPreview
m_LastInspectedObjectInstanceID
:
-1
m_LastVerticalScrollValue
:
0
m_GlobalObjectId
:
m_InspectorMode
:
0
m_LockTracker
:
m_IsLocked
:
0
m_PreviewWindow
:
{
fileID
:
0
}
---
!u!114
&15
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
:
12014
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
230
,
y
:
250
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_Text
:
Project
m_Image
:
{
fileID
:
-5467254957812901981
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_TextWithWhitespace
:
"
Project
\u200B
"
m_Pos
:
serializedVersion
:
2
x
:
1216
y
:
24
width
:
273
height
:
907
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_SearchFilter
:
m_NameFilter
:
m_ClassNames
:
[]
m_AssetLabels
:
[]
m_AssetBundleNames
:
[]
m_ReferencingInstanceIDs
:
m_SceneHandles
:
[]
m_ShowAllHits
:
0
m_SkipHidden
:
0
m_SearchArea
:
0
m_Folders
:
-
Assets
m_Globs
:
[]
m_ProductIds
:
m_AnyWithAssetOrigin
:
0
m_OriginalText
:
m_ImportLogFlags
:
0
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/danielbrauer/Unity Projects/New Unity Project 20
m_LockTracker
:
m_IsLocked
:
0
m_LastLocalAssetsSearchArea
:
1
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
[]
m_LastClickedID
:
m_Data
:
0
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
103290
-
m_Data
:
1000000000
-
m_Data
:
2147483647
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
:
1
m_TrimLeadingAndTrailingWhitespace
:
0
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
[]
m_LastClickedID
:
m_Data
:
0
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
103290
-
m_Data
:
1000000000
-
m_Data
:
2147483647
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
:
1
m_TrimLeadingAndTrailingWhitespace
:
0
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
[]
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
0
m_ExpandedInstanceIDs
:
[]
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
:
1
m_TrimLeadingAndTrailingWhitespace
:
0
m_ClientGUIView
:
{
fileID
:
0
}
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_NewAssetIndexInList
:
-1
m_ScrollPosition
:
{
x
:
0
,
y
:
0
}
m_GridSize
:
64
m_SkipHiddenPackages
:
0
m_DirectoriesAreaWidth
:
115
---
!u!114
&16
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
@@ -872,9 +419,9 @@ MonoBehaviour:
...
@@ -872,9 +419,9 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
503
y
:
36
width
:
906
width
:
1918
height
:
428
height
:
924
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -894,25 +441,25 @@ MonoBehaviour:
...
@@ -894,25 +441,25 @@ MonoBehaviour:
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
:
906
,
y
:
407
}
m_TargetSize
:
{
x
:
1080
,
y
:
2400
}
m_TextureFilterMode
:
0
m_TextureFilterMode
:
0
m_TextureHideFlags
:
61
m_TextureHideFlags
:
61
m_RenderIMGUI
:
0
m_RenderIMGUI
:
1
m_EnterPlayModeBehavior
:
0
m_EnterPlayModeBehavior
:
0
m_UseMipMap
:
0
m_UseMipMap
:
0
m_VSyncEnabled
:
0
m_VSyncEnabled
:
0
m_Gizmos
:
0
m_Gizmos
:
0
m_Stats
:
0
m_Stats
:
0
m_SelectedSizes
:
0
0
000000000000000000000000000000000000000000000000000000000000000000000000000000
m_SelectedSizes
:
0
7
000000000000000000000000000000000000000000000000000000000000000000000000000000
m_ZoomArea
:
m_ZoomArea
:
m_HRangeLocked
:
0
m_HRangeLocked
:
0
m_VRangeLocked
:
0
m_VRangeLocked
:
0
hZoomLockedByDefault
:
0
hZoomLockedByDefault
:
0
vZoomLockedByDefault
:
0
vZoomLockedByDefault
:
0
m_HBaseRangeMin
:
-
453
m_HBaseRangeMin
:
-
540
m_HBaseRangeMax
:
453
m_HBaseRangeMax
:
540
m_VBaseRangeMin
:
-
203.5
m_VBaseRangeMin
:
-
1200
m_VBaseRangeMax
:
203.5
m_VBaseRangeMax
:
1200
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMax
:
1
m_HAllowExceedBaseRangeMax
:
1
m_VAllowExceedBaseRangeMin
:
1
m_VAllowExceedBaseRangeMin
:
1
...
@@ -930,821 +477,26 @@ MonoBehaviour:
...
@@ -930,821 +477,26 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
21
y
:
21
width
:
906
width
:
1920
height
:
407
height
:
888
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Scale
:
{
x
:
0.37
,
y
:
0.37
}
m_Translation
:
{
x
:
453
,
y
:
203.5
}
m_Translation
:
{
x
:
960
,
y
:
444
}
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
:
-
453
x
:
-
2594.5945
y
:
-
203.5
y
:
-
1200
width
:
906
width
:
5189.189
height
:
407
height
:
2400
m_MinimalGUI
:
1
m_MinimalGUI
:
1
m_defaultScale
:
1
m_defaultScale
:
0.37
m_LastWindowPixelSize
:
{
x
:
906
,
y
:
428
}
m_LastWindowPixelSize
:
{
x
:
1920
,
y
:
909
}
m_ClearInEditMode
:
1
m_ClearInEditMode
:
1
m_NoCameraWarning
:
1
m_NoCameraWarning
:
1
m_LowResolutionForAspectRatios
:
01000000000000000000
m_LowResolutionForAspectRatios
:
01000000000000000000
m_XRRenderMode
:
0
m_XRRenderMode
:
0
m_RenderTexture
:
{
fileID
:
0
}
m_RenderTexture
:
{
fileID
:
0
}
m_showToolbar
:
1
m_showToolbar
:
1
---
!u!114
&17
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
:
12013
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Scene
m_Image
:
{
fileID
:
2593428753322112591
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_TextWithWhitespace
:
"
Scene
\u200B
"
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
24
width
:
906
height
:
453
m_SerializedDataModeController
:
m_DataMode
:
0
m_PreferredDataMode
:
0
m_SupportedDataModes
:
isAutomatic
:
1
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
-
dockPosition
:
0
containerId
:
overlay-toolbar__top
displayed
:
1
id
:
Tool Settings
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
-101
,
y
:
-26
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
3
layout
:
1
size
:
{
x
:
0
,
y
:
0
}
sizeOverridden
:
0
-
dockPosition
:
0
containerId
:
overlay-toolbar__top
displayed
:
1
id
:
unity-grid-and-snap-toolbar
index
:
2
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
-141
,
y
:
-227
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
3
layout
:
1
size
:
{
x
:
0
,
y
:
0
}
sizeOverridden
:
0
-
dockPosition
:
1
containerId
:
overlay-toolbar__top
displayed
:
1
id
:
unity-scene-view-toolbar
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
-192.80005
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
1
layout
:
1
size
:
{
x
:
0
,
y
:
0
}
sizeOverridden
:
0
-
dockPosition
:
1
containerId
:
overlay-toolbar__top
displayed
:
0
id
:
unity-search-toolbar
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
1
layout
:
1
size
:
{
x
:
0
,
y
:
0
}
sizeOverridden
:
0
-
dockPosition
:
0
containerId
:
overlay-container--left
displayed
:
1
id
:
unity-transform-toolbar
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
24
,
y
:
25
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
layout
:
2
size
:
{
x
:
0
,
y
:
0
}
sizeOverridden
:
0
-
dockPosition
:
0
containerId
:
overlay-container--left
displayed
:
1
id
:
unity-component-tools
index
:
1
contents
:
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
0
,
y
:
197
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
layout
:
2
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":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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
67.5
,
y
:
86
}
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/Light Settings
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Camera
index
:
1
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Cloth Constraints
index
:
1
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Cloth Collisions
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Navmesh Display
index
:
4
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Agent Display
index
:
5
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Obstacle Display
index
:
6
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Occlusion Culling
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Physics Debugger
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Scene Visibility
index
:
5
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Particles
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
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Tilemap Palette Helper
index
:
12
contents
:
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Open Tile Palette
index
:
0
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
:
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
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/Path
index
:
15
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
APV Overlay
index
:
6
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/TrailRenderer
index
:
8
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}'
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
:
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
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Tile Palette Clipboard
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Tile Palette Brush Pick
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Sprite Swap
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
-
dockPosition
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
SceneView/CamerasOverlay
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}'
floating
:
0
collapsed
:
0
snapOffset
:
{
x
:
24
,
y
:
25
}
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/PBR Validation Settings
index
:
11
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
AINavigationOverlay
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Animation Rigging
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
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
containerId
:
overlay-toolbar__top
displayed
:
0
id
:
unity-tool-contexts-toolbar
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Visual Effect
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Visual Effect Timeline Control
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Visual Effect Model
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}'
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
:
1
containerId
:
overlay-container--right
displayed
:
0
id
:
Scene View/Visual Effect Event Tester
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}'
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
:
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
:
-
containerId
:
overlay-toolbar__top
scrollOffset
:
0
-
containerId
:
overlay-toolbar__left
scrollOffset
:
0
-
containerId
:
overlay-dynamic-panel--left
scrollOffset
:
0
-
containerId
:
overlay-container--left
scrollOffset
:
0
-
containerId
:
overlay-container--right
scrollOffset
:
0
-
containerId
:
overlay-dynamic-panel--right
scrollOffset
:
0
-
containerId
:
overlay-toolbar__right
scrollOffset
:
0
-
containerId
:
overlay-toolbar__bottom
scrollOffset
:
0
-
containerId
:
Floating
scrollOffset
:
0
m_DynamicPanelContainerData
:
-
containerId
:
overlay-dynamic-panel--left
width
:
56
saveData
:
state
:
0
overlayData
:
[]
-
containerId
:
overlay-dynamic-panel--right
width
:
56
saveData
:
state
:
0
overlayData
:
[]
m_OverlaysVisible
:
1
m_DynamicPanelBehavior
:
0
m_WindowGUID
:
c526f46033296574c812b293076cdb2e
m_Gizmos
:
1
m_OverrideSceneCullingMask
:
6917529027641081856
m_SceneIsLit
:
1
m_SceneLighting
:
1
m_2DMode
:
0
m_isRotationLocked
:
0
m_PlayAudio
:
0
m_AudioPlay
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_Position
:
m_Target
:
{
x
:
0
,
y
:
0
,
z
:
0
}
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_RenderMode
:
0
m_CameraMode
:
drawMode
:
0
name
:
Shaded
section
:
Shading Mode
m_ValidateTrueMetals
:
0
m_DoValidateTrueMetals
:
0
m_SceneViewState
:
m_AlwaysRefresh
:
0
showFog
:
1
showSkybox
:
1
showFlares
:
1
showImageEffects
:
1
showParticleSystems
:
1
showVisualEffectGraphs
:
1
m_FxEnabled
:
1
m_Grid
:
xGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
0
,
y
:
0
}
yGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
0
,
y
:
0
}
zGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
0
,
y
:
0
}
m_ShowGrid
:
1
m_GridAxis
:
1
m_gridOpacity
:
0.5
m_Rotation
:
m_Target
:
{
x
:
-0.08717229
,
y
:
0.89959055
,
z
:
-0.21045254
,
w
:
-0.3726226
}
speed
:
2
m_Value
:
{
x
:
-0.08717229
,
y
:
0.89959055
,
z
:
-0.21045254
,
w
:
-0.3726226
}
m_Size
:
m_Target
:
10
speed
:
2
m_Value
:
10
m_Ortho
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_CameraSettings
:
m_Speed
:
1
m_SpeedNormalized
:
0.5
m_SpeedMin
:
0.01
m_SpeedMax
:
2
m_EasingEnabled
:
1
m_EasingDuration
:
0.4
m_AccelerationEnabled
:
1
m_FieldOfViewHorizontalOrVertical
:
60
m_NearClip
:
0.03
m_FarClip
:
10000
m_DynamicClip
:
1
m_OcclusionCulling
:
0
m_LastSceneViewRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_LastSceneViewOrtho
:
0
m_Viewpoint
:
m_SceneView
:
{
fileID
:
17
}
m_CameraOverscanSettings
:
m_Opacity
:
50
m_Scale
:
1
m_ReplacementShader
:
{
fileID
:
0
}
m_ReplacementString
:
m_SceneVisActive
:
1
m_LastLockedObject
:
{
fileID
:
0
}
m_LastDebugDrawMode
:
drawMode
:
35
name
:
Contributors / Receivers
section
:
Lighting
m_ViewIsLockedToObject
:
0
My project/UserSettings/Search.settings
View file @
e81089ff
...
@@ -13,6 +13,9 @@ scopes = {
...
@@ -13,6 +13,9 @@ scopes = {
"picker_visibility_flags.00000000" = "0"
"picker_visibility_flags.00000000" = "0"
"picker_item_size.00000000" = "1"
"picker_item_size.00000000" = "1"
"picker_inspector.00000000" = "0"
"picker_inspector.00000000" = "0"
"last_search.66F56946" = ""
"OpenInspectorPreview.66F56946" = "0"
"currentGroup.66F56946" = "all"
}
}
providers = {
providers = {
asset = {
asset = {
...
...
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