Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
ygopro2
Commits
fba9af9e
Commit
fba9af9e
authored
Mar 12, 2019
by
Unicorn369
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change FPS
parent
065f88da
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
537 additions
and
514 deletions
+537
-514
Assets/ArtSystem/Setting/LAZYsetting.cs
Assets/ArtSystem/Setting/LAZYsetting.cs
+1
-0
Assets/SibylSystem/Program.cs
Assets/SibylSystem/Program.cs
+2
-2
Assets/SibylSystem/Setting/Setting.cs
Assets/SibylSystem/Setting/Setting.cs
+8
-14
Assets/transUI/prefab/trans_setting.prefab
Assets/transUI/prefab/trans_setting.prefab
+525
-497
README.md
README.md
+1
-1
No files found.
Assets/ArtSystem/Setting/LAZYsetting.cs
View file @
fba9af9e
...
@@ -8,6 +8,7 @@ public class LAZYsetting : MonoBehaviour {
...
@@ -8,6 +8,7 @@ public class LAZYsetting : MonoBehaviour {
public
UISlider
sliderAlpha
;
public
UISlider
sliderAlpha
;
public
UIPopupList
showoffATK
;
public
UIPopupList
showoffATK
;
public
UIPopupList
showoffStar
;
public
UIPopupList
showoffStar
;
public
UIPopupList
showoffFPS
;
public
UIToggle
mouseEffect
;
public
UIToggle
mouseEffect
;
public
UIToggle
closeUp
;
public
UIToggle
closeUp
;
public
UIToggle
showoff
;
public
UIToggle
showoff
;
...
...
Assets/SibylSystem/Program.cs
View file @
fba9af9e
...
@@ -1011,10 +1011,10 @@ public class Program : MonoBehaviour
...
@@ -1011,10 +1011,10 @@ public class Program : MonoBehaviour
Screen
.
SetResolution
(
1300
,
700
,
false
);
Screen
.
SetResolution
(
1300
,
700
,
false
);
}
}
QualitySettings
.
vSyncCount
=
0
;
QualitySettings
.
vSyncCount
=
0
;
Application
.
targetFrameRate
=
144
;
//
Application.targetFrameRate = 144;
#
elif
UNITY_ANDROID
||
UNITY_IPHONE
//Android、iPhone
#
elif
UNITY_ANDROID
||
UNITY_IPHONE
//Android、iPhone
Screen
.
SetResolution
(
1280
,
720
,
true
);
Screen
.
SetResolution
(
1280
,
720
,
true
);
Application
.
targetFrameRate
=
-
1
;
//
Application.targetFrameRate = -1;
#
endif
#
endif
mouseParticle
=
Instantiate
(
new_mouse
);
mouseParticle
=
Instantiate
(
new_mouse
);
...
...
Assets/SibylSystem/Setting/Setting.cs
View file @
fba9af9e
...
@@ -6,8 +6,6 @@ public class Setting : WindowServant2D
...
@@ -6,8 +6,6 @@ public class Setting : WindowServant2D
public
LAZYsetting
setting
;
public
LAZYsetting
setting
;
public
bool
batterySaving
;
public
override
void
initialize
()
public
override
void
initialize
()
{
{
gameObject
=
createWindow
(
this
,
Program
.
I
().
new_ui_setting
);
gameObject
=
createWindow
(
this
,
Program
.
I
().
new_ui_setting
);
...
@@ -16,8 +14,6 @@ public class Setting : WindowServant2D
...
@@ -16,8 +14,6 @@ public class Setting : WindowServant2D
UIHelper
.
registEvent
(
gameObject
,
"screen_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"screen_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"full_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"full_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"resize_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"resize_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"batterySaving"
,
batterySavingMode
);
batterySaving
=
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"batterySaving"
).
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"batterySaving"
,
"0"
));
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
=
Screen
.
fullScreen
;
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
=
Screen
.
fullScreen
;
UIHelper
.
getByName
<
UIPopupList
>(
gameObject
,
"screen_"
).
value
=
Screen
.
width
.
ToString
()
+
"*"
+
Screen
.
height
.
ToString
();
UIHelper
.
getByName
<
UIPopupList
>(
gameObject
,
"screen_"
).
value
=
Screen
.
width
.
ToString
()
+
"*"
+
Screen
.
height
.
ToString
();
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreWatcher_"
).
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"ignoreWatcher_"
,
"0"
));
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreWatcher_"
).
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"ignoreWatcher_"
,
"0"
));
...
@@ -68,8 +64,10 @@ public class Setting : WindowServant2D
...
@@ -68,8 +64,10 @@ public class Setting : WindowServant2D
}
}
setting
.
showoffATK
.
value
=
Config
.
Get
(
"showoffATK"
,
"1800"
);
setting
.
showoffATK
.
value
=
Config
.
Get
(
"showoffATK"
,
"1800"
);
setting
.
showoffStar
.
value
=
Config
.
Get
(
"showoffStar"
,
"5"
);
setting
.
showoffStar
.
value
=
Config
.
Get
(
"showoffStar"
,
"5"
);
setting
.
showoffFPS
.
value
=
Config
.
Get
(
"showoffFPS"
,
"60"
);
UIHelper
.
registEvent
(
setting
.
showoffATK
.
gameObject
,
onchangeClose
);
UIHelper
.
registEvent
(
setting
.
showoffATK
.
gameObject
,
onchangeClose
);
UIHelper
.
registEvent
(
setting
.
showoffStar
.
gameObject
,
onchangeClose
);
UIHelper
.
registEvent
(
setting
.
showoffStar
.
gameObject
,
onchangeClose
);
UIHelper
.
registEvent
(
setting
.
showoffFPS
.
gameObject
,
onchangeFPS
);
UIHelper
.
registEvent
(
setting
.
mouseEffect
.
gameObject
,
onchangeMouse
);
UIHelper
.
registEvent
(
setting
.
mouseEffect
.
gameObject
,
onchangeMouse
);
UIHelper
.
registEvent
(
setting
.
closeUp
.
gameObject
,
onchangeCloseUp
);
UIHelper
.
registEvent
(
setting
.
closeUp
.
gameObject
,
onchangeCloseUp
);
UIHelper
.
registEvent
(
setting
.
cloud
.
gameObject
,
onchangeCloud
);
UIHelper
.
registEvent
(
setting
.
cloud
.
gameObject
,
onchangeCloud
);
...
@@ -81,18 +79,14 @@ public class Setting : WindowServant2D
...
@@ -81,18 +79,14 @@ public class Setting : WindowServant2D
onchangeCloud
();
onchangeCloud
();
}
}
private
void
batterySavingMode
()
private
void
onchangeFPS
()
{
{
if
(
batterySaving
)
if
(
setting
.
showoffFPS
.
value
==
"无限制"
)
{
{
Application
.
targetFrameRate
=
30
;
}
else
{
Application
.
targetFrameRate
=
-
1
;
Application
.
targetFrameRate
=
-
1
;
}
else
{
int
FPS
=
int
.
Parse
(
setting
.
showoffFPS
.
value
);
Application
.
targetFrameRate
=
FPS
;
}
}
batterySaving
=
!
batterySaving
;
save
();
}
}
private
void
readVales
()
private
void
readVales
()
...
@@ -250,12 +244,12 @@ public class Setting : WindowServant2D
...
@@ -250,12 +244,12 @@ public class Setting : WindowServant2D
}
}
Config
.
Set
(
"showoffATK"
,
setting
.
showoffATK
.
value
.
ToString
());
Config
.
Set
(
"showoffATK"
,
setting
.
showoffATK
.
value
.
ToString
());
Config
.
Set
(
"showoffStar"
,
setting
.
showoffStar
.
value
.
ToString
());
Config
.
Set
(
"showoffStar"
,
setting
.
showoffStar
.
value
.
ToString
());
Config
.
Set
(
"showoffFPS"
,
setting
.
showoffFPS
.
value
.
ToString
());
Config
.
Set
(
"resize_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"resize_"
).
value
));
Config
.
Set
(
"resize_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"resize_"
).
value
));
}
}
public
void
save
()
public
void
save
()
{
{
Config
.
Set
(
"batterySaving"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"batterySaving"
).
value
));
Config
.
Set
(
"ignoreWatcher_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreWatcher_"
).
value
));
Config
.
Set
(
"ignoreWatcher_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreWatcher_"
).
value
));
Config
.
Set
(
"ignoreOP_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreOP_"
).
value
));
Config
.
Set
(
"ignoreOP_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreOP_"
).
value
));
Config
.
Set
(
"smartSelect_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"smartSelect_"
).
value
));
Config
.
Set
(
"smartSelect_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"smartSelect_"
).
value
));
...
...
Assets/transUI/prefab/trans_setting.prefab
View file @
fba9af9e
...
@@ -650,22 +650,6 @@ GameObject:
...
@@ -650,22 +650,6 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &122714
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 411022}
- component: {fileID: 11462064}
m_Layer: 5
m_Name: Background
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &122902
--- !u!1 &122902
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -858,26 +842,6 @@ GameObject:
...
@@ -858,26 +842,6 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &128600
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 487754}
- component: {fileID: 11413370}
- component: {fileID: 11408868}
- component: {fileID: 6597908}
- component: {fileID: 11494298}
- component: {fileID: 11424234}
m_Layer: 5
m_Name: batterySaving
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &131134
--- !u!1 &131134
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -2203,7 +2167,7 @@ GameObject:
...
@@ -2203,7 +2167,7 @@ GameObject:
- component: {fileID: 11422436}
- component: {fileID: 11422436}
- component: {fileID: 11424938}
- component: {fileID: 11424938}
m_Layer: 5
m_Layer: 5
m_Name:
star
_
m_Name:
FPS
_
m_TagString: Untagged
m_TagString: Untagged
m_Icon: {fileID: 0}
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_NavMeshLayer: 0
...
@@ -2258,22 +2222,6 @@ GameObject:
...
@@ -2258,22 +2222,6 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &175056
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 432392}
- component: {fileID: 11461892}
m_Layer: 5
m_Name: '!lable'
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &175126
--- !u!1 &175126
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -2892,24 +2840,6 @@ GameObject:
...
@@ -2892,24 +2840,6 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &197160
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 479786}
- component: {fileID: 11183530}
- component: {fileID: 11429716}
- component: {fileID: 11492352}
m_Layer: 5
m_Name: Checkmark
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &197840
--- !u!1 &197840
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -3062,7 +2992,7 @@ Transform:
...
@@ -3062,7 +2992,7 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 145416}
m_GameObject: {fileID: 145416}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 12, y: -
52
, z: 0}
m_LocalPosition: {x: 12, y: -
93
, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 445292}
- {fileID: 445292}
...
@@ -3101,7 +3031,7 @@ Transform:
...
@@ -3101,7 +3031,7 @@ Transform:
- {fileID: 482074}
- {fileID: 482074}
- {fileID: 479340}
- {fileID: 479340}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
8
m_RootOrder: 1
9
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &401726
--- !u!4 &401726
Transform:
Transform:
...
@@ -3143,7 +3073,7 @@ Transform:
...
@@ -3143,7 +3073,7 @@ Transform:
- {fileID: 490248}
- {fileID: 490248}
- {fileID: 470038}
- {fileID: 470038}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
7
m_RootOrder: 1
8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &402524
--- !u!4 &402524
Transform:
Transform:
...
@@ -3320,28 +3250,15 @@ Transform:
...
@@ -3320,28 +3250,15 @@ Transform:
m_PrefabParentObject: {fileID: 0}
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 174428}
m_GameObject: {fileID: 174428}
m_LocalRotation: {x:
0, y: 0, z:
0, w: 1}
m_LocalRotation: {x:
-0, y: -0, z: -
0, w: 1}
m_LocalPosition: {x: -157.
2, y: 18
5, z: 0}
m_LocalPosition: {x: -157.
19998, y: 14
5, z: 0}
m_LocalScale: {x:
1, y: 1, z: 1
}
m_LocalScale: {x:
0.99846995, y: 0.99846995, z: 0.99846995
}
m_Children:
m_Children:
- {fileID: 404514}
- {fileID: 404514}
- {fileID: 404922}
- {fileID: 404922}
- {fileID: 418648}
- {fileID: 418648}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 6
m_RootOrder: 7
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &411022
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 122714}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 10, y: 1, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 487754}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &411648
--- !u!4 &411648
Transform:
Transform:
...
@@ -3363,14 +3280,14 @@ Transform:
...
@@ -3363,14 +3280,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 196340}
m_GameObject: {fileID: 196340}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y: -1
0
5, z: 0}
m_LocalPosition: {x: -309.6, y: -1
4
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 441956}
- {fileID: 441956}
- {fileID: 426094}
- {fileID: 426094}
- {fileID: 416030}
- {fileID: 416030}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
5
m_RootOrder: 1
6
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &412424
--- !u!4 &412424
Transform:
Transform:
...
@@ -3405,14 +3322,14 @@ Transform:
...
@@ -3405,14 +3322,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 186530}
m_GameObject: {fileID: 186530}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y: -1
3
5, z: 0}
m_LocalPosition: {x: -309.6, y: -1
7
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 413668}
- {fileID: 413668}
- {fileID: 433918}
- {fileID: 433918}
- {fileID: 479498}
- {fileID: 479498}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
6
m_RootOrder: 1
7
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &413668
--- !u!4 &413668
Transform:
Transform:
...
@@ -3514,14 +3431,14 @@ Transform:
...
@@ -3514,14 +3431,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 157382}
m_GameObject: {fileID: 157382}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y:
1
5, z: 0}
m_LocalPosition: {x: -309.6, y:
-2
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 423648}
- {fileID: 423648}
- {fileID: 431862}
- {fileID: 431862}
- {fileID: 424138}
- {fileID: 424138}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
1
m_RootOrder: 1
2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &417702
--- !u!4 &417702
Transform:
Transform:
...
@@ -3553,7 +3470,7 @@ Transform:
...
@@ -3553,7 +3470,7 @@ Transform:
- {fileID: 421754}
- {fileID: 421754}
- {fileID: 433310}
- {fileID: 433310}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder:
19
m_RootOrder:
20
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &418648
--- !u!4 &418648
Transform:
Transform:
...
@@ -3588,14 +3505,14 @@ Transform:
...
@@ -3588,14 +3505,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 176336}
m_GameObject: {fileID: 176336}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y:
13
5, z: 0}
m_LocalPosition: {x: -309.6, y:
9
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 451274}
- {fileID: 451274}
- {fileID: 491692}
- {fileID: 491692}
- {fileID: 459842}
- {fileID: 459842}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder:
7
m_RootOrder:
8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &420220
--- !u!4 &420220
Transform:
Transform:
...
@@ -3760,14 +3677,14 @@ Transform:
...
@@ -3760,14 +3677,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 149734}
m_GameObject: {fileID: 149734}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y:
4
5, z: 0}
m_LocalPosition: {x: -309.6, y: 5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 463944}
- {fileID: 463944}
- {fileID: 425476}
- {fileID: 425476}
- {fileID: 499628}
- {fileID: 499628}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
0
m_RootOrder: 1
1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &429800
--- !u!4 &429800
Transform:
Transform:
...
@@ -3822,7 +3739,7 @@ Transform:
...
@@ -3822,7 +3739,7 @@ Transform:
- {fileID: 429800}
- {fileID: 429800}
- {fileID: 498702}
- {fileID: 498702}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 2
0
m_RootOrder: 2
1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &431816
--- !u!4 &431816
Transform:
Transform:
...
@@ -3850,19 +3767,6 @@ Transform:
...
@@ -3850,19 +3767,6 @@ Transform:
m_Father: {fileID: 417586}
m_Father: {fileID: 417586}
m_RootOrder: 1
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &432392
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 175056}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 27, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 487754}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &433184
--- !u!4 &433184
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -4152,14 +4056,14 @@ Transform:
...
@@ -4152,14 +4056,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 164062}
m_GameObject: {fileID: 164062}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y:
7
5, z: 0}
m_LocalPosition: {x: -309.6, y:
3
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 466984}
- {fileID: 466984}
- {fileID: 468734}
- {fileID: 468734}
- {fileID: 475024}
- {fileID: 475024}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder:
9
m_RootOrder:
10
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &445292
--- !u!4 &445292
Transform:
Transform:
...
@@ -4463,6 +4367,7 @@ Transform:
...
@@ -4463,6 +4367,7 @@ Transform:
- {fileID: 483970}
- {fileID: 483970}
- {fileID: 417702}
- {fileID: 417702}
- {fileID: 441892}
- {fileID: 441892}
- {fileID: 4835678885711058}
- {fileID: 410798}
- {fileID: 410798}
- {fileID: 419332}
- {fileID: 419332}
- {fileID: 489986}
- {fileID: 489986}
...
@@ -4480,7 +4385,6 @@ Transform:
...
@@ -4480,7 +4385,6 @@ Transform:
- {fileID: 431416}
- {fileID: 431416}
- {fileID: 4748048495216516}
- {fileID: 4748048495216516}
- {fileID: 4808535323606856}
- {fileID: 4808535323606856}
- {fileID: 487754}
- {fileID: 401270}
- {fileID: 401270}
m_Father: {fileID: 484650}
m_Father: {fileID: 484650}
m_RootOrder: 3
m_RootOrder: 3
...
@@ -4534,14 +4438,14 @@ Transform:
...
@@ -4534,14 +4438,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 177070}
m_GameObject: {fileID: 177070}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y: -
7
5, z: 0}
m_LocalPosition: {x: -309.6, y: -
11
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 479946}
- {fileID: 479946}
- {fileID: 480244}
- {fileID: 480244}
- {fileID: 412424}
- {fileID: 412424}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
4
m_RootOrder: 1
5
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &465534
--- !u!4 &465534
Transform:
Transform:
...
@@ -4889,19 +4793,6 @@ Transform:
...
@@ -4889,19 +4793,6 @@ Transform:
m_Father: {fileID: 498002}
m_Father: {fileID: 498002}
m_RootOrder: 1
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &479786
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 197160}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 10, y: 1, z: 0}
m_LocalScale: {x: 0.01, y: 0.01, z: 0.01}
m_Children: []
m_Father: {fileID: 487754}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &479900
--- !u!4 &479900
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -4977,14 +4868,14 @@ Transform:
...
@@ -4977,14 +4868,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 116036}
m_GameObject: {fileID: 116036}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y: -
4
5, z: 0}
m_LocalPosition: {x: -309.6, y: -
8
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 407374}
- {fileID: 407374}
- {fileID: 416950}
- {fileID: 416950}
- {fileID: 489226}
- {fileID: 489226}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
3
m_RootOrder: 1
4
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &481188
--- !u!4 &481188
Transform:
Transform:
...
@@ -5019,14 +4910,14 @@ Transform:
...
@@ -5019,14 +4910,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 187840}
m_GameObject: {fileID: 187840}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y: -
1
5, z: 0}
m_LocalPosition: {x: -309.6, y: -
5
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 402524}
- {fileID: 402524}
- {fileID: 437914}
- {fileID: 437914}
- {fileID: 430098}
- {fileID: 430098}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 1
2
m_RootOrder: 1
3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &483424
--- !u!4 &483424
Transform:
Transform:
...
@@ -5142,22 +5033,6 @@ Transform:
...
@@ -5142,22 +5033,6 @@ Transform:
m_Father: {fileID: 479900}
m_Father: {fileID: 479900}
m_RootOrder: 0
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &487754
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 15, y: 215, z: 0}
m_LocalScale: {x: 0.99846995, y: 0.99846995, z: 0.99846995}
m_Children:
- {fileID: 479786}
- {fileID: 411022}
- {fileID: 432392}
m_Father: {fileID: 463726}
m_RootOrder: 23
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &488244
--- !u!4 &488244
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -5233,14 +5108,14 @@ Transform:
...
@@ -5233,14 +5108,14 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 127118}
m_GameObject: {fileID: 127118}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -309.6, y:
10
5, z: 0}
m_LocalPosition: {x: -309.6, y:
6
5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
m_Children:
- {fileID: 460024}
- {fileID: 460024}
- {fileID: 402642}
- {fileID: 402642}
- {fileID: 443838}
- {fileID: 443838}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder:
8
m_RootOrder:
9
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &490080
--- !u!4 &490080
Transform:
Transform:
...
@@ -5915,18 +5790,6 @@ BoxCollider:
...
@@ -5915,18 +5790,6 @@ BoxCollider:
serializedVersion: 2
serializedVersion: 2
m_Size: {x: 272, y: 24, z: 0}
m_Size: {x: 272, y: 24, z: 0}
m_Center: {x: 136, y: 0, z: 0}
m_Center: {x: 136, y: 0, z: 0}
--- !u!65 &6597908
BoxCollider:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_Material: {fileID: 0}
m_IsTrigger: 1
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 272, y: 24, z: 0}
m_Center: {x: 136, y: 0, z: 0}
--- !u!65 &6599046
--- !u!65 &6599046
BoxCollider:
BoxCollider:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -6419,21 +6282,6 @@ Animation:
...
@@ -6419,21 +6282,6 @@ Animation:
m_PlayAutomatically: 0
m_PlayAutomatically: 0
m_AnimatePhysics: 0
m_AnimatePhysics: 0
m_CullingType: 0
m_CullingType: 0
--- !u!111 &11183530
Animation:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 197160}
m_Enabled: 0
serializedVersion: 3
m_Animation: {fileID: 7400000, guid: baa794242d9902a439adb42668119f24, type: 2}
m_Animations:
- {fileID: 7400000, guid: baa794242d9902a439adb42668119f24, type: 2}
m_WrapMode: 0
m_PlayAutomatically: 0
m_AnimatePhysics: 0
m_CullingType: 0
--- !u!111 &11185018
--- !u!111 &11185018
Animation:
Animation:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -7510,31 +7358,6 @@ MonoBehaviour:
...
@@ -7510,31 +7358,6 @@ MonoBehaviour:
onFinished: []
onFinished: []
eventReceiver: {fileID: 0}
eventReceiver: {fileID: 0}
callWhenFinished:
callWhenFinished:
--- !u!114 &11408868
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 446d504799d99174383957fca80713c8, type: 3}
m_Name:
m_EditorClassIdentifier:
group: 0
activeSprite: {fileID: 0}
activeAnimation: {fileID: 11183530}
animator: {fileID: 0}
tween: {fileID: 0}
startsActive: 0
instantTween: 0
optionCanBeNone: 0
onChange: []
checkSprite: {fileID: 0}
checkAnimation: {fileID: 0}
eventReceiver: {fileID: 0}
functionName: OnActivate
startsChecked: 0
--- !u!114 &11408982
--- !u!114 &11408982
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -7810,43 +7633,6 @@ MonoBehaviour:
...
@@ -7810,43 +7633,6 @@ MonoBehaviour:
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: kuang
mSpriteName: kuang
mFillCenter: 1
mFillCenter: 1
--- !u!114 &11413370
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 858a20c1b21a3f94bb5b2d3b901c9aaf, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
topAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
updateAnchors: 1
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 3
mWidth: 272
mHeight: 24
mDepth: 6
autoResizeBoxCollider: 1
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 11.333333
--- !u!114 &11413388
--- !u!114 &11413388
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -9020,21 +8806,6 @@ MonoBehaviour:
...
@@ -9020,21 +8806,6 @@ MonoBehaviour:
onClick: []
onClick: []
mTextureOutNormal:
mTextureOutNormal:
mTextureOutPressed:
mTextureOutPressed:
--- !u!114 &11424234
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3f23d9cb4e13584439c9f9ddeed5e512, type: 3}
m_Name:
m_EditorClassIdentifier:
tweenTarget: {fileID: 411022}
hover: {x: 0, y: 0, z: 90}
pressed: {x: 0, y: 0, z: 0}
duration: 0.2
--- !u!114 &11424278
--- !u!114 &11424278
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -9730,7 +9501,7 @@ MonoBehaviour:
...
@@ -9730,7 +9501,7 @@ MonoBehaviour:
keepCrispWhenShrunk: 1
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mFont: {fileID: 0}
mFont: {fileID: 0}
mText: "\u
7279\u5199\u661F\u6570
"
mText: "\u
9650\u5236FPS
"
mFontSize: 22
mFontSize: 22
mFontStyle: 0
mFontStyle: 0
mAlignment: 3
mAlignment: 3
...
@@ -9898,20 +9669,6 @@ MonoBehaviour:
...
@@ -9898,20 +9669,6 @@ MonoBehaviour:
hideIfOffScreen: 0
hideIfOffScreen: 0
keepAspectRatio: 0
keepAspectRatio: 0
aspectRatio: 10
aspectRatio: 10
--- !u!114 &11429716
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 197160}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 65ee607e1177db1479c3cbf94cac327e, type: 3}
m_Name:
m_EditorClassIdentifier:
onFinished: []
eventReceiver: {fileID: 0}
callWhenFinished:
--- !u!114 &11430772
--- !u!114 &11430772
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -10222,7 +9979,8 @@ MonoBehaviour:
...
@@ -10222,7 +9979,8 @@ MonoBehaviour:
sliderSize: {fileID: 11424278}
sliderSize: {fileID: 11424278}
sliderAlpha: {fileID: 11468830}
sliderAlpha: {fileID: 11468830}
showoffATK: {fileID: 11465400}
showoffATK: {fileID: 11465400}
showoffStar: {fileID: 11461176}
showoffStar: {fileID: 114122206682793576}
showoffFPS: {fileID: 11461176}
mouseEffect: {fileID: 11460026}
mouseEffect: {fileID: 11460026}
closeUp: {fileID: 11451290}
closeUp: {fileID: 11451290}
showoff: {fileID: 11470560}
showoff: {fileID: 11470560}
...
@@ -13980,18 +13738,13 @@ MonoBehaviour:
...
@@ -13980,18 +13738,13 @@ MonoBehaviour:
position: 0
position: 0
alignment: 1
alignment: 1
items:
items:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 10
- 11
- 20
- 12
- 30
- 40
- 50
- 60
- "\u65E0\u9650\u5236"
padding: {x: 4, y: 4}
padding: {x: 4, y: 4}
textColor: {r: 1, g: 1, b: 1, a: 1}
textColor: {r: 1, g: 1, b: 1, a: 1}
backgroundColor: {r: 0, g: 0, b: 0, a: 1}
backgroundColor: {r: 0, g: 0, b: 0, a: 1}
...
@@ -14009,7 +13762,7 @@ MonoBehaviour:
...
@@ -14009,7 +13762,7 @@ MonoBehaviour:
mMethodName: function
mMethodName: function
mParameters: []
mParameters: []
oneShot: 0
oneShot: 0
mSelectedItem:
1
mSelectedItem:
60
mPanel: {fileID: 0}
mPanel: {fileID: 0}
mBackground: {fileID: 0}
mBackground: {fileID: 0}
mHighlight: {fileID: 0}
mHighlight: {fileID: 0}
...
@@ -14086,147 +13839,31 @@ MonoBehaviour:
...
@@ -14086,147 +13839,31 @@ MonoBehaviour:
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: wwhite
mSpriteName: wwhite
mFillCenter: 1
mFillCenter: 1
--- !u!114 &1146
1892
--- !u!114 &1146
2470
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1
75056
}
m_GameObject: {fileID: 1
98812
}
m_Enabled: 1
m_Enabled: 1
m_EditorHideFlags: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid:
e9d0b5f3bbe925a408bd595c79d0bf63
, type: 3}
m_Script: {fileID: 11500000, guid:
858a20c1b21a3f94bb5b2d3b901c9aaf
, type: 3}
m_Name:
m_Name:
m_EditorClassIdentifier:
m_EditorClassIdentifier:
leftAnchor:
leftAnchor:
target: {fileID:
487754
}
target: {fileID:
0
}
relative: 0
relative: 0
absolute:
27
absolute:
0
rightAnchor:
rightAnchor:
target: {fileID:
487754
}
target: {fileID:
0
}
relative: 1
relative: 1
absolute: 0
absolute: 0
bottomAnchor:
bottomAnchor:
target: {fileID:
487754
}
target: {fileID:
0
}
relative: 0
relative: 0
absolute:
2
absolute:
0
topAnchor:
topAnchor:
target: {fileID: 487754}
target: {fileID: 0}
relative: 1
absolute: -2
updateAnchors: 2
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 3
mWidth: 245
mHeight: 20
mDepth: 9
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 12.25
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
mFont: {fileID: 0}
mText: "\u964D\u4F4E\u6E38\u620F\u5E27\u6570 (30FPS)"
mFontSize: 18
mFontStyle: 0
mAlignment: 0
mEncoding: 1
mMaxLineCount: 0
mEffectStyle: 1
mEffectColor: {r: 0, g: 0, b: 0, a: 1}
mSymbols: 1
mEffectDistance: {x: 1, y: 1}
mOverflow: 0
mMaterial: {fileID: 0}
mApplyGradient: 1
mGradientTop: {r: 1, g: 1, b: 1, a: 1}
mGradientBottom: {r: 0.7, g: 0.7, b: 0.7, a: 1}
mSpacingX: 0
mSpacingY: 0
mUseFloatSpacing: 0
mFloatSpacingX: 0
mFloatSpacingY: 0
mOverflowEllipsis: 0
mShrinkToFit: 0
mMaxLineWidth: 0
mMaxLineHeight: 0
mLineWidth: 0
mMultiline: 1
--- !u!114 &11462064
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 122714}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 487754}
relative: 0
absolute: 1
rightAnchor:
target: {fileID: 487754}
relative: 0
absolute: 19
bottomAnchor:
target: {fileID: 487754}
relative: 0
absolute: 4
topAnchor:
target: {fileID: 487754}
relative: 1
absolute: -2
updateAnchors: 2
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 4
mWidth: 18
mHeight: 18
mDepth: 10
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 1
mType: 1
mFillDirection: 4
mFillAmount: 1
mInvert: 0
mFlip: 0
centerType: 1
leftType: 1
rightType: 1
bottomType: 1
topType: 1
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: kuang
mFillCenter: 1
--- !u!114 &11462470
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 198812}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 858a20c1b21a3f94bb5b2d3b901c9aaf, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
topAnchor:
target: {fileID: 0}
relative: 1
relative: 1
absolute: 0
absolute: 0
updateAnchors: 1
updateAnchors: 1
...
@@ -14835,7 +14472,7 @@ MonoBehaviour:
...
@@ -14835,7 +14472,7 @@ MonoBehaviour:
keepCrispWhenShrunk: 1
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mFont: {fileID: 0}
mFont: {fileID: 0}
mText:
8
mText:
60
mFontSize: 22
mFontSize: 22
mFontStyle: 0
mFontStyle: 0
mAlignment: 0
mAlignment: 0
...
@@ -17693,56 +17330,6 @@ MonoBehaviour:
...
@@ -17693,56 +17330,6 @@ MonoBehaviour:
onFinished: []
onFinished: []
eventReceiver: {fileID: 0}
eventReceiver: {fileID: 0}
callWhenFinished:
callWhenFinished:
--- !u!114 &11492352
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 197160}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 411022}
relative: 0.5
absolute: -5
rightAnchor:
target: {fileID: 411022}
relative: 0.5
absolute: 5
bottomAnchor:
target: {fileID: 411022}
relative: 0.5
absolute: -5
topAnchor:
target: {fileID: 411022}
relative: 0.5
absolute: 5
updateAnchors: 2
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 4
mWidth: 10
mHeight: 10
mDepth: 2
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 1
mType: 0
mFillDirection: 4
mFillAmount: 1
mInvert: 0
mFlip: 0
centerType: 1
leftType: 1
rightType: 1
bottomType: 1
topType: 1
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: wwhite
mFillCenter: 1
--- !u!114 &11492934
--- !u!114 &11492934
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18025,33 +17612,6 @@ MonoBehaviour:
...
@@ -18025,33 +17612,6 @@ MonoBehaviour:
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: kuang
mSpriteName: kuang
mFillCenter: 1
mFillCenter: 1
--- !u!114 &11494298
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 128600}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1fdca5042b1d12a4890ec1bd4f04290d, type: 3}
m_Name:
m_EditorClassIdentifier:
tweenTarget: {fileID: 122714}
hover: {r: 1, g: 1, b: 1, a: 1}
pressed: {r: 1, g: 1, b: 1, a: 1}
disabledColor: {r: 1, g: 1, b: 1, a: 1}
duration: 0.2
dragHighlight: 0
hoverSprite:
pressedSprite:
disabledSprite:
hoverSprite2D: {fileID: 0}
pressedSprite2D: {fileID: 0}
disabledSprite2D: {fileID: 0}
pixelSnap: 0
onClick: []
mTextureOutNormal:
mTextureOutPressed:
--- !u!114 &11494336
--- !u!114 &11494336
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18570,6 +18130,22 @@ Prefab:
...
@@ -18570,6 +18130,22 @@ Prefab:
m_ParentPrefab: {fileID: 0}
m_ParentPrefab: {fileID: 0}
m_RootGameObject: {fileID: 133012}
m_RootGameObject: {fileID: 133012}
m_IsPrefabParent: 1
m_IsPrefabParent: 1
--- !u!1 &1163210179715550
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4633398798748790}
- component: {fileID: 114216311764721446}
m_Layer: 5
m_Name: '!lable'
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1334155132578260
--- !u!1 &1334155132578260
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18590,6 +18166,42 @@ GameObject:
...
@@ -18590,6 +18166,42 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &1387616484472836
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4835678885711058}
- component: {fileID: 114122206682793576}
- component: {fileID: 65176240603547608}
- component: {fileID: 114405316397084704}
- component: {fileID: 114128551422168406}
- component: {fileID: 114147949719137094}
m_Layer: 5
m_Name: star_
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1399411756939054
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4078943406314486}
- component: {fileID: 114196549365781764}
m_Layer: 5
m_Name: Symbol
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1409564597213602
--- !u!1 &1409564597213602
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18610,6 +18222,22 @@ GameObject:
...
@@ -18610,6 +18222,22 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &1487971509915834
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4650414086440950}
- component: {fileID: 114176017464144276}
m_Layer: 5
m_Name: content_
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1488671369870118
--- !u!1 &1488671369870118
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18710,6 +18338,19 @@ GameObject:
...
@@ -18710,6 +18338,19 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!4 &4078943406314486
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1399411756939054}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 108, y: -0.24, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 4835678885711058}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4093465128725644
--- !u!4 &4093465128725644
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18736,6 +18377,19 @@ Transform:
...
@@ -18736,6 +18377,19 @@ Transform:
m_Father: {fileID: 4808535323606856}
m_Father: {fileID: 4808535323606856}
m_RootOrder: 2
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4633398798748790
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1163210179715550}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -192, y: -1.32, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 4835678885711058}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4642579248728316
--- !u!4 &4642579248728316
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18749,15 +18403,28 @@ Transform:
...
@@ -18749,15 +18403,28 @@ Transform:
m_Father: {fileID: 4808535323606856}
m_Father: {fileID: 4808535323606856}
m_RootOrder: 1
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4
73715525945226
0
--- !u!4 &4
65041408644095
0
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1
848059495511682
}
m_GameObject: {fileID: 1
487971509915834
}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 10, y: 1, z: 0}
m_LocalPosition: {x: -120, y: -0.72, z: 0}
m_LocalScale: {x: 0.01, y: 0.01, z: 0.01}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 4835678885711058}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4737155259452260
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1848059495511682}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 10, y: 1, z: 0}
m_LocalScale: {x: 0.01, y: 0.01, z: 0.01}
m_Children: []
m_Children: []
m_Father: {fileID: 4748048495216516}
m_Father: {fileID: 4748048495216516}
m_RootOrder: 0
m_RootOrder: 0
...
@@ -18776,7 +18443,7 @@ Transform:
...
@@ -18776,7 +18443,7 @@ Transform:
- {fileID: 4093465128725644}
- {fileID: 4093465128725644}
- {fileID: 4937417521647812}
- {fileID: 4937417521647812}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 2
1
m_RootOrder: 2
2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4808535323606856
--- !u!4 &4808535323606856
Transform:
Transform:
...
@@ -18792,7 +18459,23 @@ Transform:
...
@@ -18792,7 +18459,23 @@ Transform:
- {fileID: 4642579248728316}
- {fileID: 4642579248728316}
- {fileID: 4297149264326394}
- {fileID: 4297149264326394}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 22
m_RootOrder: 23
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4835678885711058
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -157.2, y: 185, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 4650414086440950}
- {fileID: 4078943406314486}
- {fileID: 4633398798748790}
m_Father: {fileID: 463726}
m_RootOrder: 6
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4937417521647812
--- !u!4 &4937417521647812
Transform:
Transform:
...
@@ -18820,6 +18503,18 @@ Transform:
...
@@ -18820,6 +18503,18 @@ Transform:
m_Father: {fileID: 4808535323606856}
m_Father: {fileID: 4808535323606856}
m_RootOrder: 0
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &65176240603547608
BoxCollider:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_Material: {fileID: 0}
m_IsTrigger: 1
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 240, y: 34, z: 0}
m_Center: {x: 0, y: 0, z: 0}
--- !u!65 &65762186443550356
--- !u!65 &65762186443550356
BoxCollider:
BoxCollider:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18915,6 +18610,80 @@ MonoBehaviour:
...
@@ -18915,6 +18610,80 @@ MonoBehaviour:
onFinished: []
onFinished: []
eventReceiver: {fileID: 0}
eventReceiver: {fileID: 0}
callWhenFinished:
callWhenFinished:
--- !u!114 &114122206682793576
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 57e428c9b6087304da439ec665b56a2d, type: 3}
m_Name:
m_EditorClassIdentifier:
atlas: {fileID: 11400000, guid: 62adb30369acbf943a67cee0f69267a3, type: 2}
bitmapFont: {fileID: 0}
trueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
fontSize: 16
fontStyle: 0
backgroundSprite: Button
highlightSprite: Button
position: 0
alignment: 1
items:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
padding: {x: 4, y: 4}
textColor: {r: 1, g: 1, b: 1, a: 1}
backgroundColor: {r: 0, g: 0, b: 0, a: 1}
highlightColor: {r: 1, g: 1, b: 1, a: 0.39215687}
isAnimated: 1
isLocalized: 0
separatePanel: 1
openOn: 0
onChange:
- mTarget: {fileID: 114176017464144276}
mMethodName: SetCurrentSelection
mParameters: []
oneShot: 0
- mTarget: {fileID: 114128551422168406}
mMethodName: function
mParameters: []
oneShot: 0
mSelectedItem: 1
mPanel: {fileID: 0}
mBackground: {fileID: 0}
mHighlight: {fileID: 0}
mHighlightedLabel: {fileID: 0}
mLabelList: []
mBgBorder: 0
eventReceiver: {fileID: 0}
functionName:
textScale: 0
font: {fileID: 0}
textLabel: {fileID: 0}
source: {fileID: 0}
--- !u!114 &114128551422168406
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d48de937f6d201943a921f61a30bd9be, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &114136671086423984
--- !u!114 &114136671086423984
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18965,6 +18734,238 @@ MonoBehaviour:
...
@@ -18965,6 +18734,238 @@ MonoBehaviour:
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: kuang
mSpriteName: kuang
mFillCenter: 1
mFillCenter: 1
--- !u!114 &114147949719137094
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 0
topAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
updateAnchors: 1
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 4
mWidth: 240
mHeight: 34
mDepth: 7
autoResizeBoxCollider: 1
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 7.0588236
mType: 1
mFillDirection: 4
mFillAmount: 1
mInvert: 0
mFlip: 0
centerType: 1
leftType: 1
rightType: 1
bottomType: 1
topType: 1
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: whiteLine
mFillCenter: 1
--- !u!114 &114176017464144276
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1487971509915834}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e9d0b5f3bbe925a408bd595c79d0bf63, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: 7
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: -28
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 4
topAnchor:
target: {fileID: 0}
relative: 1
absolute: -6
updateAnchors: 1
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 3
mWidth: 240
mHeight: 22
mDepth: 11
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 10.909091
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mFont: {fileID: 0}
mText: 8
mFontSize: 22
mFontStyle: 0
mAlignment: 0
mEncoding: 1
mMaxLineCount: 1
mEffectStyle: 1
mEffectColor: {r: 0, g: 0, b: 0, a: 1}
mSymbols: 1
mEffectDistance: {x: 1, y: 1}
mOverflow: 0
mMaterial: {fileID: 0}
mApplyGradient: 1
mGradientTop: {r: 1, g: 1, b: 1, a: 1}
mGradientBottom: {r: 0.7, g: 0.7, b: 0.7, a: 1}
mSpacingX: 0
mSpacingY: 0
mUseFloatSpacing: 0
mFloatSpacingX: 0
mFloatSpacingY: 0
mOverflowEllipsis: 0
mShrinkToFit: 0
mMaxLineWidth: 0
mMaxLineHeight: 0
mLineWidth: 0
mMultiline: 1
--- !u!114 &114196549365781764
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1399411756939054}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: -20
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 7
topAnchor:
target: {fileID: 0}
relative: 1
absolute: -7
updateAnchors: 1
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 4
mWidth: 24
mHeight: 24
mDepth: 3
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 1
mType: 0
mFillDirection: 4
mFillAmount: 1
mInvert: 0
mFlip: 0
centerType: 1
leftType: 1
rightType: 1
bottomType: 1
topType: 1
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: arrodown
mFillCenter: 1
--- !u!114 &114216311764721446
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1163210179715550}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e9d0b5f3bbe925a408bd595c79d0bf63, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 0}
relative: 0
absolute: -100
rightAnchor:
target: {fileID: 0}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 0}
relative: 0
absolute: 8
topAnchor:
target: {fileID: 0}
relative: 1
absolute: -10
updateAnchors: 1
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 4
mWidth: 120
mHeight: 24
mDepth: 12
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 5
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 12800000, guid: f775853fdfd14bb47934543e95c3bae3, type: 3}
mFont: {fileID: 0}
mText: "\u7279\u5199\u661F\u6570"
mFontSize: 22
mFontStyle: 0
mAlignment: 3
mEncoding: 1
mMaxLineCount: 0
mEffectStyle: 1
mEffectColor: {r: 0, g: 0, b: 0, a: 1}
mSymbols: 1
mEffectDistance: {x: 1, y: 1}
mOverflow: 0
mMaterial: {fileID: 0}
mApplyGradient: 1
mGradientTop: {r: 1, g: 1, b: 1, a: 1}
mGradientBottom: {r: 0.7, g: 0.7, b: 0.7, a: 1}
mSpacingX: 0
mSpacingY: 0
mUseFloatSpacing: 0
mFloatSpacingX: 0
mFloatSpacingY: 0
mOverflowEllipsis: 0
mShrinkToFit: 0
mMaxLineWidth: 0
mMaxLineHeight: 0
mLineWidth: 0
mMultiline: 1
--- !u!114 &114247332317060808
--- !u!114 &114247332317060808
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -19090,6 +19091,33 @@ MonoBehaviour:
...
@@ -19090,6 +19091,33 @@ MonoBehaviour:
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mAtlas: {fileID: 11422656, guid: 1b5c469d95cc74b4e9f655da6f9dd392, type: 2}
mSpriteName: wwhite
mSpriteName: wwhite
mFillCenter: 1
mFillCenter: 1
--- !u!114 &114405316397084704
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1387616484472836}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1fdca5042b1d12a4890ec1bd4f04290d, type: 3}
m_Name:
m_EditorClassIdentifier:
tweenTarget: {fileID: 1387616484472836}
hover: {r: 1, g: 0.78194726, b: 0.6838235, a: 1}
pressed: {r: 1, g: 0.78039217, b: 0.68235296, a: 1}
disabledColor: {r: 1, g: 1, b: 1, a: 1}
duration: 0.2
dragHighlight: 0
hoverSprite:
pressedSprite:
disabledSprite:
hoverSprite2D: {fileID: 0}
pressedSprite2D: {fileID: 0}
disabledSprite2D: {fileID: 0}
pixelSnap: 0
onClick: []
mTextureOutNormal:
mTextureOutPressed:
--- !u!114 &114462178772296572
--- !u!114 &114462178772296572
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
...
README.md
View file @
fba9af9e
...
@@ -16,7 +16,7 @@ The feedbacks is checked every day.
...
@@ -16,7 +16,7 @@ The feedbacks is checked every day.
# How to compile the game?
# How to compile the game?
1.
Download Unity 5.6.
6f2
(https://unity3d.com/cn/get-unity/download/archive).
1.
Download Unity 5.6.
7f1
(https://unity3d.com/cn/get-unity/download/archive).
2.
Clone the repository.
2.
Clone the repository.
...
...
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