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
f2f1f730
Commit
f2f1f730
authored
Apr 02, 2026
by
Yousef Sameh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Activity Service
parent
0ba46a41
Changes
15
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
310 additions
and
154 deletions
+310
-154
Activity.meta
My project/Assets/App/Infrastructure/Activity.meta
+8
-0
ActivityModel.cs
...oject/Assets/App/Infrastructure/Activity/ActivityModel.cs
+16
-0
ActivityModel.cs.meta
.../Assets/App/Infrastructure/Activity/ActivityModel.cs.meta
+2
-0
ActivityService.cs
...ect/Assets/App/Infrastructure/Activity/ActivityService.cs
+58
-0
ActivityService.cs.meta
...ssets/App/Infrastructure/Activity/ActivityService.cs.meta
+2
-0
SupabaseAuthentication.cs
.../Assets/App/Infrastructure/Auth/SupabaseAuthentication.cs
+0
-1
UserService.cs
My project/Assets/App/Infrastructure/User/UserService.cs
+2
-10
HomeUI.cs
My project/Assets/App/UI/HomeUI.cs
+2
-0
Hakawaty.asset
My project/Assets/Hakawaty.asset
+5
-5
App.unity
My project/Assets/Scenes/App.unity
+45
-0
New MSQ.unity
My project/Assets/Scenes/MCQ/New MSQ.unity
+4
-4
LiberationSans SDF - Fallback.asset
...ces/Fonts & Materials/LiberationSans SDF - Fallback.asset
+5
-5
EditorUserSettings.asset
My project/UserSettings/EditorUserSettings.asset
+7
-7
CurrentMaximizeLayout.dwlt
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
+63
-48
default-6000.dwlt
My project/UserSettings/Layouts/default-6000.dwlt
+91
-74
No files found.
My project/Assets/App/Infrastructure/Activity.meta
0 → 100644
View file @
f2f1f730
fileFormatVersion: 2
guid: abe0c775351fe7bbdabf46f920ec466e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
My project/Assets/App/Infrastructure/Activity/ActivityModel.cs
0 → 100644
View file @
f2f1f730
using
System
;
using
Newtonsoft.Json
;
using
Supabase.Postgrest.Attributes
;
using
Supabase.Postgrest.Models
;
[Table("activities")]
public
class
Activity
:
BaseModel
{
[
Column
(
"message"
)]
[
JsonProperty
(
"message"
)]
public
string
Message
{
get
;
set
;
}
[
Column
(
"created_at"
)]
[
JsonProperty
(
"created_at"
)]
public
DateTime
CreatedAt
{
get
;
set
;
}
}
My project/Assets/App/Infrastructure/Activity/ActivityModel.cs.meta
0 → 100644
View file @
f2f1f730
fileFormatVersion: 2
guid: 78e3779af5aec05e189bde49691674cf
\ No newline at end of file
My project/Assets/App/Infrastructure/Activity/ActivityService.cs
0 → 100644
View file @
f2f1f730
using
System
;
using
System.Threading
;
using
Cysharp.Threading.Tasks
;
using
Supabase.Realtime
;
using
Supabase.Realtime.PostgresChanges
;
using
UnityEngine
;
public
class
ActivityService
:
Singleton
<
ActivityService
>
{
private
Supabase
.
Client
supabase
=>
SupabaseManager
.
Instance
.
Supabase
();
private
RealtimeChannel
_channel
;
public
event
Action
<
Activity
>
OnNewActivityReceived
;
public
async
UniTask
Initialize
(
CancellationToken
ct
=
default
)
{
try
{
// 1. Ensure Socket is connected
await
supabase
.
Realtime
.
ConnectAsync
();
// 2. Define the channel
_channel
=
supabase
.
Realtime
.
Channel
(
"public-activities-stream"
);
// 3. Use the PostgresChanges Listener
// This replaces the old .OnInsert()
_channel
.
Register
(
new
PostgresChangesOptions
(
"public"
,
"activities"
,
PostgresChangesOptions
.
ListenType
.
Inserts
));
// 4. Handle the incoming change
_channel
.
AddPostgresChangeHandler
(
PostgresChangesOptions
.
ListenType
.
Inserts
,
(
sender
,
args
)
=>
{
// Access the new record from the event arguments
var
activity
=
args
.
Model
<
Activity
>();
if
(
activity
!=
null
)
{
OnNewActivityReceived
?.
Invoke
(
activity
);
}
}
);
// 5. Subscribe
await
_channel
.
Subscribe
();
Debug
.
Log
(
"<color=#00FF00>[ActivityService]</color> Subscribed to inserts."
);
}
catch
(
Exception
e
)
{
Debug
.
LogError
(
$"[ActivityService] Realtime Error:
{
e
.
Message
}
"
);
}
}
public
void
Dispose
()
{
_channel
?.
Unsubscribe
();
}
}
My project/Assets/App/Infrastructure/Activity/ActivityService.cs.meta
0 → 100644
View file @
f2f1f730
fileFormatVersion: 2
guid: a29f84e4eefe327808a91f9df8828283
\ No newline at end of file
My project/Assets/App/Infrastructure/Auth/SupabaseAuthentication.cs
View file @
f2f1f730
...
@@ -75,7 +75,6 @@ public class SupabaseAuthentication : MonoBehaviour
...
@@ -75,7 +75,6 @@ public class SupabaseAuthentication : MonoBehaviour
public
void
LogOutButton
()
public
void
LogOutButton
()
{
{
LogOut
();
LogOut
();
}
}
public
async
UniTask
<
OneOf
<
Success
,
string
>>
LogOut
()
public
async
UniTask
<
OneOf
<
Success
,
string
>>
LogOut
()
...
...
My project/Assets/App/Infrastructure/User/UserService.cs
View file @
f2f1f730
using
Cysharp.Threading.Tasks
;
using
Cysharp.Threading.Tasks
;
using
OneOf
;
using
OneOf
;
using
OneOf.Types
;
using
Supabase
;
using
Supabase
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
...
@@ -19,7 +18,6 @@ public class UserService : Singleton<UserService>
...
@@ -19,7 +18,6 @@ public class UserService : Singleton<UserService>
var
userOrFail
=
await
GetCurrentUser
();
var
userOrFail
=
await
GetCurrentUser
();
userOrFail
.
Switch
((
user
)
=>
userOrFail
.
Switch
((
user
)
=>
{
{
print
(
user
.
User
.
DisplayName
);
CurrentUser
=
user
.
User
;
CurrentUser
=
user
.
User
;
OnUserChange
?.
Invoke
(
CurrentUser
);
OnUserChange
?.
Invoke
(
CurrentUser
);
},
(
error
)
=>
Debug
.
LogError
(
error
.
Message
));
},
(
error
)
=>
Debug
.
LogError
(
error
.
Message
));
...
@@ -81,18 +79,12 @@ public class UserService : Singleton<UserService>
...
@@ -81,18 +79,12 @@ public class UserService : Singleton<UserService>
try
try
{
{
var
parameters
=
new
Dictionary
<
string
,
object
>
{
{
"target_user_id"
,
userId
}
};
var
parameters
=
new
Dictionary
<
string
,
object
>
{
{
"target_user_id"
,
userId
}
};
var
userProf
=
await
supabase
.
Rpc
<
User
>(
"get_user_profile"
,
parameters
);
var
userProf
=
await
supabase
.
Rpc
<
List
<
User
>>(
"get_user_profile"
,
parameters
);
// Debug.Log($"My Rank: {myProfile.RankDisplay}");
// var response = await supabase
// .From<User>()
// .Where(x => x.Id == userId)
// .Single();
if
(
userProf
==
null
)
if
(
userProf
==
null
)
return
new
ErrorResult
(
"User not found"
);
return
new
ErrorResult
(
"User not found"
);
return
new
UserResult
(
userProf
);
return
new
UserResult
(
userProf
.
First
()
);
}
}
catch
(
Exception
ex
)
catch
(
Exception
ex
)
{
{
...
...
My project/Assets/App/UI/HomeUI.cs
View file @
f2f1f730
...
@@ -36,6 +36,8 @@ public class HomeUI : MonoBehaviour
...
@@ -36,6 +36,8 @@ public class HomeUI : MonoBehaviour
(
error
)
=>
Debug
.
LogError
(
error
)
(
error
)
=>
Debug
.
LogError
(
error
)
);
);
ActivityService
.
Instance
.
Initialize
();
}
}
public
void
show
()
public
void
show
()
...
...
My project/Assets/Hakawaty.asset
View file @
f2f1f730
This diff is collapsed.
Click to expand it.
My project/Assets/Scenes/App.unity
View file @
f2f1f730
...
@@ -964,6 +964,50 @@ CanvasRenderer:
...
@@ -964,6 +964,50 @@ CanvasRenderer:
m_PrefabAsset
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
295720945
}
m_GameObject
:
{
fileID
:
295720945
}
m_CullTransparentMesh
:
1
m_CullTransparentMesh
:
1
---
!u!1
&333690669
GameObject
:
m_ObjectHideFlags
:
0
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
serializedVersion
:
6
m_Component
:
-
component
:
{
fileID
:
333690670
}
-
component
:
{
fileID
:
333690671
}
m_Layer
:
0
m_Name
:
ActivityService
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!4
&333690670
Transform
:
m_ObjectHideFlags
:
0
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
333690669
}
serializedVersion
:
2
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_ConstrainProportionsScale
:
0
m_Children
:
[]
m_Father
:
{
fileID
:
1610260979
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!114
&333690671
MonoBehaviour
:
m_ObjectHideFlags
:
0
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
333690669
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
a29f84e4eefe327808a91f9df8828283
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
Assembly-CSharp::ActivityService
---
!u!1
&429400588
---
!u!1
&429400588
GameObject
:
GameObject
:
m_ObjectHideFlags
:
0
m_ObjectHideFlags
:
0
...
@@ -5202,6 +5246,7 @@ Transform:
...
@@ -5202,6 +5246,7 @@ Transform:
m_Children
:
m_Children
:
-
{
fileID
:
920987601
}
-
{
fileID
:
920987601
}
-
{
fileID
:
1213667303
}
-
{
fileID
:
1213667303
}
-
{
fileID
:
333690670
}
m_Father
:
{
fileID
:
0
}
m_Father
:
{
fileID
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!1
&1615490126
---
!u!1
&1615490126
...
...
My project/Assets/Scenes/MCQ/New MSQ.unity
View file @
f2f1f730
...
@@ -1398,7 +1398,7 @@ MonoBehaviour:
...
@@ -1398,7 +1398,7 @@ MonoBehaviour:
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_Material
:
{
fileID
:
0
}
m_Material
:
{
fileID
:
0
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_RaycastTarget
:
1
m_RaycastTarget
:
0
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_Maskable
:
1
m_Maskable
:
1
m_OnCullStateChanged
:
m_OnCullStateChanged
:
...
@@ -2216,7 +2216,7 @@ MonoBehaviour:
...
@@ -2216,7 +2216,7 @@ MonoBehaviour:
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_Material
:
{
fileID
:
0
}
m_Material
:
{
fileID
:
0
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_RaycastTarget
:
1
m_RaycastTarget
:
0
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_Maskable
:
1
m_Maskable
:
1
m_OnCullStateChanged
:
m_OnCullStateChanged
:
...
@@ -2447,7 +2447,7 @@ MonoBehaviour:
...
@@ -2447,7 +2447,7 @@ MonoBehaviour:
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_Material
:
{
fileID
:
0
}
m_Material
:
{
fileID
:
0
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_RaycastTarget
:
1
m_RaycastTarget
:
0
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_Maskable
:
1
m_Maskable
:
1
m_OnCullStateChanged
:
m_OnCullStateChanged
:
...
@@ -2849,7 +2849,7 @@ MonoBehaviour:
...
@@ -2849,7 +2849,7 @@ MonoBehaviour:
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_EditorClassIdentifier
:
LightSide.UniText::LightSide.UniText
m_Material
:
{
fileID
:
0
}
m_Material
:
{
fileID
:
0
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_Color
:
{
r
:
0.99607843
,
g
:
0.84313726
,
b
:
0
,
a
:
1
}
m_RaycastTarget
:
1
m_RaycastTarget
:
0
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_RaycastPadding
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
0
}
m_Maskable
:
1
m_Maskable
:
1
m_OnCullStateChanged
:
m_OnCullStateChanged
:
...
...
My project/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
View file @
f2f1f730
This diff is collapsed.
Click to expand it.
My project/UserSettings/EditorUserSettings.asset
View file @
f2f1f730
...
@@ -18,25 +18,25 @@ EditorUserSettings:
...
@@ -18,25 +18,25 @@ EditorUserSettings:
value
:
54035150530d5d580f580e7b16220f4415154e737b2b75367a711f6be0b66c61
value
:
54035150530d5d580f580e7b16220f4415154e737b2b75367a711f6be0b66c61
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-3
:
RecentlyUsedSceneGuid-3
:
value
:
0152005506515f5d0e5f5a7b46770d1317154c7d7d7f7734747a196ae0b26668
value
:
5701055506000a030f5c542744260844404f4d73797975367c2c1e6ab7e2653d
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-4
:
RecentlyUsedSceneGuid-4
:
value
:
5
200570406560d58095e5c75432609124f154e737a2d2432787e4b62b4e1366a
value
:
5
b01035204015f035c580d7242765c14464f4e7f7a2a70687c7e4432b5e2633b
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-5
:
RecentlyUsedSceneGuid-5
:
value
:
5
701055506000a030f5c542744260844404f4d73797975367c2c1e6ab7e2653
d
value
:
5
304575f5c0c51035d5a5e771271594417154e7c2d7b70647b7b4c35bbe1646
d
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-6
:
RecentlyUsedSceneGuid-6
:
value
:
5b01035204015f035c580d7242765c14464f4e7f7a2a70687c7e4432b5e2633b
value
:
0003525055055d020e0b0a7216755d444215417e787d27362e2f4866b2e1323e
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-7
:
RecentlyUsedSceneGuid-7
:
value
:
5304575f5c0c51035d5a5e771271594417154e7c2d7b70647b7b4c35bbe1646d
value
:
0752035101010f0c54595b2046760e44134e4e7a7f7d71677c2c4836b7b4633e
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-8
:
RecentlyUsedSceneGuid-8
:
value
:
0
752035101010f0c54595b2046760e44134e4e7a7f7d71677c2c4836b7b4633e
value
:
0
152005506515f5d0e5f5a7b46770d1317154c7d7d7f7734747a196ae0b26668
flags
:
0
flags
:
0
RecentlyUsedSceneGuid-9
:
RecentlyUsedSceneGuid-9
:
value
:
0003525055055d020e0b0a7216755d444215417e787d27362e2f4866b2e1323e
value
:
5200570406560d58095e5c75432609124f154e737a2d2432787e4b62b4e1366a
flags
:
0
flags
:
0
UnityEditor.ShaderGraph.Blackboard
:
UnityEditor.ShaderGraph.Blackboard
:
value
:
18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7
value
:
18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7
...
...
My project/UserSettings/Layouts/CurrentMaximizeLayout.dwlt
View file @
f2f1f730
...
@@ -24,7 +24,7 @@ MonoBehaviour:
...
@@ -24,7 +24,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
300
,
y
:
112
}
m_MinSize
:
{
x
:
300
,
y
:
112
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
vertical
:
0
controlID
:
6607
controlID
:
9799
draggingID
:
0
draggingID
:
0
---
!u!114
&2
---
!u!114
&2
MonoBehaviour
:
MonoBehaviour
:
...
@@ -50,7 +50,7 @@ MonoBehaviour:
...
@@ -50,7 +50,7 @@ MonoBehaviour:
x
:
355
x
:
355
y
:
61
y
:
61
width
:
1097
width
:
1097
height
:
658
height
:
422
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -70,7 +70,7 @@ MonoBehaviour:
...
@@ -70,7 +70,7 @@ 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
:
1080
,
y
:
2400
}
m_TargetSize
:
{
x
:
226
,
y
:
401
}
m_TextureFilterMode
:
0
m_TextureFilterMode
:
0
m_TextureHideFlags
:
61
m_TextureHideFlags
:
61
m_RenderIMGUI
:
1
m_RenderIMGUI
:
1
...
@@ -79,16 +79,16 @@ MonoBehaviour:
...
@@ -79,16 +79,16 @@ MonoBehaviour:
m_VSyncEnabled
:
0
m_VSyncEnabled
:
0
m_Gizmos
:
0
m_Gizmos
:
0
m_Stats
:
0
m_Stats
:
0
m_SelectedSizes
:
0
8
000000000000000000000000000000000000000000000000000000000000000000000000000000
m_SelectedSizes
:
0
9
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
:
-
540
m_HBaseRangeMin
:
-
113
m_HBaseRangeMax
:
540
m_HBaseRangeMax
:
113
m_VBaseRangeMin
:
-
1200
m_VBaseRangeMin
:
-
200.5
m_VBaseRangeMax
:
1200
m_VBaseRangeMax
:
200.5
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMax
:
1
m_HAllowExceedBaseRangeMax
:
1
m_VAllowExceedBaseRangeMin
:
1
m_VAllowExceedBaseRangeMin
:
1
...
@@ -107,22 +107,22 @@ MonoBehaviour:
...
@@ -107,22 +107,22 @@ MonoBehaviour:
x
:
0
x
:
0
y
:
21
y
:
21
width
:
1097
width
:
1097
height
:
637
height
:
401
m_Scale
:
{
x
:
0.26541665
,
y
:
0.26541665
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Translation
:
{
x
:
548.5
,
y
:
318
.5
}
m_Translation
:
{
x
:
548.5
,
y
:
200
.5
}
m_MarginLeft
:
0
m_MarginLeft
:
0
m_MarginRight
:
0
m_MarginRight
:
0
m_MarginTop
:
0
m_MarginTop
:
0
m_MarginBottom
:
0
m_MarginBottom
:
0
m_LastShownAreaInsideMargins
:
m_LastShownAreaInsideMargins
:
serializedVersion
:
2
serializedVersion
:
2
x
:
-
2066.562
x
:
-
548.5
y
:
-
1200.0001
y
:
-
200.5
width
:
4133.124
width
:
1097
height
:
2400.0002
height
:
401
m_MinimalGUI
:
1
m_MinimalGUI
:
1
m_defaultScale
:
0.26541665
m_defaultScale
:
1
m_LastWindowPixelSize
:
{
x
:
1097
,
y
:
658
}
m_LastWindowPixelSize
:
{
x
:
1097
,
y
:
422
}
m_ClearInEditMode
:
1
m_ClearInEditMode
:
1
m_NoCameraWarning
:
1
m_NoCameraWarning
:
1
m_LowResolutionForAspectRatios
:
01000000000000000000
m_LowResolutionForAspectRatios
:
01000000000000000000
...
@@ -153,7 +153,7 @@ MonoBehaviour:
...
@@ -153,7 +153,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
200
,
y
:
112
}
m_MinSize
:
{
x
:
200
,
y
:
112
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
vertical
:
1
controlID
:
6608
controlID
:
9800
draggingID
:
0
draggingID
:
0
---
!u!114
&4
---
!u!114
&4
MonoBehaviour
:
MonoBehaviour
:
...
@@ -175,11 +175,11 @@ MonoBehaviour:
...
@@ -175,11 +175,11 @@ MonoBehaviour:
x
:
0
x
:
0
y
:
0
y
:
0
width
:
1454
width
:
1454
height
:
684
height
:
448
m_MinSize
:
{
x
:
200
,
y
:
56
}
m_MinSize
:
{
x
:
200
,
y
:
56
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
vertical
:
0
controlID
:
6609
controlID
:
9801
draggingID
:
0
draggingID
:
0
---
!u!114
&5
---
!u!114
&5
MonoBehaviour
:
MonoBehaviour
:
...
@@ -199,7 +199,7 @@ MonoBehaviour:
...
@@ -199,7 +199,7 @@ MonoBehaviour:
x
:
0
x
:
0
y
:
0
y
:
0
width
:
355
width
:
355
height
:
684
height
:
448
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
6
}
m_ActualView
:
{
fileID
:
6
}
...
@@ -231,7 +231,7 @@ MonoBehaviour:
...
@@ -231,7 +231,7 @@ MonoBehaviour:
x
:
0
x
:
0
y
:
61
y
:
61
width
:
354
width
:
354
height
:
658
height
:
422
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -249,14 +249,28 @@ MonoBehaviour:
...
@@ -249,14 +249,28 @@ MonoBehaviour:
m_TreeViewState
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_SelectedIDs
:
-
m_Data
:
580
62
-
m_Data
:
312
62
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
0
m_Data
:
0
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
-71844
-
m_Data
:
-71722
-
m_Data
:
-67008
-
m_Data
:
-66996
-
m_Data
:
-62958
-
m_Data
:
-62958
-
m_Data
:
-61152
-
m_Data
:
-61152
-
m_Data
:
-45736
-
m_Data
:
-45736
-
m_Data
:
-1402
-
m_Data
:
-1402
-
m_Data
:
-12
-
m_Data
:
78876
-
m_Data
:
78896
-
m_Data
:
78920
-
m_Data
:
78952
-
m_Data
:
78968
-
m_Data
:
79006
-
m_Data
:
79022
-
m_Data
:
79072
-
m_Data
:
80546
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -274,7 +288,7 @@ MonoBehaviour:
...
@@ -274,7 +288,7 @@ MonoBehaviour:
m_OriginalEventType
:
11
m_OriginalEventType
:
11
m_IsRenamingFilename
:
0
m_IsRenamingFilename
:
0
m_TrimLeadingAndTrailingWhitespace
:
0
m_TrimLeadingAndTrailingWhitespace
:
0
m_ClientGUIView
:
{
fileID
:
5
}
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_SearchString
:
m_ExpandedScenes
:
[]
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_CurrenRootInstanceID
:
0
...
@@ -300,7 +314,7 @@ MonoBehaviour:
...
@@ -300,7 +314,7 @@ MonoBehaviour:
x
:
355
x
:
355
y
:
0
y
:
0
width
:
1099
width
:
1099
height
:
684
height
:
448
m_MinSize
:
{
x
:
202
,
y
:
226
}
m_MinSize
:
{
x
:
202
,
y
:
226
}
m_MaxSize
:
{
x
:
4002
,
y
:
4026
}
m_MaxSize
:
{
x
:
4002
,
y
:
4026
}
m_ActualView
:
{
fileID
:
2
}
m_ActualView
:
{
fileID
:
2
}
...
@@ -333,7 +347,7 @@ MonoBehaviour:
...
@@ -333,7 +347,7 @@ MonoBehaviour:
x
:
355
x
:
355
y
:
61
y
:
61
width
:
1097
width
:
1097
height
:
433
height
:
658
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -918,9 +932,9 @@ MonoBehaviour:
...
@@ -918,9 +932,9 @@ MonoBehaviour:
m_AudioPlay
:
0
m_AudioPlay
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_Position
:
m_Position
:
m_Target
:
{
x
:
2
.8141794
,
y
:
5.1738243
,
z
:
-10.017115
}
m_Target
:
{
x
:
2
54.03662
,
y
:
356.294
,
z
:
0
}
speed
:
2
speed
:
2
m_Value
:
{
x
:
2
.8141794
,
y
:
5.1738243
,
z
:
-10.017115
}
m_Value
:
{
x
:
2
54.03662
,
y
:
356.294
,
z
:
0
}
m_RenderMode
:
0
m_RenderMode
:
0
m_CameraMode
:
m_CameraMode
:
drawMode
:
0
drawMode
:
0
...
@@ -970,9 +984,9 @@ MonoBehaviour:
...
@@ -970,9 +984,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
:
13.835903
m_Target
:
76.6172
speed
:
2
speed
:
2
m_Value
:
13.835903
m_Value
:
76.6172
m_Ortho
:
m_Ortho
:
m_Target
:
1
m_Target
:
1
speed
:
2
speed
:
2
...
@@ -1016,25 +1030,25 @@ MonoBehaviour:
...
@@ -1016,25 +1030,25 @@ MonoBehaviour:
m_Enabled
:
1
m_Enabled
:
1
m_EditorHideFlags
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
ProjectBrowser
m_Name
:
ConsoleWindow
m_EditorClassIdentifier
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Children
:
[]
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
684
y
:
448
width
:
1454
width
:
1454
height
:
299
height
:
535
m_MinSize
:
{
x
:
231
,
y
:
27
6
}
m_MinSize
:
{
x
:
101
,
y
:
12
6
}
m_MaxSize
:
{
x
:
10001
,
y
:
10
026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4
026
}
m_ActualView
:
{
fileID
:
1
0
}
m_ActualView
:
{
fileID
:
1
1
}
m_Panes
:
m_Panes
:
-
{
fileID
:
10
}
-
{
fileID
:
10
}
-
{
fileID
:
11
}
-
{
fileID
:
11
}
-
{
fileID
:
12
}
-
{
fileID
:
12
}
-
{
fileID
:
13
}
-
{
fileID
:
13
}
m_Selected
:
0
m_Selected
:
1
m_LastSelected
:
1
m_LastSelected
:
0
---
!u!114
&10
---
!u!114
&10
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
...
@@ -1084,7 +1098,7 @@ MonoBehaviour:
...
@@ -1084,7 +1098,7 @@ MonoBehaviour:
m_SkipHidden
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_SearchArea
:
1
m_Folders
:
m_Folders
:
-
Assets/
Scenes/TF
-
Assets/
App/Infrastructure/Activity
m_Globs
:
[]
m_Globs
:
[]
m_ProductIds
:
m_ProductIds
:
m_AnyWithAssetOrigin
:
0
m_AnyWithAssetOrigin
:
0
...
@@ -1094,22 +1108,23 @@ MonoBehaviour:
...
@@ -1094,22 +1108,23 @@ MonoBehaviour:
m_ViewMode
:
1
m_ViewMode
:
1
m_StartGridSize
:
96
m_StartGridSize
:
96
m_LastFolders
:
m_LastFolders
:
-
Assets/
Scenes/TF
-
Assets/
App/Infrastructure/Activity
m_LastFoldersGridSize
:
96
m_LastFoldersGridSize
:
96
m_LastProjectPath
:
/home/p0wer/development/ssbookminigames/My project
m_LastProjectPath
:
/home/p0wer/development/ssbookminigames/My project
m_LockTracker
:
m_LockTracker
:
m_IsLocked
:
0
m_IsLocked
:
0
m_LastLocalAssetsSearchArea
:
1
m_LastLocalAssetsSearchArea
:
1
m_FolderTreeState
:
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
307
}
scrollPos
:
{
x
:
0
,
y
:
79
}
m_SelectedIDs
:
m_SelectedIDs
:
-
m_Data
:
59464
-
m_Data
:
82226
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
59464
m_Data
:
82226
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
0
-
m_Data
:
57336
-
m_Data
:
57336
-
m_Data
:
57784
-
m_Data
:
57740
-
m_Data
:
57872
-
m_Data
:
1000000000
-
m_Data
:
1000000000
-
m_Data
:
2147483647
-
m_Data
:
2147483647
m_RenameOverlay
:
m_RenameOverlay
:
...
@@ -1174,8 +1189,8 @@ MonoBehaviour:
...
@@ -1174,8 +1189,8 @@ MonoBehaviour:
m_ResourceFile
:
m_ResourceFile
:
m_ListAreaState
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_SelectedInstanceIDs
:
-
m_Data
:
58062
-
m_Data
:
80546
m_LastClickedInstanceID
:
58062
m_LastClickedInstanceID
:
80546
m_HadKeyboardFocusLastEvent
:
1
m_HadKeyboardFocusLastEvent
:
1
m_ExpandedInstanceIDs
:
m_ExpandedInstanceIDs
:
-
m_Data
:
46526
-
m_Data
:
46526
...
@@ -1232,9 +1247,9 @@ MonoBehaviour:
...
@@ -1232,9 +1247,9 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
745
y
:
509
width
:
1453
width
:
1453
height
:
273
height
:
509
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
...
My project/UserSettings/Layouts/default-6000.dwlt
View file @
f2f1f730
...
@@ -16,7 +16,7 @@ MonoBehaviour:
...
@@ -16,7 +16,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
948
width
:
1904
height
:
1039
height
:
1039
m_ShowMode
:
4
m_ShowMode
:
4
m_Title
:
Console
m_Title
:
Console
...
@@ -44,7 +44,7 @@ MonoBehaviour:
...
@@ -44,7 +44,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
948
width
:
1904
height
:
1039
height
:
1039
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
...
@@ -69,7 +69,7 @@ MonoBehaviour:
...
@@ -69,7 +69,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
948
width
:
1904
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
}
...
@@ -91,7 +91,7 @@ MonoBehaviour:
...
@@ -91,7 +91,7 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
1019
y
:
1019
width
:
948
width
:
1904
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
}
...
@@ -114,12 +114,12 @@ MonoBehaviour:
...
@@ -114,12 +114,12 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
36
y
:
36
width
:
948
width
:
1904
height
:
983
height
:
983
m_MinSize
:
{
x
:
300
,
y
:
112
}
m_MinSize
:
{
x
:
300
,
y
:
112
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
vertical
:
0
controlID
:
4263
controlID
:
10980
draggingID
:
0
draggingID
:
0
---
!u!114
&6
---
!u!114
&6
MonoBehaviour
:
MonoBehaviour
:
...
@@ -140,12 +140,12 @@ MonoBehaviour:
...
@@ -140,12 +140,12 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
72
4
width
:
145
4
height
:
983
height
:
983
m_MinSize
:
{
x
:
200
,
y
:
112
}
m_MinSize
:
{
x
:
200
,
y
:
112
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
vertical
:
1
controlID
:
4264
controlID
:
10981
draggingID
:
0
draggingID
:
0
---
!u!114
&7
---
!u!114
&7
MonoBehaviour
:
MonoBehaviour
:
...
@@ -166,12 +166,12 @@ MonoBehaviour:
...
@@ -166,12 +166,12 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
72
4
width
:
145
4
height
:
6
84
height
:
6
32
m_MinSize
:
{
x
:
200
,
y
:
56
}
m_MinSize
:
{
x
:
200
,
y
:
56
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
vertical
:
0
controlID
:
4265
controlID
:
10982
draggingID
:
0
draggingID
:
0
---
!u!114
&8
---
!u!114
&8
MonoBehaviour
:
MonoBehaviour
:
...
@@ -190,8 +190,8 @@ MonoBehaviour:
...
@@ -190,8 +190,8 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
177
width
:
355
height
:
6
84
height
:
6
32
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MinSize
:
{
x
:
201
,
y
:
226
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
14
}
m_ActualView
:
{
fileID
:
14
}
...
@@ -214,10 +214,10 @@ MonoBehaviour:
...
@@ -214,10 +214,10 @@ MonoBehaviour:
m_Children
:
[]
m_Children
:
[]
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
177
x
:
355
y
:
0
y
:
0
width
:
547
width
:
1099
height
:
6
84
height
:
6
32
m_MinSize
:
{
x
:
202
,
y
:
226
}
m_MinSize
:
{
x
:
202
,
y
:
226
}
m_MaxSize
:
{
x
:
4002
,
y
:
4026
}
m_MaxSize
:
{
x
:
4002
,
y
:
4026
}
m_ActualView
:
{
fileID
:
13
}
m_ActualView
:
{
fileID
:
13
}
...
@@ -242,9 +242,9 @@ MonoBehaviour:
...
@@ -242,9 +242,9 @@ MonoBehaviour:
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
6
84
y
:
6
32
width
:
72
4
width
:
145
4
height
:
299
height
:
351
m_MinSize
:
{
x
:
101
,
y
:
126
}
m_MinSize
:
{
x
:
101
,
y
:
126
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_ActualView
:
{
fileID
:
17
}
m_ActualView
:
{
fileID
:
17
}
...
@@ -270,9 +270,9 @@ MonoBehaviour:
...
@@ -270,9 +270,9 @@ MonoBehaviour:
m_Children
:
[]
m_Children
:
[]
m_Position
:
m_Position
:
serializedVersion
:
2
serializedVersion
:
2
x
:
72
4
x
:
145
4
y
:
0
y
:
0
width
:
224
width
:
450
height
:
983
height
:
983
m_MinSize
:
{
x
:
276
,
y
:
76
}
m_MinSize
:
{
x
:
276
,
y
:
76
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
m_MaxSize
:
{
x
:
4001
,
y
:
4026
}
...
@@ -303,8 +303,8 @@ MonoBehaviour:
...
@@ -303,8 +303,8 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
25
width
:
948
width
:
1904
height
:
36
height
:
36
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
@@ -568,10 +568,10 @@ MonoBehaviour:
...
@@ -568,10 +568,10 @@ MonoBehaviour:
m_TextWithWhitespace
:
"
Game
\u200B
"
m_TextWithWhitespace
:
"
Game
\u200B
"
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
178
x
:
355
y
:
24
y
:
61
width
:
545
width
:
1097
height
:
6
58
height
:
6
06
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -591,7 +591,7 @@ MonoBehaviour:
...
@@ -591,7 +591,7 @@ 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
:
1080
,
y
:
2400
}
m_TargetSize
:
{
x
:
329
,
y
:
585
}
m_TextureFilterMode
:
0
m_TextureFilterMode
:
0
m_TextureHideFlags
:
61
m_TextureHideFlags
:
61
m_RenderIMGUI
:
1
m_RenderIMGUI
:
1
...
@@ -600,16 +600,16 @@ MonoBehaviour:
...
@@ -600,16 +600,16 @@ MonoBehaviour:
m_VSyncEnabled
:
0
m_VSyncEnabled
:
0
m_Gizmos
:
0
m_Gizmos
:
0
m_Stats
:
0
m_Stats
:
0
m_SelectedSizes
:
0
8
000000000000000000000000000000000000000000000000000000000000000000000000000000
m_SelectedSizes
:
0
9
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
:
-
540
m_HBaseRangeMin
:
-
164.5
m_HBaseRangeMax
:
540
m_HBaseRangeMax
:
164.5
m_VBaseRangeMin
:
-
1200
m_VBaseRangeMin
:
-
292.5
m_VBaseRangeMax
:
1200
m_VBaseRangeMax
:
292.5
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMin
:
1
m_HAllowExceedBaseRangeMax
:
1
m_HAllowExceedBaseRangeMax
:
1
m_VAllowExceedBaseRangeMin
:
1
m_VAllowExceedBaseRangeMin
:
1
...
@@ -627,23 +627,23 @@ MonoBehaviour:
...
@@ -627,23 +627,23 @@ MonoBehaviour:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
21
y
:
21
width
:
545
width
:
1097
height
:
637
height
:
585
m_Scale
:
{
x
:
0.26541665
,
y
:
0.26541665
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Translation
:
{
x
:
272.5
,
y
:
318
.5
}
m_Translation
:
{
x
:
548.5
,
y
:
292
.5
}
m_MarginLeft
:
0
m_MarginLeft
:
0
m_MarginRight
:
0
m_MarginRight
:
0
m_MarginTop
:
0
m_MarginTop
:
0
m_MarginBottom
:
0
m_MarginBottom
:
0
m_LastShownAreaInsideMargins
:
m_LastShownAreaInsideMargins
:
serializedVersion
:
2
serializedVersion
:
2
x
:
-
1026.6876
x
:
-
548.5
y
:
-
1200.0001
y
:
-
292.5
width
:
2053.3752
width
:
1097
height
:
2400.0002
height
:
585
m_MinimalGUI
:
1
m_MinimalGUI
:
1
m_defaultScale
:
0.26541665
m_defaultScale
:
1
m_LastWindowPixelSize
:
{
x
:
545
,
y
:
658
}
m_LastWindowPixelSize
:
{
x
:
1097
,
y
:
606
}
m_ClearInEditMode
:
1
m_ClearInEditMode
:
1
m_NoCameraWarning
:
1
m_NoCameraWarning
:
1
m_LowResolutionForAspectRatios
:
01000000000000000000
m_LowResolutionForAspectRatios
:
01000000000000000000
...
@@ -672,9 +672,9 @@ MonoBehaviour:
...
@@ -672,9 +672,9 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
24
y
:
61
width
:
176
width
:
354
height
:
6
58
height
:
6
06
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -691,16 +691,29 @@ MonoBehaviour:
...
@@ -691,16 +691,29 @@ MonoBehaviour:
m_SceneHierarchy
:
m_SceneHierarchy
:
m_TreeViewState
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
[]
m_SelectedIDs
:
-
m_Data
:
31262
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
0
m_Data
:
0
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
-8818
-
m_Data
:
-71844
-
m_Data
:
-1342
-
m_Data
:
-71722
-
m_Data
:
55606
-
m_Data
:
-67008
-
m_Data
:
55648
-
m_Data
:
-66996
-
m_Data
:
55828
-
m_Data
:
-62958
-
m_Data
:
55890
-
m_Data
:
-61152
-
m_Data
:
-45736
-
m_Data
:
-1402
-
m_Data
:
-12
-
m_Data
:
78876
-
m_Data
:
78896
-
m_Data
:
78920
-
m_Data
:
78952
-
m_Data
:
78968
-
m_Data
:
79006
-
m_Data
:
79022
-
m_Data
:
79072
-
m_Data
:
80546
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -718,7 +731,7 @@ MonoBehaviour:
...
@@ -718,7 +731,7 @@ MonoBehaviour:
m_OriginalEventType
:
11
m_OriginalEventType
:
11
m_IsRenamingFilename
:
0
m_IsRenamingFilename
:
0
m_TrimLeadingAndTrailingWhitespace
:
0
m_TrimLeadingAndTrailingWhitespace
:
0
m_ClientGUIView
:
{
fileID
:
8
}
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_SearchString
:
m_ExpandedScenes
:
[]
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_CurrenRootInstanceID
:
0
...
@@ -750,7 +763,7 @@ MonoBehaviour:
...
@@ -750,7 +763,7 @@ MonoBehaviour:
x
:
355
x
:
355
y
:
61
y
:
61
width
:
1097
width
:
1097
height
:
433
height
:
658
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -1335,9 +1348,9 @@ MonoBehaviour:
...
@@ -1335,9 +1348,9 @@ MonoBehaviour:
m_AudioPlay
:
0
m_AudioPlay
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_DebugDrawModesUseInteractiveLightBakingData
:
0
m_Position
:
m_Position
:
m_Target
:
{
x
:
2
.8141794
,
y
:
5.1738243
,
z
:
-10.017115
}
m_Target
:
{
x
:
2
54.03662
,
y
:
356.294
,
z
:
0
}
speed
:
2
speed
:
2
m_Value
:
{
x
:
0.3170178
,
y
:
0.01101324
,
z
:
-0.0036561592
}
m_Value
:
{
x
:
254.03662
,
y
:
356.294
,
z
:
0
}
m_RenderMode
:
0
m_RenderMode
:
0
m_CameraMode
:
m_CameraMode
:
drawMode
:
0
drawMode
:
0
...
@@ -1387,9 +1400,9 @@ MonoBehaviour:
...
@@ -1387,9 +1400,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
:
13.835903
m_Target
:
76.6172
speed
:
2
speed
:
2
m_Value
:
10.365613
m_Value
:
76.6172
m_Ortho
:
m_Ortho
:
m_Target
:
1
m_Target
:
1
speed
:
2
speed
:
2
...
@@ -1445,9 +1458,9 @@ MonoBehaviour:
...
@@ -1445,9 +1458,9 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
520
y
:
745
width
:
1453
width
:
1453
height
:
498
height
:
273
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -1472,7 +1485,7 @@ MonoBehaviour:
...
@@ -1472,7 +1485,7 @@ MonoBehaviour:
m_SkipHidden
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_SearchArea
:
1
m_Folders
:
m_Folders
:
-
Assets/App/Infrastructure/
Core
-
Assets/App/Infrastructure/
Activity
m_Globs
:
[]
m_Globs
:
[]
m_ProductIds
:
m_ProductIds
:
m_AnyWithAssetOrigin
:
0
m_AnyWithAssetOrigin
:
0
...
@@ -1482,7 +1495,7 @@ MonoBehaviour:
...
@@ -1482,7 +1495,7 @@ MonoBehaviour:
m_ViewMode
:
1
m_ViewMode
:
1
m_StartGridSize
:
96
m_StartGridSize
:
96
m_LastFolders
:
m_LastFolders
:
-
Assets/App/Infrastructure/
Core
-
Assets/App/Infrastructure/
Activity
m_LastFoldersGridSize
:
96
m_LastFoldersGridSize
:
96
m_LastProjectPath
:
/home/p0wer/development/ssbookminigames/My project
m_LastProjectPath
:
/home/p0wer/development/ssbookminigames/My project
m_LockTracker
:
m_LockTracker
:
...
@@ -1491,12 +1504,14 @@ MonoBehaviour:
...
@@ -1491,12 +1504,14 @@ MonoBehaviour:
m_FolderTreeState
:
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
79
}
scrollPos
:
{
x
:
0
,
y
:
79
}
m_SelectedIDs
:
m_SelectedIDs
:
-
m_Data
:
55224
-
m_Data
:
82226
m_LastClickedID
:
m_LastClickedID
:
m_Data
:
55224
m_Data
:
82226
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
0
-
m_Data
:
57336
-
m_Data
:
57336
-
m_Data
:
1000000000
-
m_Data
:
2147483647
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -1530,6 +1545,8 @@ MonoBehaviour:
...
@@ -1530,6 +1545,8 @@ MonoBehaviour:
m_ExpandedIDs
:
m_ExpandedIDs
:
-
m_Data
:
0
-
m_Data
:
0
-
m_Data
:
57336
-
m_Data
:
57336
-
m_Data
:
1000000000
-
m_Data
:
2147483647
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -1557,9 +1574,9 @@ MonoBehaviour:
...
@@ -1557,9 +1574,9 @@ MonoBehaviour:
m_ResourceFile
:
m_ResourceFile
:
m_ListAreaState
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_SelectedInstanceIDs
:
-
m_Data
:
31262
-
m_Data
:
80546
m_LastClickedInstanceID
:
31262
m_LastClickedInstanceID
:
80546
m_HadKeyboardFocusLastEvent
:
0
m_HadKeyboardFocusLastEvent
:
1
m_ExpandedInstanceIDs
:
m_ExpandedInstanceIDs
:
-
m_Data
:
46526
-
m_Data
:
46526
-
m_Data
:
61214
-
m_Data
:
61214
...
@@ -1615,9 +1632,9 @@ MonoBehaviour:
...
@@ -1615,9 +1632,9 @@ MonoBehaviour:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
708
y
:
693
width
:
72
3
width
:
145
3
height
:
273
height
:
325
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
m_PreferredDataMode
:
0
m_PreferredDataMode
:
0
...
@@ -1748,9 +1765,9 @@ MonoBehaviour:
...
@@ -1748,9 +1765,9 @@ MonoBehaviour:
m_TextWithWhitespace
:
"
Inspector
\u200B
"
m_TextWithWhitespace
:
"
Inspector
\u200B
"
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
725
x
:
1454
y
:
24
y
:
61
width
:
223
width
:
449
height
:
957
height
:
957
m_SerializedDataModeController
:
m_SerializedDataModeController
:
m_DataMode
:
0
m_DataMode
:
0
...
...
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