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
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
mercury233
ygopro2
Commits
096110bd
Commit
096110bd
authored
Feb 24, 2019
by
Unicorn369
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update library-release.aar && Download closeup
parent
4d4fadae
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
785 additions
and
89 deletions
+785
-89
Assets/Plugins/Android/library-release.aar
Assets/Plugins/Android/library-release.aar
+0
-0
Assets/SibylSystem/Menu/Menu.cs
Assets/SibylSystem/Menu/Menu.cs
+27
-0
Assets/SibylSystem/Program.cs
Assets/SibylSystem/Program.cs
+4
-6
Assets/YGOSharp/CardsManager.cs
Assets/YGOSharp/CardsManager.cs
+5
-0
Assets/transUI/prefab/trans_menu.prefab
Assets/transUI/prefab/trans_menu.prefab
+748
-82
ProjectSettings/ProjectSettings.asset
ProjectSettings/ProjectSettings.asset
+1
-1
No files found.
Assets/Plugins/Android/library-release.aar
View file @
096110bd
No preview for this file type
Assets/SibylSystem/Menu/Menu.cs
View file @
096110bd
...
@@ -21,6 +21,8 @@ public class Menu : WindowServantSP
...
@@ -21,6 +21,8 @@ public class Menu : WindowServantSP
UIHelper
.
registEvent
(
gameObject
,
"single_"
,
onClickPizzle
);
UIHelper
.
registEvent
(
gameObject
,
"single_"
,
onClickPizzle
);
//UIHelper.registEvent(gameObject, "ai_", onClickAI);
//UIHelper.registEvent(gameObject, "ai_", onClickAI);
UIHelper
.
registEvent
(
gameObject
,
"exit_"
,
onClickExit
);
UIHelper
.
registEvent
(
gameObject
,
"exit_"
,
onClickExit
);
UIHelper
.
registEvent
(
gameObject
,
"joinQQ_"
,
onClickJoinQQ
);
UIHelper
.
registEvent
(
gameObject
,
"download_"
,
onClickDownload
);
//(new Thread(up)).Start();
//(new Thread(up)).Start();
}
}
...
@@ -126,6 +128,31 @@ public class Menu : WindowServantSP
...
@@ -126,6 +128,31 @@ public class Menu : WindowServantSP
Program
.
I
().
shiftToServant
(
Program
.
I
().
selectDeck
);
Program
.
I
().
shiftToServant
(
Program
.
I
().
selectDeck
);
}
}
void
onClickJoinQQ
()
{
#if UNITY_EDITOR || UNITY_STANDALONE_WIN //编译器、Windows
Application
.
OpenURL
(
"https://jq.qq.com/?_wv=1027&k=50MZVQA"
);
#elif UNITY_ANDROID //Android
AndroidJavaObject
jo
=
new
AndroidJavaObject
(
"cn.unicorn369.library.API"
);
jo
.
Call
(
"doJoinQQGroup"
,
"UHm3h3hSrmgp-iYqMiZcc2zO5J1Q8OyW"
);
#endif
}
void
onClickDownload
()
{
#if UNITY_EDITOR || UNITY_STANDALONE_WIN //编译器、Windows
Application
.
OpenURL
(
"https://github.com/Unicorn369/pro2_android_closeup/releases/download/1.0/closeup_version1.0.zip"
);
#elif UNITY_ANDROID //Android
AndroidJavaObject
jo
=
new
AndroidJavaObject
(
"cn.unicorn369.library.API"
);
if
(!
File
.
Exists
(
"updates/closeup_version1.0.txt"
))
//用于检查更新
{
jo
.
Call
(
"doDownloadZipFile"
,
"https://github.com/Unicorn369/pro2_android_closeup/releases/download/1.0/closeup_version1.0.zip"
);
//下载并解压
}
else
{
jo
.
Call
(
"showToast"
,
"已下载,无需再次下载!"
);
}
#endif
}
public
static
void
deleteShell
()
public
static
void
deleteShell
()
{
{
try
try
...
...
Assets/SibylSystem/Program.cs
View file @
096110bd
...
@@ -287,7 +287,7 @@ public class Program : MonoBehaviour
...
@@ -287,7 +287,7 @@ public class Program : MonoBehaviour
//YGOPro2 Paths (https://github.com/Unicorn369/YGOPro2_Droid/tree/Test)
//YGOPro2 Paths (https://github.com/Unicorn369/YGOPro2_Droid/tree/Test)
//string GamePaths = "/storage/emulated/0/ygopro2/";
//string GamePaths = "/storage/emulated/0/ygopro2/";
if
(!
File
.
Exists
(
GamePaths
+
"updates/version1.0.txt"
))
if
(!
File
.
Exists
(
GamePaths
+
"updates/version1.0.txt"
))
{
{
string
filePath
=
Application
.
streamingAssetsPath
+
"/ygocore.zip"
;
string
filePath
=
Application
.
streamingAssetsPath
+
"/ygocore.zip"
;
var
www
=
new
WWW
(
filePath
);
var
www
=
new
WWW
(
filePath
);
...
@@ -300,7 +300,7 @@ public class Program : MonoBehaviour
...
@@ -300,7 +300,7 @@ public class Program : MonoBehaviour
System
.
IO
.
Directory
.
SetCurrentDirectory
(
GamePaths
);
System
.
IO
.
Directory
.
SetCurrentDirectory
(
GamePaths
);
#elif UNITY_IPHONE //iPhone
#elif UNITY_IPHONE //iPhone
string
GamePaths
=
Application
.
persistentDataPath
+
"/ygopro2/"
;
string
GamePaths
=
Application
.
persistentDataPath
+
"/ygopro2/"
;
if
(!
File
.
Exists
(
GamePaths
+
"updates/version1.0.txt"
))
if
(!
File
.
Exists
(
GamePaths
+
"updates/version1.0.txt"
))
{
{
string
filePath
=
Application
.
streamingAssetsPath
+
"/ygocore.zip"
;
string
filePath
=
Application
.
streamingAssetsPath
+
"/ygocore.zip"
;
var
www
=
new
WWW
(
filePath
);
var
www
=
new
WWW
(
filePath
);
...
@@ -394,14 +394,12 @@ public class Program : MonoBehaviour
...
@@ -394,14 +394,12 @@ public class Program : MonoBehaviour
#if UNITY_ANDROID //Android Java Test
#if UNITY_ANDROID //Android Java Test
AndroidJavaObject
jo
=
new
AndroidJavaObject
(
"cn.unicorn369.library.API"
);
AndroidJavaObject
jo
=
new
AndroidJavaObject
(
"cn.unicorn369.library.API"
);
if
(!
File
.
Exists
(
"updates/image_version1.0.txt"
))
//用于检查更新
if
(!
File
.
Exists
(
"updates/image_version1.0.txt"
))
//用于检查更新
{
{
if
(
File
.
Exists
(
"pics.zip"
))
//YGOMobile内置的卡图包
if
(
File
.
Exists
(
"pics.zip"
))
//YGOMobile内置的卡图包
{
{
jo
.
Call
(
"doExtractZipFile"
,
"pics.zip"
,
"./"
);
jo
.
Call
(
"doExtractZipFile"
,
"pics.zip"
,
"./"
);
File
.
Create
(
"updates/image_version1.0.txt"
);
File
.
Create
(
"updates/image_version1.0.txt"
);
//} else {
// jo.Call("doDownloadZipFile", "http://download.ygopro.win/ygopro2/Android-Image-Data.zip");//下载并解压,完成后删除
}
}
}
}
#endif
#endif
...
...
Assets/YGOSharp/CardsManager.cs
View file @
096110bd
...
@@ -25,6 +25,11 @@ namespace YGOSharp
...
@@ -25,6 +25,11 @@ namespace YGOSharp
nullString
+=
"\r\n「Android」\r\n[url=https://github.com/Unicorn369/YGOPro2_Droid][u]https://github.com/Unicorn369/YGOPro2_Droid[/u][/url]"
;
nullString
+=
"\r\n「Android」\r\n[url=https://github.com/Unicorn369/YGOPro2_Droid][u]https://github.com/Unicorn369/YGOPro2_Droid[/u][/url]"
;
//nullString += "\r\nWindows:[url=https://github.com/lllyasviel/YGOProUnity_V2][u]https://github.com/lllyasviel/YGOProUnity_V2[/u][/url]";
//nullString += "\r\nWindows:[url=https://github.com/lllyasviel/YGOProUnity_V2][u]https://github.com/lllyasviel/YGOProUnity_V2[/u][/url]";
nullString
+=
"\r\n\r\n「Windows」\r\n[url=https://github.com/mercury233/ygopro2][u]https://github.com/mercury233/ygopro2[/u][/url]"
;
nullString
+=
"\r\n\r\n「Windows」\r\n[url=https://github.com/mercury233/ygopro2][u]https://github.com/mercury233/ygopro2[/u][/url]"
;
nullString
+=
"\r\n\r\n\r\n"
;
nullString
+=
"欢迎加入QQ群:"
;
nullString
+=
"\r\n①:[url=https://jq.qq.com/?_wv=1027&k=5nq6xJe][u]649612818[/u][/url]"
;
nullString
+=
"\r\n③:[url=https://jq.qq.com/?_wv=1027&k=50MZVQA][u]831010207[/u][/url]"
;
nullString
+=
"\r\n②:[url=https://jq.qq.com/?_wv=1027&k=5idyod3][u]559276772[/u][/url]"
;
using
(
SqliteConnection
connection
=
new
SqliteConnection
(
"Data Source="
+
databaseFullPath
))
using
(
SqliteConnection
connection
=
new
SqliteConnection
(
"Data Source="
+
databaseFullPath
))
{
{
connection
.
Open
();
connection
.
Open
();
...
...
Assets/transUI/prefab/trans_menu.prefab
View file @
096110bd
...
@@ -88,7 +88,7 @@ GameObject:
...
@@ -88,7 +88,7 @@ GameObject:
-
component
:
{
fileID
:
11137194
}
-
component
:
{
fileID
:
11137194
}
-
component
:
{
fileID
:
11415628
}
-
component
:
{
fileID
:
11415628
}
m_Layer
:
18
m_Layer
:
18
m_Name
:
ai
_
m_Name
:
joinQQ
_
m_TagString
:
Untagged
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_NavMeshLayer
:
0
...
@@ -103,12 +103,12 @@ GameObject:
...
@@ -103,12 +103,12 @@ GameObject:
m_Component
:
m_Component
:
-
component
:
{
fileID
:
457390
}
-
component
:
{
fileID
:
457390
}
m_Layer
:
18
m_Layer
:
18
m_Name
:
single
m_Name
:
download
m_TagString
:
Untagged
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
0
m_IsActive
:
1
---
!u!1
&114010
---
!u!1
&114010
GameObject
:
GameObject
:
m_ObjectHideFlags
:
1
m_ObjectHideFlags
:
1
...
@@ -269,7 +269,7 @@ GameObject:
...
@@ -269,7 +269,7 @@ GameObject:
-
component
:
{
fileID
:
11104964
}
-
component
:
{
fileID
:
11104964
}
-
component
:
{
fileID
:
11454028
}
-
component
:
{
fileID
:
11454028
}
m_Layer
:
18
m_Layer
:
18
m_Name
:
single
_
m_Name
:
download
_
m_TagString
:
Untagged
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_NavMeshLayer
:
0
...
@@ -362,12 +362,12 @@ GameObject:
...
@@ -362,12 +362,12 @@ GameObject:
m_Component
:
m_Component
:
-
component
:
{
fileID
:
457766
}
-
component
:
{
fileID
:
457766
}
m_Layer
:
18
m_Layer
:
18
m_Name
:
ai
m_Name
:
joinQQ
m_TagString
:
Untagged
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
0
m_IsActive
:
1
---
!u!1
&171908
---
!u!1
&171908
GameObject
:
GameObject
:
m_ObjectHideFlags
:
1
m_ObjectHideFlags
:
1
...
@@ -526,13 +526,13 @@ Transform:
...
@@ -526,13 +526,13 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
153244
}
m_GameObject
:
{
fileID
:
153244
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
-
84.9
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
-
136.6
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
441056
}
-
{
fileID
:
441056
}
-
{
fileID
:
419708
}
-
{
fileID
:
419708
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
6
m_RootOrder
:
9
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&408654
---
!u!4
&408654
Transform
:
Transform
:
...
@@ -554,7 +554,7 @@ Transform:
...
@@ -554,7 +554,7 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
133448
}
m_GameObject
:
{
fileID
:
133448
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-
34
,
y
:
0
,
z
:
0
}
m_LocalPosition
:
{
x
:
-
48
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
463918
}
-
{
fileID
:
463918
}
...
@@ -582,8 +582,8 @@ Transform:
...
@@ -582,8 +582,8 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
117592
}
m_GameObject
:
{
fileID
:
117592
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
0
,
y
:
155.1
,
z
:
0
}
m_LocalPosition
:
{
x
:
-8
,
y
:
213.4
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
0.87
,
y
:
0.87
,
z
:
0.87
}
m_Children
:
[]
m_Children
:
[]
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
0
m_RootOrder
:
0
...
@@ -608,17 +608,19 @@ Transform:
...
@@ -608,17 +608,19 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
167656
}
m_GameObject
:
{
fileID
:
167656
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-3
,
y
:
-1
,
z
:
0
}
m_LocalPosition
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
424744
}
-
{
fileID
:
424744
}
-
{
fileID
:
408654
}
-
{
fileID
:
408654
}
-
{
fileID
:
457766
}
-
{
fileID
:
470768
}
-
{
fileID
:
470768
}
-
{
fileID
:
4829330657038936
}
-
{
fileID
:
457766
}
-
{
fileID
:
468408
}
-
{
fileID
:
468408
}
-
{
fileID
:
461742
}
-
{
fileID
:
461742
}
-
{
fileID
:
4
00018
}
-
{
fileID
:
4
191599820907090
}
-
{
fileID
:
457390
}
-
{
fileID
:
457390
}
-
{
fileID
:
400018
}
-
{
fileID
:
457020
}
-
{
fileID
:
457020
}
m_Father
:
{
fileID
:
0
}
m_Father
:
{
fileID
:
0
}
m_RootOrder
:
0
m_RootOrder
:
0
...
@@ -696,13 +698,13 @@ Transform:
...
@@ -696,13 +698,13 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
129242
}
m_GameObject
:
{
fileID
:
129242
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
-1
44.9
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
-1
96.6
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
435630
}
-
{
fileID
:
435630
}
-
{
fileID
:
476390
}
-
{
fileID
:
476390
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
8
m_RootOrder
:
10
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&457390
---
!u!4
&457390
Transform
:
Transform
:
...
@@ -710,14 +712,14 @@ Transform:
...
@@ -710,14 +712,14 @@ Transform:
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
112684
}
m_GameObject
:
{
fileID
:
112684
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
-0
,
y
:
-0
,
z
:
-
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
-76.6
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
494232
}
-
{
fileID
:
494232
}
-
{
fileID
:
416564
}
-
{
fileID
:
416564
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
7
m_RootOrder
:
8
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&457766
---
!u!4
&457766
Transform
:
Transform
:
...
@@ -725,14 +727,14 @@ Transform:
...
@@ -725,14 +727,14 @@ Transform:
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
171564
}
m_GameObject
:
{
fileID
:
171564
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
-0
,
y
:
-0
,
z
:
-
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
103.4
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
475224
}
-
{
fileID
:
475224
}
-
{
fileID
:
458410
}
-
{
fileID
:
458410
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
2
m_RootOrder
:
4
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&458410
---
!u!4
&458410
Transform
:
Transform
:
...
@@ -741,7 +743,7 @@ Transform:
...
@@ -741,7 +743,7 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
111488
}
m_GameObject
:
{
fileID
:
111488
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-
36
,
y
:
0
,
z
:
0
}
m_LocalPosition
:
{
x
:
-
48
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
499540
}
-
{
fileID
:
499540
}
...
@@ -755,13 +757,13 @@ Transform:
...
@@ -755,13 +757,13 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
129552
}
m_GameObject
:
{
fileID
:
129552
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
-
24.9
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
-
16.6
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
466270
}
-
{
fileID
:
466270
}
-
{
fileID
:
475638
}
-
{
fileID
:
475638
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
5
m_RootOrder
:
6
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&463918
---
!u!4
&463918
Transform
:
Transform
:
...
@@ -796,13 +798,13 @@ Transform:
...
@@ -796,13 +798,13 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
140694
}
m_GameObject
:
{
fileID
:
140694
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
35.1
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
43.4
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
473478
}
-
{
fileID
:
473478
}
-
{
fileID
:
452260
}
-
{
fileID
:
452260
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
4
m_RootOrder
:
5
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&470768
---
!u!4
&470768
Transform
:
Transform
:
...
@@ -811,13 +813,13 @@ Transform:
...
@@ -811,13 +813,13 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
188558
}
m_GameObject
:
{
fileID
:
188558
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
95.1
,
z
:
0
}
m_LocalPosition
:
{
x
:
48
,
y
:
163.4
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
m_Children
:
-
{
fileID
:
449010
}
-
{
fileID
:
449010
}
-
{
fileID
:
491594
}
-
{
fileID
:
491594
}
m_Father
:
{
fileID
:
433428
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
3
m_RootOrder
:
2
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&473478
---
!u!4
&473478
Transform
:
Transform
:
...
@@ -986,7 +988,7 @@ BoxCollider:
...
@@ -986,7 +988,7 @@ BoxCollider:
m_IsTrigger
:
0
m_IsTrigger
:
0
m_Enabled
:
1
m_Enabled
:
1
serializedVersion
:
2
serializedVersion
:
2
m_Size
:
{
x
:
210
,
y
:
372
,
z
:
0
}
m_Size
:
{
x
:
210
,
y
:
464
,
z
:
0
}
m_Center
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Center
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!65
&6550340
---
!u!65
&6550340
BoxCollider
:
BoxCollider
:
...
@@ -1220,8 +1222,8 @@ MonoBehaviour:
...
@@ -1220,8 +1222,8 @@ MonoBehaviour:
updateAnchors
:
1
updateAnchors
:
1
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mPivot
:
4
mPivot
:
4
mWidth
:
32
mWidth
:
48
mHeight
:
32
mHeight
:
48
mDepth
:
9
mDepth
:
9
autoResizeBoxCollider
:
0
autoResizeBoxCollider
:
0
hideIfOffScreen
:
0
hideIfOffScreen
:
0
...
@@ -1271,12 +1273,12 @@ MonoBehaviour:
...
@@ -1271,12 +1273,12 @@ MonoBehaviour:
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mPivot
:
4
mPivot
:
4
mWidth
:
210
mWidth
:
210
mHeight
:
372
mHeight
:
464
mDepth
:
0
mDepth
:
0
autoResizeBoxCollider
:
1
autoResizeBoxCollider
:
1
hideIfOffScreen
:
0
hideIfOffScreen
:
0
keepAspectRatio
:
0
keepAspectRatio
:
0
aspectRatio
:
0.
5645161
aspectRatio
:
0.
4525862
mType
:
1
mType
:
1
mFillDirection
:
4
mFillDirection
:
4
mFillAmount
:
1
mFillAmount
:
1
...
@@ -1912,7 +1914,7 @@ MonoBehaviour:
...
@@ -1912,7 +1914,7 @@ MonoBehaviour:
mClipTexture
:
{
fileID
:
0
}
mClipTexture
:
{
fileID
:
0
}
mAlpha
:
1
mAlpha
:
1
mClipping
:
3
mClipping
:
3
mClipRange
:
{
x
:
0
,
y
:
0
,
z
:
210
,
w
:
372
}
mClipRange
:
{
x
:
0
,
y
:
0
,
z
:
210
,
w
:
464
}
mClipSoftness
:
{
x
:
0
,
y
:
0
}
mClipSoftness
:
{
x
:
0
,
y
:
0
}
mDepth
:
0
mDepth
:
0
mSortingOrder
:
0
mSortingOrder
:
0
...
@@ -1997,8 +1999,8 @@ MonoBehaviour:
...
@@ -1997,8 +1999,8 @@ MonoBehaviour:
updateAnchors
:
1
updateAnchors
:
1
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mPivot
:
4
mPivot
:
4
mWidth
:
32
mWidth
:
48
mHeight
:
32
mHeight
:
48
mDepth
:
9
mDepth
:
9
autoResizeBoxCollider
:
0
autoResizeBoxCollider
:
0
hideIfOffScreen
:
0
hideIfOffScreen
:
0
...
@@ -2276,8 +2278,8 @@ MonoBehaviour:
...
@@ -2276,8 +2278,8 @@ 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
6B8B\u5C40\u6A21\u5F0F
"
mText
:
"
\u
4E0B\u8F7D\u7ACB\u7ED8
"
mFontSize
:
2
0
mFontSize
:
3
0
mFontStyle
:
0
mFontStyle
:
0
mAlignment
:
1
mAlignment
:
1
mEncoding
:
1
mEncoding
:
1
...
@@ -2582,8 +2584,8 @@ MonoBehaviour:
...
@@ -2582,8 +2584,8 @@ 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
4EBA\u673A\u6A21\u5F0F
"
mText
:
"
\u
52A0\u5165\u6211\u4EEC
"
mFontSize
:
2
0
mFontSize
:
3
0
mFontStyle
:
0
mFontStyle
:
0
mAlignment
:
1
mAlignment
:
1
mEncoding
:
1
mEncoding
:
1
...
@@ -2764,49 +2766,713 @@ Prefab:
...
@@ -2764,49 +2766,713 @@ Prefab:
m_Modifications
:
m_Modifications
:
-
target
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
mText
propertyPath
:
mText
value
:
YGOPro2 Android 1.034.3
value
:
YGOPro2 1033.D.3
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
m_IsActive
value
:
0
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
m_LocalPosition.y
value
:
-144.899994
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
m_LocalPosition.x
value
:
48
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
mHeight
value
:
372
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
aspectRatio
value
:
.564516127
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
m_Size.y
value
:
372
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
mClipRange.w
value
:
372
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
mClipRange.z
value
:
210
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
m_Size.x
value
:
210
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
0
}
propertyPath
:
mWidth
value
:
210
objectReference
:
{
fileID
:
0
}
objectReference
:
{
fileID
:
0
}
m_RemovedComponents
:
[]
m_RemovedComponents
:
[]
m_ParentPrefab
:
{
fileID
:
0
}
m_ParentPrefab
:
{
fileID
:
0
}
m_RootGameObject
:
{
fileID
:
167656
}
m_RootGameObject
:
{
fileID
:
167656
}
m_IsPrefabParent
:
1
m_IsPrefabParent
:
1
---
!u!1
&1018573393155376
GameObject
:
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4191599820907090
}
m_Layer
:
18
m_Name
:
single
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
0
---
!u!1
&1139649196682156
GameObject
:
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4829330657038936
}
m_Layer
:
18
m_Name
:
ai
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
0
---
!u!1
&1159813084122940
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4053408433647550
}
-
component
:
{
fileID
:
114366754473042692
}
-
component
:
{
fileID
:
65159542017247600
}
-
component
:
{
fileID
:
114107249516213602
}
-
component
:
{
fileID
:
111670893441235690
}
-
component
:
{
fileID
:
114346916008849968
}
m_Layer
:
18
m_Name
:
single_
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!1
&1636089226512808
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4089826099542032
}
-
component
:
{
fileID
:
114791676893023644
}
m_Layer
:
18
m_Name
:
'
!lable'
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!1
&1647977921747776
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4225652295201372
}
-
component
:
{
fileID
:
114130597832239128
}
m_Layer
:
18
m_Name
:
Texture
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!1
&1657836238507784
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4257181963098616
}
-
component
:
{
fileID
:
114630701837368336
}
-
component
:
{
fileID
:
65096595021590956
}
-
component
:
{
fileID
:
114425085406132306
}
-
component
:
{
fileID
:
111783032588742556
}
-
component
:
{
fileID
:
114649820685583164
}
m_Layer
:
18
m_Name
:
ai_
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!1
&1778831501972156
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4367052021231822
}
-
component
:
{
fileID
:
114389650204629156
}
m_Layer
:
18
m_Name
:
Texture
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!1
&1975163712512444
GameObject
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
serializedVersion
:
5
m_Component
:
-
component
:
{
fileID
:
4796253440775284
}
-
component
:
{
fileID
:
114442168789915440
}
m_Layer
:
18
m_Name
:
'
!lable'
m_TagString
:
Untagged
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
---
!u!4
&4053408433647550
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-48
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
-
{
fileID
:
4089826099542032
}
m_Father
:
{
fileID
:
4191599820907090
}
m_RootOrder
:
1
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4089826099542032
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1636089226512808
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
29
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
[]
m_Father
:
{
fileID
:
4053408433647550
}
m_RootOrder
:
0
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4191599820907090
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1018573393155376
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
-76.6
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
-
{
fileID
:
4225652295201372
}
-
{
fileID
:
4053408433647550
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
7
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4225652295201372
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1647977921747776
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-110
,
y
:
3
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
[]
m_Father
:
{
fileID
:
4191599820907090
}
m_RootOrder
:
0
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4257181963098616
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-48
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
-
{
fileID
:
4796253440775284
}
m_Father
:
{
fileID
:
4829330657038936
}
m_RootOrder
:
1
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4367052021231822
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1778831501972156
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-110
,
y
:
3
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
[]
m_Father
:
{
fileID
:
4829330657038936
}
m_RootOrder
:
0
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4796253440775284
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1975163712512444
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
31
,
y
:
0
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
[]
m_Father
:
{
fileID
:
4257181963098616
}
m_RootOrder
:
0
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!4
&4829330657038936
Transform
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1139649196682156
}
m_LocalRotation
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_LocalPosition
:
{
x
:
48
,
y
:
103.4
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
-
{
fileID
:
4367052021231822
}
-
{
fileID
:
4257181963098616
}
m_Father
:
{
fileID
:
433428
}
m_RootOrder
:
3
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!65
&65096595021590956
BoxCollider
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
m_Material
:
{
fileID
:
0
}
m_IsTrigger
:
0
m_Enabled
:
1
serializedVersion
:
2
m_Size
:
{
x
:
178
,
y
:
50
,
z
:
0
}
m_Center
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!65
&65159542017247600
BoxCollider
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
m_Material
:
{
fileID
:
0
}
m_IsTrigger
:
0
m_Enabled
:
1
serializedVersion
:
2
m_Size
:
{
x
:
182
,
y
:
50
,
z
:
0
}
m_Center
:
{
x
:
0
,
y
:
0
,
z
:
0
}
---
!u!111
&111670893441235690
Animation
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
m_Enabled
:
0
serializedVersion
:
3
m_Animation
:
{
fileID
:
7400000
,
guid
:
e8c465e83c3e18040884ef096f01647b
,
type
:
2
}
m_Animations
:
-
{
fileID
:
7400000
,
guid
:
e8c465e83c3e18040884ef096f01647b
,
type
:
2
}
m_WrapMode
:
0
m_PlayAutomatically
:
1
m_AnimatePhysics
:
0
m_CullingType
:
0
---
!u!111
&111783032588742556
Animation
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
m_Enabled
:
0
serializedVersion
:
3
m_Animation
:
{
fileID
:
7400000
,
guid
:
e8c465e83c3e18040884ef096f01647b
,
type
:
2
}
m_Animations
:
-
{
fileID
:
7400000
,
guid
:
e8c465e83c3e18040884ef096f01647b
,
type
:
2
}
m_WrapMode
:
0
m_PlayAutomatically
:
1
m_AnimatePhysics
:
0
m_CullingType
:
0
---
!u!114
&114107249516213602
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
1fdca5042b1d12a4890ec1bd4f04290d
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
tweenTarget
:
{
fileID
:
1159813084122940
}
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
&114130597832239128
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1647977921747776
}
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
:
48
mHeight
:
48
mDepth
:
9
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
:
puzzle
mFillCenter
:
1
---
!u!114
&114346916008849968
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
3f093ad5830afe44aba6efa8b8a5d5b9
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
target
:
{
fileID
:
111670893441235690
}
animator
:
{
fileID
:
0
}
clipName
:
trigger
:
1
playDirection
:
1
resetOnPlay
:
0
clearSelection
:
0
ifDisabledOnPlay
:
0
disableWhenFinished
:
0
onFinished
:
[]
eventReceiver
:
{
fileID
:
0
}
callWhenFinished
:
---
!u!114
&114366754473042692
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1159813084122940
}
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
:
4
mWidth
:
182
mHeight
:
50
mDepth
:
8
autoResizeBoxCollider
:
1
hideIfOffScreen
:
0
keepAspectRatio
:
0
aspectRatio
:
3.64
---
!u!114
&114389650204629156
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1778831501972156
}
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
:
48
mHeight
:
48
mDepth
:
9
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
:
ai
mFillCenter
:
1
---
!u!114
&114425085406132306
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
1fdca5042b1d12a4890ec1bd4f04290d
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
tweenTarget
:
{
fileID
:
1657836238507784
}
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
&114442168789915440
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1975163712512444
}
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
:
0
rightAnchor
:
target
:
{
fileID
:
0
}
relative
:
1
absolute
:
0
bottomAnchor
:
target
:
{
fileID
:
0
}
relative
:
0
absolute
:
0
topAnchor
:
target
:
{
fileID
:
0
}
relative
:
1
absolute
:
-4
updateAnchors
:
1
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mPivot
:
4
mWidth
:
116
mHeight
:
50
mDepth
:
2
autoResizeBoxCollider
:
0
hideIfOffScreen
:
0
keepAspectRatio
:
0
aspectRatio
:
2.32
keepCrispWhenShrunk
:
1
mTrueTypeFont
:
{
fileID
:
12800000
,
guid
:
f775853fdfd14bb47934543e95c3bae3
,
type
:
3
}
mFont
:
{
fileID
:
0
}
mText
:
"
\u4EBA\u673A\u6A21\u5F0F
"
mFontSize
:
30
mFontStyle
:
0
mAlignment
:
1
mEncoding
:
1
mMaxLineCount
:
0
mEffectStyle
:
0
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
&114630701837368336
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
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
:
4
mWidth
:
178
mHeight
:
50
mDepth
:
8
autoResizeBoxCollider
:
1
hideIfOffScreen
:
0
keepAspectRatio
:
0
aspectRatio
:
3.56
---
!u!114
&114649820685583164
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1657836238507784
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
3f093ad5830afe44aba6efa8b8a5d5b9
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
target
:
{
fileID
:
111783032588742556
}
animator
:
{
fileID
:
0
}
clipName
:
trigger
:
1
playDirection
:
1
resetOnPlay
:
0
clearSelection
:
0
ifDisabledOnPlay
:
0
disableWhenFinished
:
0
onFinished
:
[]
eventReceiver
:
{
fileID
:
0
}
callWhenFinished
:
---
!u!114
&114791676893023644
MonoBehaviour
:
m_ObjectHideFlags
:
1
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1636089226512808
}
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
:
0
rightAnchor
:
target
:
{
fileID
:
0
}
relative
:
1
absolute
:
0
bottomAnchor
:
target
:
{
fileID
:
0
}
relative
:
0
absolute
:
0
topAnchor
:
target
:
{
fileID
:
0
}
relative
:
1
absolute
:
-4
updateAnchors
:
1
mColor
:
{
r
:
1
,
g
:
1
,
b
:
1
,
a
:
1
}
mPivot
:
4
mWidth
:
116
mHeight
:
50
mDepth
:
2
autoResizeBoxCollider
:
0
hideIfOffScreen
:
0
keepAspectRatio
:
0
aspectRatio
:
2.32
keepCrispWhenShrunk
:
1
mTrueTypeFont
:
{
fileID
:
12800000
,
guid
:
f775853fdfd14bb47934543e95c3bae3
,
type
:
3
}
mFont
:
{
fileID
:
0
}
mText
:
"
\u6B8B\u5C40\u6A21\u5F0F
"
mFontSize
:
30
mFontStyle
:
0
mAlignment
:
1
mEncoding
:
1
mMaxLineCount
:
0
mEffectStyle
:
0
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
ProjectSettings/ProjectSettings.asset
View file @
096110bd
...
@@ -229,7 +229,7 @@ PlayerSettings:
...
@@ -229,7 +229,7 @@ PlayerSettings:
AndroidSplashScreenScale
:
0
AndroidSplashScreenScale
:
0
androidSplashScreen
:
{
fileID
:
0
}
androidSplashScreen
:
{
fileID
:
0
}
AndroidKeystoreName
:
ygopro.jks
AndroidKeystoreName
:
ygopro.jks
AndroidKeyaliasName
:
AndroidKeyaliasName
:
ygopro
AndroidTVCompatibility
:
0
AndroidTVCompatibility
:
0
AndroidIsGame
:
0
AndroidIsGame
:
0
androidEnableBanner
:
1
androidEnableBanner
:
1
...
...
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