Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOProUnity_V2
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
List
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
fallenstardust
YGOProUnity_V2
Commits
89299a43
Commit
89299a43
authored
Jun 02, 2021
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win effect can be turned off
parent
b91b8340
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
460 additions
and
17 deletions
+460
-17
Assets/ArtSystem/Setting/LAZYsetting.cs
Assets/ArtSystem/Setting/LAZYsetting.cs
+1
-0
Assets/SibylSystem/Ocgcore/Ocgcore.cs
Assets/SibylSystem/Ocgcore/Ocgcore.cs
+13
-9
Assets/SibylSystem/Setting/Setting.cs
Assets/SibylSystem/Setting/Setting.cs
+1
-1
Assets/transUI/prefab/trans_setting.prefab
Assets/transUI/prefab/trans_setting.prefab
+445
-7
No files found.
Assets/ArtSystem/Setting/LAZYsetting.cs
View file @
89299a43
...
@@ -32,6 +32,7 @@ public class LAZYsetting : MonoBehaviour {
...
@@ -32,6 +32,7 @@ public class LAZYsetting : MonoBehaviour {
public
UIToggle
Vactt
;
public
UIToggle
Vactt
;
public
UIToggle
Vlink
;
public
UIToggle
Vlink
;
public
UIToggle
Vfield
;
public
UIToggle
Vfield
;
public
UIToggle
Vwin
;
public
UIToggle
resize
;
public
UIToggle
resize
;
public
UIToggle
hand
;
public
UIToggle
hand
;
...
...
Assets/SibylSystem/Ocgcore/Ocgcore.cs
View file @
89299a43
...
@@ -2648,20 +2648,24 @@ public class Ocgcore : ServantWithCardDescription
...
@@ -2648,20 +2648,24 @@ public class Ocgcore : ServantWithCardDescription
EventDelegate
.
Execute
(
UIHelper
.
getByName
<
UIButton
>(
toolBar
,
"stop_"
).
onClick
);
EventDelegate
.
Execute
(
UIHelper
.
getByName
<
UIButton
>(
toolBar
,
"stop_"
).
onClick
);
}
}
}
}
UIHelper
.
playSound
(
"explode"
,
0.4f
);
float
real
=
(
Program
.
fieldSize
-
1
)
*
0.9f
+
1f
;
RMSshow_clear
();
RMSshow_clear
();
GameObject
explode
=
create
(
result
==
duelResult
.
win
?
Program
.
I
().
mod_winExplode
:
Program
.
I
().
mod_loseExplode
);
float
real
=
(
Program
.
fieldSize
-
1
)
*
0.9f
+
1f
;
var
co
=
explode
.
AddComponent
<
animation_screen_lock
>();
var
point
=
Program
.
camera_game_main
.
WorldToScreenPoint
(
new
Vector3
(
0
,
0
,
-
5.65f
*
real
));
co
.
screen_point
=
Program
.
camera_game_main
.
WorldToScreenPoint
(
new
Vector3
(
0
,
0
,
-
5.65f
*
real
));
point
.
z
=
2
;
co
.
screen_point
.
z
=
2
;
if
(
Program
.
I
().
setting
.
setting
.
Vwin
.
value
)
explode
.
transform
.
position
=
Camera
.
main
.
ScreenToWorldPoint
(
co
.
screen_point
);
{
UIHelper
.
playSound
(
"explode"
,
0.4f
);
GameObject
explode
=
create
(
result
==
duelResult
.
win
?
Program
.
I
().
mod_winExplode
:
Program
.
I
().
mod_loseExplode
);
var
co
=
explode
.
AddComponent
<
animation_screen_lock
>();
co
.
screen_point
=
point
;
explode
.
transform
.
position
=
Camera
.
main
.
ScreenToWorldPoint
(
point
);
}
if
(
condition
==
Condition
.
record
)
if
(
condition
==
Condition
.
record
)
{
{
winCaculator
=
create
winCaculator
=
create
(
(
Program
.
I
().
New_winCaculatorRecord
,
Program
.
I
().
New_winCaculatorRecord
,
Program
.
camera_main_2d
.
ScreenToWorldPoint
(
co
.
screen_
point
),
Program
.
camera_main_2d
.
ScreenToWorldPoint
(
point
),
new
Vector3
(
0
,
0
,
0
),
new
Vector3
(
0
,
0
,
0
),
true
,
true
,
Program
.
ui_main_2d
,
Program
.
ui_main_2d
,
...
@@ -2674,7 +2678,7 @@ public class Ocgcore : ServantWithCardDescription
...
@@ -2674,7 +2678,7 @@ public class Ocgcore : ServantWithCardDescription
winCaculator
=
create
winCaculator
=
create
(
(
Program
.
I
().
New_winCaculator
,
Program
.
I
().
New_winCaculator
,
Program
.
camera_main_2d
.
ScreenToWorldPoint
(
co
.
screen_
point
),
Program
.
camera_main_2d
.
ScreenToWorldPoint
(
point
),
new
Vector3
(
0
,
0
,
0
),
new
Vector3
(
0
,
0
,
0
),
true
,
true
,
Program
.
ui_main_2d
,
Program
.
ui_main_2d
,
...
...
Assets/SibylSystem/Setting/Setting.cs
View file @
89299a43
...
@@ -53,7 +53,7 @@ public class Setting : WindowServant2D
...
@@ -53,7 +53,7 @@ public class Setting : WindowServant2D
{
{
if
(
collection
[
i
].
name
.
Length
>
0
&&
collection
[
i
].
name
[
0
]
==
'*'
)
if
(
collection
[
i
].
name
.
Length
>
0
&&
collection
[
i
].
name
[
0
]
==
'*'
)
{
{
if
(
collection
[
i
].
name
==
"*mouseParticle"
||
collection
[
i
].
name
==
"*showOff"
||
collection
[
i
].
name
==
"*Efield"
)
if
(
collection
[
i
].
name
==
"*mouseParticle"
||
collection
[
i
].
name
==
"*showOff"
||
collection
[
i
].
name
==
"*Efield"
||
collection
[
i
].
name
==
"*Ewin"
)
{
{
collection
[
i
].
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
collection
[
i
].
name
,
"1"
));
collection
[
i
].
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
collection
[
i
].
name
,
"1"
));
}
}
...
...
Assets/transUI/prefab/trans_setting.prefab
View file @
89299a43
...
@@ -1799,7 +1799,7 @@ GameObject:
...
@@ -1799,7 +1799,7 @@ GameObject:
- component: {fileID: 11400540}
- component: {fileID: 11400540}
- component: {fileID: 11450506}
- component: {fileID: 11450506}
m_Layer: 5
m_Layer: 5
m_Name
:
'
*E
link
'
m_Name: '*E
win
'
m_TagString: Untagged
m_TagString: Untagged
m_Icon: {fileID: 0}
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_NavMeshLayer: 0
...
@@ -3083,6 +3083,7 @@ Transform:
...
@@ -3083,6 +3083,7 @@ Transform:
- {fileID: 490080}
- {fileID: 490080}
- {fileID: 453648}
- {fileID: 453648}
- {fileID: 471716}
- {fileID: 471716}
- {fileID: 4886439764682556}
- {fileID: 498002}
- {fileID: 498002}
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 19
m_RootOrder: 19
...
@@ -5386,15 +5387,15 @@ Transform:
...
@@ -5386,15 +5387,15 @@ Transform:
m_PrefabParentObject: {fileID: 0}
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 163810}
m_GameObject: {fileID: 163810}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation: {x:
-0, y: -0, z: -
0, w: 1}
m_LocalPosition
:
{
x
:
2
,
y
:
-29
,
z
:
0
}
m_LocalPosition: {x:
131.1, y: -29.000004
, z: 0}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale: {x: 1
.0001, y: 1.0001, z: 1.000
1}
m_Children:
m_Children:
- {fileID: 459148}
- {fileID: 459148}
- {fileID: 479564}
- {fileID: 479564}
- {fileID: 456164}
- {fileID: 456164}
m_Father: {fileID: 401270}
m_Father: {fileID: 401270}
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 &498702
--- !u!4 &498702
Transform:
Transform:
...
@@ -6711,7 +6712,7 @@ MonoBehaviour:
...
@@ -6711,7 +6712,7 @@ MonoBehaviour:
keepCrispWhenShrunk: 1
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
mTrueTypeFont: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
mFont: {fileID: 0}
mFont: {fileID: 0}
mText
:
"
\u8
FDE\u63A5
\u7279\u6548
"
mText: "\u8
0DC\u5229
\u7279\u6548"
mFontSize: 18
mFontSize: 18
mFontStyle: 0
mFontStyle: 0
mAlignment: 0
mAlignment: 0
...
@@ -10245,8 +10246,9 @@ MonoBehaviour:
...
@@ -10245,8 +10246,9 @@ MonoBehaviour:
Vactm: {fileID: 11466238}
Vactm: {fileID: 11466238}
Vacts: {fileID: 11487844}
Vacts: {fileID: 11487844}
Vactt: {fileID: 11471692}
Vactt: {fileID: 11471692}
Vlink
:
{
fileID
:
114
22352
}
Vlink: {fileID: 114
923837300843754
}
Vfield: {fileID: 11418932}
Vfield: {fileID: 11418932}
Vwin: {fileID: 11422352}
resize: {fileID: 11460912}
resize: {fileID: 11460912}
hand: {fileID: 11494342}
hand: {fileID: 11494342}
handm: {fileID: 11478368}
handm: {fileID: 11478368}
...
@@ -18605,6 +18607,60 @@ GameObject:
...
@@ -18605,6 +18607,60 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &1357840335325036
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4524552081519470}
- component: {fileID: 111929449074676090}
- component: {fileID: 114298923639099868}
- component: {fileID: 114355188289572698}
m_Layer: 5
m_Name: Checkmark
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1393075203908680
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4035284503035802}
- component: {fileID: 114670914641155132}
m_Layer: 5
m_Name: '!lable'
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1649135498750974
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4886439764682556}
- component: {fileID: 114608270758713708}
- component: {fileID: 114923837300843754}
- component: {fileID: 65254814941093950}
- component: {fileID: 114989618110270410}
- component: {fileID: 114119648248147396}
m_Layer: 5
m_Name: '*Elink'
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!1 &1776748456693300
--- !u!1 &1776748456693300
GameObject:
GameObject:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18639,6 +18695,48 @@ GameObject:
...
@@ -18639,6 +18695,48 @@ GameObject:
m_NavMeshLayer: 0
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_StaticEditorFlags: 0
m_IsActive: 1
m_IsActive: 1
--- !u!1 &1939741427036056
GameObject:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 4856659510499590}
- component: {fileID: 114608477675484490}
m_Layer: 5
m_Name: Background
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &4035284503035802
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1393075203908680}
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: 4886439764682556}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4524552081519470
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1357840335325036}
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: 4886439764682556}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4625296397425498
--- !u!4 &4625296397425498
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18681,6 +18779,35 @@ Transform:
...
@@ -18681,6 +18779,35 @@ Transform:
m_Father: {fileID: 463726}
m_Father: {fileID: 463726}
m_RootOrder: 8
m_RootOrder: 8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4856659510499590
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1939741427036056}
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: 4886439764682556}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4886439764682556
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 2, y: -29, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 4524552081519470}
- {fileID: 4856659510499590}
- {fileID: 4035284503035802}
m_Father: {fileID: 401270}
m_RootOrder: 18
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!4 &4929848543833722
--- !u!4 &4929848543833722
Transform:
Transform:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18706,6 +18833,18 @@ BoxCollider:
...
@@ -18706,6 +18833,18 @@ BoxCollider:
serializedVersion: 2
serializedVersion: 2
m_Size: {x: 227, y: 24, z: 0}
m_Size: {x: 227, y: 24, z: 0}
m_Center: {x: 113.5, y: 0, z: 0}
m_Center: {x: 113.5, y: 0, z: 0}
--- !u!65 &65254814941093950
BoxCollider:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
m_Material: {fileID: 0}
m_IsTrigger: 1
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 127, y: 24, z: 0}
m_Center: {x: 63.5, y: 0, z: 0}
--- !u!111 &111091305040024472
--- !u!111 &111091305040024472
Animation:
Animation:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18721,6 +18860,21 @@ Animation:
...
@@ -18721,6 +18860,21 @@ Animation:
m_PlayAutomatically: 0
m_PlayAutomatically: 0
m_AnimatePhysics: 0
m_AnimatePhysics: 0
m_CullingType: 0
m_CullingType: 0
--- !u!111 &111929449074676090
Animation:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1357840335325036}
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!114 &114018010971782602
--- !u!114 &114018010971782602
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18748,6 +18902,21 @@ MonoBehaviour:
...
@@ -18748,6 +18902,21 @@ MonoBehaviour:
onClick: []
onClick: []
mTextureOutNormal:
mTextureOutNormal:
mTextureOutPressed:
mTextureOutPressed:
--- !u!114 &114119648248147396
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3f23d9cb4e13584439c9f9ddeed5e512, type: 3}
m_Name:
m_EditorClassIdentifier:
tweenTarget: {fileID: 4856659510499590}
hover: {x: 0, y: 0, z: 90}
pressed: {x: 0, y: 0, z: 0}
duration: 0.2
--- !u!114 &114283394427557082
--- !u!114 &114283394427557082
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18839,6 +19008,20 @@ MonoBehaviour:
...
@@ -18839,6 +19008,20 @@ MonoBehaviour:
eventReceiver: {fileID: 0}
eventReceiver: {fileID: 0}
functionName: OnActivate
functionName: OnActivate
startsChecked: 0
startsChecked: 0
--- !u!114 &114298923639099868
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1357840335325036}
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 &114318905364481546
--- !u!114 &114318905364481546
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -18940,6 +19123,209 @@ MonoBehaviour:
...
@@ -18940,6 +19123,209 @@ 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 &114355188289572698
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1357840335325036}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 4856659510499590}
relative: 0.5
absolute: -5
rightAnchor:
target: {fileID: 4856659510499590}
relative: 0.5
absolute: 5
bottomAnchor:
target: {fileID: 4856659510499590}
relative: 0.5
absolute: -5
topAnchor:
target: {fileID: 4856659510499590}
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 &114608270758713708
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
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: 127
mHeight: 24
mDepth: 6
autoResizeBoxCollider: 1
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 5.2916665
--- !u!114 &114608477675484490
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1939741427036056}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1b3dc54f924693f41b5cbecb267e647a, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 4886439764682556}
relative: 0
absolute: 1
rightAnchor:
target: {fileID: 4886439764682556}
relative: 0
absolute: 19
bottomAnchor:
target: {fileID: 4886439764682556}
relative: 0
absolute: 4
topAnchor:
target: {fileID: 4886439764682556}
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 &114670914641155132
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1393075203908680}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e9d0b5f3bbe925a408bd595c79d0bf63, type: 3}
m_Name:
m_EditorClassIdentifier:
leftAnchor:
target: {fileID: 4886439764682556}
relative: 0
absolute: 27
rightAnchor:
target: {fileID: 4886439764682556}
relative: 1
absolute: 0
bottomAnchor:
target: {fileID: 4886439764682556}
relative: 0
absolute: 2
topAnchor:
target: {fileID: 4886439764682556}
relative: 1
absolute: -2
updateAnchors: 2
mColor: {r: 1, g: 1, b: 1, a: 1}
mPivot: 3
mWidth: 100
mHeight: 20
mDepth: 9
autoResizeBoxCollider: 0
hideIfOffScreen: 0
keepAspectRatio: 0
aspectRatio: 5
keepCrispWhenShrunk: 1
mTrueTypeFont: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
mFont: {fileID: 0}
mText: "\u8FDE\u63A5\u7279\u6548"
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 &114692281119276264
--- !u!114 &114692281119276264
MonoBehaviour:
MonoBehaviour:
m_ObjectHideFlags: 1
m_ObjectHideFlags: 1
...
@@ -19005,3 +19391,55 @@ MonoBehaviour:
...
@@ -19005,3 +19391,55 @@ MonoBehaviour:
hover: {x: 0, y: 0, z: 90}
hover: {x: 0, y: 0, z: 90}
pressed: {x: 0, y: 0, z: 0}
pressed: {x: 0, y: 0, z: 0}
duration: 0.2
duration: 0.2
--- !u!114 &114923837300843754
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
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: 111929449074676090}
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 &114989618110270410
MonoBehaviour:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1649135498750974}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1fdca5042b1d12a4890ec1bd4f04290d, type: 3}
m_Name:
m_EditorClassIdentifier:
tweenTarget: {fileID: 1939741427036056}
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:
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