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
1
Issues
1
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
hex
ygopro2
Commits
ba1f7611
Commit
ba1f7611
authored
Dec 31, 2025
by
hex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MC 匹配安全更新;增加开局默认全时点设置;1月表更新
parent
d8a993a6
Pipeline
#42289
failed
Changes
12
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
905 additions
and
945 deletions
+905
-945
Assets/ArtSystem/gameInfo/gameInfo.cs
Assets/ArtSystem/gameInfo/gameInfo.cs
+1
-0
Assets/NGUI/Scripts/Interaction/UIPopupList.cs
Assets/NGUI/Scripts/Interaction/UIPopupList.cs
+4
-2
Assets/SibylSystem/MyCard/MyCard.cs
Assets/SibylSystem/MyCard/MyCard.cs
+32
-106
Assets/SibylSystem/MyCard/MyCardHelper.cs
Assets/SibylSystem/MyCard/MyCardHelper.cs
+166
-140
Assets/SibylSystem/Ocgcore/Ocgcore.cs
Assets/SibylSystem/Ocgcore/Ocgcore.cs
+7
-13
Assets/SibylSystem/Program.cs
Assets/SibylSystem/Program.cs
+1
-1
Assets/SibylSystem/ResourceManagers/GameStringManager.cs
Assets/SibylSystem/ResourceManagers/GameStringManager.cs
+5
-0
Assets/SibylSystem/Setting/Setting.cs
Assets/SibylSystem/Setting/Setting.cs
+9
-3
Assets/StreamingAssets/ygopro2-data.zip
Assets/StreamingAssets/ygopro2-data.zip
+0
-0
Assets/transUI/prefab/trans_setting.prefab
Assets/transUI/prefab/trans_setting.prefab
+1
-1
UserSettings/Layouts/CurrentMaximizeLayout.dwlt
UserSettings/Layouts/CurrentMaximizeLayout.dwlt
+446
-446
UserSettings/Layouts/default-2021.dwlt
UserSettings/Layouts/default-2021.dwlt
+233
-233
No files found.
Assets/ArtSystem/gameInfo/gameInfo.cs
View file @
ba1f7611
...
...
@@ -172,6 +172,7 @@ public class gameInfo : MonoBehaviour
public
void
on_toggle_smart
()
{
// Debug.Log("on_toggle_smart:");
SetExclusiveToggle
(
toggle_smart
);
}
...
...
Assets/NGUI/Scripts/Interaction/UIPopupList.cs
View file @
ba1f7611
...
...
@@ -202,6 +202,7 @@ public class UIPopupList : UIWidgetContainer
[
System
.
NonSerialized
]
protected
GameObject
mSelection
;
[
System
.
NonSerialized
]
protected
int
mOpenFrame
=
0
;
[
System
.
NonSerialized
]
protected
float
mInitialY
=
0f
;
// Deprecated functionality
[
HideInInspector
][
SerializeField
]
GameObject
eventReceiver
;
...
...
@@ -1095,6 +1096,7 @@ public class UIPopupList : UIWidgetContainer
pos
.
x
=
Mathf
.
Round
(
pos
.
x
);
pos
.
y
=
Mathf
.
Round
(
pos
.
y
);
t
.
localPosition
=
pos
;
mInitialY
=
pos
.
y
;
}
else
OnSelect
(
false
);
if
(
mChild
!=
null
)
...
...
@@ -1161,9 +1163,9 @@ public class UIPopupList : UIWidgetContainer
a
.
y
+=
l
;
a
.
z
=
0
;
timeScroller
=
Program
.
TimePassed
();
if
(
a
.
y
>
whole
)
if
(
a
.
y
>
mInitialY
)
{
a
.
y
=
whole
;
a
.
y
=
mInitialY
;
}
if
(
a
.
y
<
0
)
{
...
...
Assets/SibylSystem/MyCard/MyCard.cs
View file @
ba1f7611
...
...
@@ -13,9 +13,7 @@ public class MyCard : WindowServantSP
//const string mycardTiramisuAthleticPort = "8911";
//const string mycardTiramisuEntertainPort = "7911";
// 不再需要显式的 Thread 对象
// Thread requestThread = null;
private
Coroutine
requestCoroutine
=
null
;
// 用 Coroutine 对象来跟踪
private
Coroutine
requestCoroutine
=
null
;
MyCardHelper
mycardHelper
;
UIInput
inputUsername
;
UIInput
inputPsw
;
...
...
@@ -31,33 +29,24 @@ public class MyCard : WindowServantSP
inputUsername
=
UIHelper
.
getByName
<
UIInput
>(
gameObject
,
"name_"
);
inputPsw
=
UIHelper
.
getByName
<
UIInput
>(
gameObject
,
"psw_"
);
mycardHelper
=
new
MyCardHelper
();
l
oadUser
();
L
oadUser
();
SetActiveFalse
();
}
void
s
aveUser
()
void
S
aveUser
()
{
Config
.
Set
(
"mycard_username"
,
inputUsername
.
value
);
Config
.
Set
(
"mycard_password"
,
inputPsw
.
value
);
Program
.
I
().
selectServer
.
name
=
inputUsername
.
value
;
}
void
l
oadUser
()
void
L
oadUser
()
{
inputUsername
.
value
=
Config
.
Get
(
"mycard_username"
,
"MyCard"
);
inputPsw
.
value
=
Config
.
Get
(
"mycard_password"
,
""
);
}
// public void terminateThread()
// {
// if (!isRequesting && requestThread == null)
// {
// return;
// }
// requestThread.Abort();
// requestThread = null;
// }
public
void
terminateRequest
()
public
void
TerminateRequest
()
{
if
(
requestCoroutine
!=
null
)
{
...
...
@@ -68,27 +57,12 @@ public class MyCard : WindowServantSP
}
}
// void onClickExit()
// {
// Program.I().shiftToServant(Program.I().menu);
// if (TcpHelper.tcpClient != null)
// {
// if (isRequesting) {
// terminateThread();
// }
// if (TcpHelper.tcpClient.Connected)
// {
// TcpHelper.tcpClient.Close();
// }
// }
// }
void
onClickExit
()
{
Program
.
I
().
shiftToServant
(
Program
.
I
().
menu
);
if
(
isRequesting
)
{
t
erminateRequest
();
T
erminateRequest
();
}
if
(
TcpHelper
.
tcpClient
!=
null
&&
TcpHelper
.
tcpClient
.
Connected
)
{
...
...
@@ -106,75 +80,13 @@ public class MyCard : WindowServantSP
Application
.
OpenURL
(
"https://ygobbs.com/"
);
}
// void matchThread(string username, string password, string matchType) {
// try {
// Program.PrintToChat(InterString.Get("正在登录至 MyCard。"));
// string failReason = "";
// bool res = mycardHelper.login(username, password, out failReason);
// if (!res) {
// Program.PrintToChat(InterString.Get("MyCard 登录失败。原因: ") + failReason);
// isRequesting = false;
// return;
// }
// Program.PrintToChat(InterString.Get("MyCard 登录成功,用户名: ") + mycardHelper.username);
// Program.PrintToChat(InterString.Get("正在请求匹配。匹配类型: ") + matchType);
// MatchResultObject matchResultObject = mycardHelper.requestMatch(matchType, out failReason);
// if (matchResultObject == null) {
// Program.PrintToChat(InterString.Get("匹配请求失败。原因: ") + failReason);
// isRequesting = false;
// return;
// }
// Program.PrintToChat(InterString.Get("匹配成功。正在进入房间。"));
// this.isMatching = true;
// (new Thread(() => { TcpHelper.join(matchResultObject.address, mycardHelper.username, matchResultObject.port.ToString(), matchResultObject.password, "0x" + String.Format("{0:X}", Config.ClientVersion)); })).Start();
// isRequesting = false;
// } catch (Exception e) {
// if (e.GetType() != typeof(ThreadAbortException)) {
// Program.PrintToChat(InterString.Get("未知错误: ") + e.Message);
// } else {
// Program.PrintToChat(InterString.Get("匹配已中断。"));
// }
// isRequesting = false;
// }
// }
// void startMatch(string matchType) {
// string username = inputUsername.value;
// string password = inputPsw.value;
// if (username == "" || password == "")
// {
// RMSshow_onlyYes("", InterString.Get("用户名或密码为空。"), null);
// return;
// }
// if (isRequesting)
// {
// terminateThread();
// }
// saveUser();
// isRequesting = true;
// Program.PrintToChat(InterString.Get("已开始匹配。"));
// requestThread = new Thread(() =>
// {
// matchThread(username, password, matchType);
// });
// requestThread.Start();
// }
// void onClickJoinAthletic() {
// startMatch("athletic");
// }
// void onClickJoinEntertain() {
// startMatch("entertain");
// }
IEnumerator
matchCoroutine
(
string
username
,
string
password
,
string
matchType
)
{
IEnumerator
MatchCoroutine
(
string
username
,
string
password
,
string
matchType
)
{
isRequesting
=
true
;
Program
.
PrintToChat
(
InterString
.
Get
(
"正在登录至 MyCard。"
));
bool
loginSuccess
=
false
;
string
failReason
=
""
;
// 启动并等待登录协程完成
yield
return
Program
.
I
().
StartCoroutine
(
mycardHelper
.
l
ogin
(
username
,
password
,
(
success
,
reason
)
=>
{
yield
return
Program
.
I
().
StartCoroutine
(
mycardHelper
.
L
ogin
(
username
,
password
,
(
success
,
reason
)
=>
{
loginSuccess
=
success
;
failReason
=
reason
;
}));
...
...
@@ -184,11 +96,23 @@ public class MyCard : WindowServantSP
yield
break
;
// 结束协程
}
Program
.
PrintToChat
(
InterString
.
Get
(
"MyCard 登录成功,用户名: "
)
+
mycardHelper
.
username
);
// Program.PrintToChat(InterString.Get("正在获取匹配秘钥。"));
yield
return
Program
.
I
().
StartCoroutine
(
mycardHelper
.
GetUserU16Secret
((
success
,
reason
)
=>
{
loginSuccess
=
success
;
failReason
=
reason
;
}));
if
(!
loginSuccess
)
{
Program
.
PrintToChat
(
InterString
.
Get
(
"获取用户密钥失败。请重新登录。原因: "
)
+
failReason
);
isRequesting
=
false
;
yield
break
;
// 结束协程
}
// Program.PrintToChat(InterString.Get("获取匹配秘钥成功。"));
Program
.
PrintToChat
(
InterString
.
Get
(
"正在请求匹配。匹配类型: "
)
+
matchType
);
MatchResultObject
matchResultObject
=
null
;
// 启动并等待匹配协程完成
yield
return
Program
.
I
().
StartCoroutine
(
mycardHelper
.
r
equestMatch
(
matchType
,
(
result
,
reason
)
=>
{
yield
return
Program
.
I
().
StartCoroutine
(
mycardHelper
.
R
equestMatch
(
matchType
,
(
result
,
reason
)
=>
{
matchResultObject
=
result
;
failReason
=
reason
;
}));
...
...
@@ -206,7 +130,8 @@ public class MyCard : WindowServantSP
isRequesting
=
false
;
requestCoroutine
=
null
;
}
void
startMatch
(
string
matchType
)
{
void
StartMatch
(
string
matchType
)
{
string
username
=
inputUsername
.
value
;
string
password
=
inputPsw
.
value
;
if
(
string
.
IsNullOrEmpty
(
username
)
||
string
.
IsNullOrEmpty
(
password
))
...
...
@@ -214,19 +139,20 @@ public class MyCard : WindowServantSP
RMSshow_onlyYes
(
""
,
InterString
.
Get
(
"用户名或密码为空。"
),
null
);
return
;
}
if
(
isRequesting
)
if
(
isRequesting
)
{
t
erminateRequest
();
T
erminateRequest
();
}
s
aveUser
();
S
aveUser
();
Program
.
PrintToChat
(
InterString
.
Get
(
"已开始匹配。"
));
// 启动协程,而不是线程
requestCoroutine
=
Program
.
I
().
StartCoroutine
(
matchCoroutine
(
username
,
password
,
matchType
));
}
requestCoroutine
=
Program
.
I
().
StartCoroutine
(
MatchCoroutine
(
username
,
password
,
matchType
));
}
void
onClickJoinAthletic
()
{
s
tartMatch
(
"athletic"
);
S
tartMatch
(
"athletic"
);
}
void
onClickJoinEntertain
()
{
s
tartMatch
(
"entertain"
);
S
tartMatch
(
"entertain"
);
}
}
Assets/SibylSystem/MyCard/MyCardHelper.cs
View file @
ba1f7611
...
...
@@ -11,170 +11,196 @@ Please send emails to pokeboyexn@gmail.com for further information.
*/
using
UnityEngine
;
using
UnityEngine.Networking
;
using
System
;
using
System.Text
;
using
System.Collections
;
using
System.Collections.Generic
;
using
System.
IO
;
using
System.
Threading
;
[
Serializable
]
public
class
LoginUserObject
{
public
int
id
;
public
string
username
;
public
string
name
;
public
string
email
;
public
string
password_hash
;
public
bool
active
;
public
bool
admin
;
public
string
avatar
;
public
string
locale
;
public
string
registration_ip_address
;
public
string
ip_address
;
public
string
created_at
;
public
string
updated_at
;
public
string
token
;
public
int
id
;
public
string
username
;
public
string
name
;
public
string
email
;
public
string
password_hash
;
public
bool
active
;
public
bool
admin
;
public
string
avatar
;
public
string
locale
;
public
string
registration_ip_address
;
public
string
ip_address
;
public
string
created_at
;
public
string
updated_at
;
public
string
token
;
}
[
Serializable
]
public
class
LoginObject
{
public
LoginUserObject
user
;
public
string
token
;
public
LoginUserObject
user
;
public
string
token
;
}
[
Serializable
]
public
class
LoginRequest
{
public
string
account
;
public
string
password
;
public
string
account
;
public
string
password
;
}
[
Serializable
]
public
class
MatchResultObject
{
public
string
address
;
public
int
port
;
public
string
password
;
}
[
Serializable
]
public
class
MatchResultObject
{
public
string
address
;
public
int
port
;
public
string
password
;
public
class
U16SecretObject
{
public
int
u16Secret
;
}
public
class
MyCardHelper
{
public
string
username
=
null
;
int
userid
=
-
1
;
// public bool login(string name, string password, out string failReason) {
// try {
// LoginRequest data = new LoginRequest();
// data.account = name;
// data.password = password;
// string data_str = JsonUtility.ToJson(data);
// Dictionary<String, String> header_list = new Dictionary<String, String>();
// header_list.Add("Content-Type", "application/json");
// byte[] data_bytes = Encoding.UTF8.GetBytes(data_str);
// WWW www = new WWW("https://sapi.moecube.com:444/accounts/signin", data_bytes, header_list);
// while (!www.isDone) {
// if (Application.internetReachability == NetworkReachability.NotReachable || !string.IsNullOrEmpty(www.error))
// {
// failReason = www.error;
// return false;
// }
// }
// string result = www.text;
// LoginObject result_object = JsonUtility.FromJson<LoginObject>(result);
// username = result_object.user.username;
// userid = result_object.user.id;
// } catch (Exception e) {
// failReason = e.Message;
// return false;
// }
// failReason = null;
// return true;
// }
// public MatchResultObject requestMatch(string matchType, out string failReason) {
// MatchResultObject matchResultObject;
// if (username == null || userid < 0) {
// failReason = "Not logged in";
// return null;
// }
// try {
// string auth_str = "Basic " + Convert.ToBase64String(Encoding.UTF8.GetBytes(username + ":" + userid));
// Dictionary<String, String> header_list = new Dictionary<String, String>();
// header_list.Add("Authorization", auth_str);
// header_list.Add("Content-Type", "application/x-www-form-urlencoded");
// byte[] meta = new byte[1];
// WWW www = new WWW("https://sapi.moecube.com:444/ygopro/match?locale=zh-CN&arena=" + matchType, meta, header_list);
// while (!www.isDone) {
// if (Application.internetReachability == NetworkReachability.NotReachable || !string.IsNullOrEmpty(www.error))
// {
// failReason = www.error;
// return null;
// }
// }
// string result = www.text;
// matchResultObject = JsonUtility.FromJson<MatchResultObject>(result);
// } catch (Exception e) {
// failReason = e.Message;
// return null;
// }
// failReason = null;
// return matchResultObject;
// }
// 改为 IEnumerator 协程
public
IEnumerator
login
(
string
name
,
string
password
,
Action
<
bool
,
string
>
onComplete
)
{
LoginRequest
data
=
new
LoginRequest
();
data
.
account
=
name
;
data
.
password
=
password
;
string
data_str
=
JsonUtility
.
ToJson
(
data
);
Dictionary
<
String
,
String
>
header_list
=
new
Dictionary
<
String
,
String
>();
header_list
.
Add
(
"Content-Type"
,
"application/json"
);
byte
[]
data_bytes
=
Encoding
.
UTF8
.
GetBytes
(
data_str
);
WWW
www
=
new
WWW
(
"https://sapi.moecube.com:444/accounts/signin"
,
data_bytes
,
header_list
);
// 使用 yield return 等待 WWW 完成,而不是 while 循环
yield
return
www
;
if
(!
string
.
IsNullOrEmpty
(
www
.
error
))
{
onComplete
(
false
,
www
.
error
);
yield
break
;
// 提前退出协程
}
try
{
string
result
=
www
.
text
;
LoginObject
result_object
=
JsonUtility
.
FromJson
<
LoginObject
>(
result
);
// 检查返回结果是否有效
if
(
result_object
==
null
||
result_object
.
user
==
null
)
{
onComplete
(
false
,
"Login failed: Invalid response from server. "
+
result
);
yield
break
;
public
class
MyCardHelper
{
public
string
username
=
null
;
private
String
token
=
null
;
private
int
u16Secret
=
-
1
;
public
IEnumerator
Login
(
string
name
,
string
password
,
Action
<
bool
,
string
>
onComplete
)
{
LoginRequest
data
=
new
LoginRequest
();
data
.
account
=
name
;
data
.
password
=
password
;
string
data_str
=
JsonUtility
.
ToJson
(
data
);
byte
[]
data_bytes
=
Encoding
.
UTF8
.
GetBytes
(
data_str
);
using
(
UnityWebRequest
request
=
new
UnityWebRequest
(
"https://sapi.moecube.com:444/accounts/signin"
,
"POST"
))
{
request
.
uploadHandler
=
new
UploadHandlerRaw
(
data_bytes
);
request
.
downloadHandler
=
new
DownloadHandlerBuffer
();
request
.
SetRequestHeader
(
"Content-Type"
,
"application/json"
);
yield
return
request
.
SendWebRequest
();
if
(
IsError
(
request
))
{
onComplete
(
false
,
"请检查用户名和密码是否正确"
);
}
else
{
try
{
string
result
=
request
.
downloadHandler
.
text
;
LoginObject
result_object
=
JsonUtility
.
FromJson
<
LoginObject
>(
result
);
if
(
result_object
==
null
||
result_object
.
user
==
null
)
{
onComplete
(
false
,
"Login failed: Invalid response from server. "
+
result
);
}
else
{
username
=
result_object
.
user
.
username
;
token
=
result_object
.
token
;
onComplete
(
true
,
null
);
}
}
catch
(
Exception
e
)
{
onComplete
(
false
,
e
.
Message
);
}
}
username
=
result_object
.
user
.
username
;
userid
=
result_object
.
user
.
id
;
onComplete
(
true
,
null
);
}
catch
(
Exception
e
)
{
onComplete
(
false
,
e
.
Message
);
}
}
// 同样改为 IEnumerator 协程
public
IEnumerator
requestMatch
(
string
matchType
,
Action
<
MatchResultObject
,
string
>
onComplete
)
{
if
(
username
==
null
||
userid
<
0
)
{
onComplete
(
null
,
"Not logged in"
);
yield
break
;
}
string
auth_str
=
"Basic "
+
Convert
.
ToBase64String
(
Encoding
.
UTF8
.
GetBytes
(
username
+
":"
+
userid
));
Dictionary
<
String
,
String
>
header_list
=
new
Dictionary
<
String
,
String
>();
header_list
.
Add
(
"Authorization"
,
auth_str
);
header_list
.
Add
(
"Content-Type"
,
"application/x-www-form-urlencoded"
);
byte
[]
meta
=
new
byte
[
1
];
WWW
www
=
new
WWW
(
"https://sapi.moecube.com:444/ygopro/match?locale=zh-CN&arena="
+
matchType
,
meta
,
header_list
);
yield
return
www
;
if
(!
string
.
IsNullOrEmpty
(
www
.
error
))
}
public
IEnumerator
GetUserU16Secret
(
Action
<
bool
,
string
>
onComplete
)
{
if
(
token
==
null
)
{
onComplete
(
null
,
www
.
error
);
onComplete
(
false
,
"No token"
);
yield
break
;
}
try
{
string
result
=
www
.
text
;
MatchResultObject
matchResultObject
=
JsonUtility
.
FromJson
<
MatchResultObject
>(
result
);
onComplete
(
matchResultObject
,
null
);
}
catch
(
Exception
e
)
{
onComplete
(
null
,
e
.
Message
);
using
(
UnityWebRequest
request
=
UnityWebRequest
.
Get
(
"https://sapi.moecube.com:444/accounts/authUser"
))
{
string
auth_str
=
"Bearer "
+
token
;
request
.
SetRequestHeader
(
"Authorization"
,
auth_str
);
request
.
SetRequestHeader
(
"Content-Type"
,
"application/json; charset=utf-8"
);
yield
return
request
.
SendWebRequest
();
if
(
IsError
(
request
))
{
onComplete
(
false
,
request
.
error
);
}
else
{
try
{
string
result
=
request
.
downloadHandler
.
text
;
U16SecretObject
result_object
=
JsonUtility
.
FromJson
<
U16SecretObject
>(
result
);
if
(
result_object
==
null
)
{
onComplete
(
false
,
result
);
}
else
{
u16Secret
=
result_object
.
u16Secret
;
onComplete
(
true
,
null
);
}
}
catch
(
Exception
e
)
{
onComplete
(
false
,
e
.
Message
);
}
}
}
}
}
}
public
IEnumerator
RequestMatch
(
string
matchType
,
Action
<
MatchResultObject
,
string
>
onComplete
)
{
if
(
u16Secret
==
-
1
)
// int 默认值检查
{
onComplete
(
null
,
"Not logged in"
);
yield
break
;
}
string
auth_str
=
"Basic "
+
Convert
.
ToBase64String
(
Encoding
.
UTF8
.
GetBytes
(
username
+
":"
+
u16Secret
));
string
url
=
"https://sapi.moecube.com:444/ygopro/match?locale=zh-CN&arena="
+
matchType
;
byte
[]
meta
=
new
byte
[
1
];
using
(
UnityWebRequest
request
=
new
UnityWebRequest
(
url
,
"POST"
))
{
request
.
uploadHandler
=
new
UploadHandlerRaw
(
meta
);
request
.
downloadHandler
=
new
DownloadHandlerBuffer
();
request
.
SetRequestHeader
(
"Authorization"
,
auth_str
);
request
.
SetRequestHeader
(
"Content-Type"
,
"application/x-www-form-urlencoded"
);
yield
return
request
.
SendWebRequest
();
if
(
IsError
(
request
))
{
onComplete
(
null
,
request
.
error
);
}
else
{
try
{
string
result
=
request
.
downloadHandler
.
text
;
MatchResultObject
matchResultObject
=
JsonUtility
.
FromJson
<
MatchResultObject
>(
result
);
onComplete
(
matchResultObject
,
null
);
}
catch
(
Exception
e
)
{
onComplete
(
null
,
e
.
Message
);
}
}
}
}
private
bool
IsError
(
UnityWebRequest
request
)
{
return
request
.
result
!=
UnityWebRequest
.
Result
.
Success
;
}
}
\ No newline at end of file
Assets/SibylSystem/Ocgcore/Ocgcore.cs
View file @
ba1f7611
...
...
@@ -469,6 +469,13 @@ public class Ocgcore : ServantWithCardDescription
UIHelper
.
getByName
<
UIToggle
>(
gameInfo
.
gameObject
,
"ignore_"
).
value
=
false
;
UIHelper
.
getByName
<
UIToggle
>(
gameInfo
.
gameObject
,
"watch_"
).
value
=
false
;
}
if
(
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"full_"
,
"0"
)))
{
Program
.
go
(
1
,
()
=>
{
gameInfo
.
set_condition
(
gameInfo
.
chainCondition
.
all
);
});
}
}
public
void
shiftCondition
(
Condition
condition
)
...
...
@@ -987,19 +994,6 @@ public class Ocgcore : ServantWithCardDescription
gameInfo
.
set_condition
(
gameInfo
.
chainCondition
.
no
);
}
if
(
Input
.
GetKeyUp
(
KeyCode
.
C
)
==
true
)
{
gameInfo
.
set_condition
(
gameInfo
.
chainCondition
.
standard
);
}
if
(
Input
.
GetKeyUp
(
KeyCode
.
A
)
==
true
)
{
gameInfo
.
set_condition
(
gameInfo
.
chainCondition
.
standard
);
}
if
(
Input
.
GetKeyUp
(
KeyCode
.
S
)
==
true
)
{
gameInfo
.
set_condition
(
gameInfo
.
chainCondition
.
standard
);
}
if
(
Input
.
GetMouseButtonDown
(
2
))
{
if
(
Program
.
I
().
book
.
isShowed
)
...
...
Assets/SibylSystem/Program.cs
View file @
ba1f7611
...
...
@@ -1352,7 +1352,7 @@ public class Program : MonoBehaviour
FPS
=
FPS
.
Substring
(
0
,
5
);
}
catch
{
}
GUI
.
Label
(
new
Rect
(
Screen
.
safeArea
.
x
+
10
,
5
,
400
,
200
),
"[Ver 1.036.2-TCube 2
510
] "
+
"FPS: "
+
FPS
);
GUI
.
Label
(
new
Rect
(
Screen
.
safeArea
.
x
+
10
,
5
,
400
,
200
),
"[Ver 1.036.2-TCube 2
601
] "
+
"FPS: "
+
FPS
);
}
...
...
Assets/SibylSystem/ResourceManagers/GameStringManager.cs
View file @
ba1f7611
...
...
@@ -128,6 +128,11 @@ public static class GameStringManager
Program
.
DEBUGLOG
(
e
);
}
}
if
(
a
==
""
)
{
a
=
"???"
;
}
return
a
;
}
...
...
Assets/SibylSystem/Setting/Setting.cs
View file @
ba1f7611
...
...
@@ -13,9 +13,9 @@ public class Setting : WindowServant2D
setting
=
gameObject
.
GetComponentInChildren
<
LAZYsetting
>();
UIHelper
.
registEvent
(
gameObject
,
"exit_"
,
onClickExit
);
UIHelper
.
registEvent
(
gameObject
,
"screen_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"full_"
,
resizeScreen
);
UIHelper
.
registEvent
(
gameObject
,
"full_"
,
save
);
UIHelper
.
registEvent
(
gameObject
,
"resize_"
,
resizeScreen
);
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
=
Screen
.
fullScreen
;
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"full_"
,
"0"
))
;
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreWatcher_"
).
value
=
UIHelper
.
fromStringToBool
(
Config
.
Get
(
"ignoreWatcher_"
,
"0"
));
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"ignoreOP_"
).
value
=
UIHelper
.
fromStringToBool
(
...
...
@@ -277,7 +277,7 @@ public class Setting : WindowServant2D
Screen
.
SetResolution
(
int
.
Parse
(
mats
[
0
]),
int
.
Parse
(
mats
[
1
]),
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
Screen
.
fullScreen
);
}
Program
.
go
(
...
...
@@ -329,6 +329,12 @@ public class Setting : WindowServant2D
public
void
save
()
{
Config
.
Set
(
"full_"
,
UIHelper
.
fromBoolToString
(
UIHelper
.
getByName
<
UIToggle
>(
gameObject
,
"full_"
).
value
)
);
Config
.
Set
(
"ignoreWatcher_"
,
UIHelper
.
fromBoolToString
(
...
...
Assets/StreamingAssets/ygopro2-data.zip
View file @
ba1f7611
No preview for this file type
Assets/transUI/prefab/trans_setting.prefab
View file @
ba1f7611
...
...
@@ -17712,7 +17712,7 @@ MonoBehaviour:
keepCrispWhenShrunk
:
1
mTrueTypeFont
:
{
fileID
:
12800000
,
guid
:
f775853fdfd14bb47934543e95c3bae3
,
type
:
3
}
mFont
:
{
fileID
:
0
}
mText
:
"
\u5
168\u5C4F\u6E38\u620F
"
mText
:
"
\u5
f00\u5c40\u9ed8\u8ba4\u5168\u65f6\u70b9
"
mFontSize
:
18
mFontStyle
:
0
mAlignment
:
0
...
...
UserSettings/Layouts/CurrentMaximizeLayout.dwlt
View file @
ba1f7611
...
...
@@ -24,8 +24,311 @@ MonoBehaviour:
m_MinSize
:
{
x
:
300
,
y
:
200
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
controlID
:
14
controlID
:
400
---
!u!114
&2
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12014
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
230
,
y
:
250
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_Text
:
Project
m_Image
:
{
fileID
:
-5179483145760003458
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
670
width
:
1146
height
:
267
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SearchFilter
:
m_NameFilter
:
m_ClassNames
:
[]
m_AssetLabels
:
[]
m_AssetBundleNames
:
[]
m_ReferencingInstanceIDs
:
m_SceneHandles
:
m_ShowAllHits
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_Folders
:
-
Assets/ArtSystem/superButton/toolBars
m_Globs
:
[]
m_OriginalText
:
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets/ArtSystem/superButton/toolBars
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/hexzhou/Workplace/ygopro2_unity2021
m_LockTracker
:
m_IsLocked
:
0
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
541.3339
}
m_SelectedIDs
:
1eaf0000
m_LastClickedID
:
44830
m_ExpandedIDs
:
000000000eaf000010af000012af000014af000016af000018af00001aaf00001caf00001eaf000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
10
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
000000000eaf000010af000012af000014af000016af000018af00001aaf00001caf00001eaf000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
0
m_ExpandedInstanceIDs
:
c62300000000000096d2000090d20000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
10
}
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_NewAssetIndexInList
:
-1
m_ScrollPosition
:
{
x
:
0
,
y
:
0
}
m_GridSize
:
64
m_SkipHiddenPackages
:
0
m_DirectoriesAreaWidth
:
207
---
!u!114
&3
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12010
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
-
{
fileID
:
4
}
-
{
fileID
:
10
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
1147
height
:
866
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
controlID
:
401
---
!u!114
&4
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12010
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
-
{
fileID
:
5
}
-
{
fileID
:
7
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
1147
height
:
578
m_MinSize
:
{
x
:
200
,
y
:
100
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
controlID
:
353
---
!u!114
&5
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
282
height
:
578
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_ActualView
:
{
fileID
:
6
}
m_Panes
:
-
{
fileID
:
6
}
m_Selected
:
0
m_LastSelected
:
0
---
!u!114
&6
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12061
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Hierarchy
m_Image
:
{
fileID
:
-3734745235275155857
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
92
width
:
281
height
:
557
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SceneHierarchy
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
fafaffff
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
0
m_ClientGUIView
:
{
fileID
:
5
}
m_SearchString
:
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_LockTracker
:
m_IsLocked
:
0
m_CurrentSortingName
:
TransformSorting
m_WindowGUID
:
4c969a2b90040154d917609493e03593
---
!u!114
&7
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
SimulatorWindow
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
282
y
:
0
width
:
865
height
:
578
m_MinSize
:
{
x
:
202
,
y
:
221
}
m_MaxSize
:
{
x
:
4002
,
y
:
4021
}
m_ActualView
:
{
fileID
:
9
}
m_Panes
:
-
{
fileID
:
8
}
-
{
fileID
:
9
}
m_Selected
:
1
m_LastSelected
:
0
---
!u!114
&8
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
...
@@ -46,10 +349,10 @@ MonoBehaviour:
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
28
4.5
y
:
9
6
width
:
86
2
height
:
619
x
:
28
2
y
:
9
2
width
:
86
3
height
:
556
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
@@ -81,7 +384,7 @@ MonoBehaviour:
floating
:
0
collapsed
:
0
displayed
:
1
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffset
:
{
x
:
0
,
y
:
25
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
id
:
unity-scene-view-toolbar
...
...
@@ -275,281 +578,119 @@ MonoBehaviour:
index
:
12
layout
:
4
-
dockPosition
:
1
containerId
:
overlay-toolbar__top
floating
:
0
collapsed
:
0
displayed
:
0
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
id
:
Scene View/Open Tile Palette
index
:
2
layout
:
4
-
dockPosition
:
1
containerId
:
overlay-toolbar__top
floating
:
0
collapsed
:
0
displayed
:
0
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
id
:
Scene View/Tilemap Focus
index
:
3
layout
:
4
m_OverlaysVisible
:
1
m_WindowGUID
:
cc27987af1a868c49b0894db9c0f5429
m_Gizmos
:
1
m_OverrideSceneCullingMask
:
6917529027641081856
m_SceneIsLit
:
1
m_SceneLighting
:
1
m_2DMode
:
1
m_isRotationLocked
:
0
m_PlayAudio
:
0
m_AudioPlay
:
0
m_Position
:
m_Target
:
{
x
:
-0.19514541
,
y
:
-0.1012258
,
z
:
0.001550125
}
speed
:
2
m_Value
:
{
x
:
-0.19514541
,
y
:
-0.1012258
,
z
:
0.001550125
}
m_RenderMode
:
0
m_CameraMode
:
drawMode
:
0
name
:
Shaded
section
:
Shading Mode
m_ValidateTrueMetals
:
0
m_DoValidateTrueMetals
:
0
m_ExposureSliderValue
:
0
m_SceneViewState
:
m_AlwaysRefresh
:
0
showFog
:
1
showSkybox
:
1
showFlares
:
1
showImageEffects
:
1
showParticleSystems
:
1
showVisualEffectGraphs
:
1
m_FxEnabled
:
1
m_Grid
:
xGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
0
,
y
:
0
}
yGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
1
,
y
:
1
}
zGrid
:
m_Fade
:
m_Target
:
1
speed
:
2
m_Value
:
1
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
1
,
y
:
1
}
m_ShowGrid
:
1
m_GridAxis
:
1
m_gridOpacity
:
0.5
m_Rotation
:
m_Target
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_Size
:
m_Target
:
11.969343
speed
:
2
m_Value
:
11.969343
m_Ortho
:
m_Target
:
1
speed
:
2
m_Value
:
1
m_CameraSettings
:
m_Speed
:
1
m_SpeedNormalized
:
0.5
m_SpeedMin
:
0.001
m_SpeedMax
:
2
m_EasingEnabled
:
1
m_EasingDuration
:
0.4
m_AccelerationEnabled
:
1
m_FieldOfViewHorizontalOrVertical
:
60
m_NearClip
:
0.03
m_FarClip
:
10000
m_DynamicClip
:
1
m_OcclusionCulling
:
0
m_LastSceneViewRotation
:
{
x
:
-0.08717229
,
y
:
0.89959055
,
z
:
-0.21045254
,
w
:
-0.3726226
}
m_LastSceneViewOrtho
:
0
m_ReplacementShader
:
{
fileID
:
0
}
m_ReplacementString
:
m_SceneVisActive
:
1
m_LastLockedObject
:
{
fileID
:
0
}
m_ViewIsLockedToObject
:
0
---
!u!114
&3
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12010
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
-
{
fileID
:
4
}
-
{
fileID
:
9
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
1148.5
height
:
866
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
controlID
:
15
---
!u!114
&4
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12010
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
-
{
fileID
:
5
}
-
{
fileID
:
7
}
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
1148.5
height
:
640
m_MinSize
:
{
x
:
200
,
y
:
100
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
controlID
:
16
---
!u!114
&5
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
284.5
height
:
640
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_ActualView
:
{
fileID
:
6
}
m_Panes
:
-
{
fileID
:
6
}
m_Selected
:
0
m_LastSelected
:
0
---
!u!114
&6
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12061
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Hierarchy
m_Image
:
{
fileID
:
-3734745235275155857
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
96
width
:
283.5
height
:
619
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SceneHierarchy
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
ae0bf5ff4822f5ffcc38f5ffde38f5ff0239f5ff0a22faff1c22faff4022fafffefaffff
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
new_toolBar_editDeck(Clone)
m_OriginalName
:
new_toolBar_editDeck(Clone)
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
-450028
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
0
m_IsRenamingFilename
:
0
m_ClientGUIView
:
{
fileID
:
5
}
m_SearchString
:
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_LockTracker
:
m_IsLocked
:
0
m_CurrentSortingName
:
TransformSorting
m_WindowGUID
:
4c969a2b90040154d917609493e03593
---
!u!114
&7
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
SceneView
m_EditorClassIdentifier
:
m_Children
:
[]
containerId
:
overlay-toolbar__top
floating
:
0
collapsed
:
0
displayed
:
0
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
id
:
Scene View/Open Tile Palette
index
:
2
layout
:
4
-
dockPosition
:
1
containerId
:
overlay-toolbar__top
floating
:
0
collapsed
:
0
displayed
:
0
snapOffset
:
{
x
:
0
,
y
:
0
}
snapOffsetDelta
:
{
x
:
0
,
y
:
0
}
snapCorner
:
0
id
:
Scene View/Tilemap Focus
index
:
3
layout
:
4
m_OverlaysVisible
:
1
m_WindowGUID
:
cc27987af1a868c49b0894db9c0f5429
m_Gizmos
:
1
m_OverrideSceneCullingMask
:
6917529027641081856
m_SceneIsLit
:
1
m_SceneLighting
:
1
m_2DMode
:
1
m_isRotationLocked
:
0
m_PlayAudio
:
0
m_AudioPlay
:
0
m_Position
:
serializedVersion
:
2
x
:
284.5
y
:
0
width
:
864
height
:
640
m_MinSize
:
{
x
:
202
,
y
:
221
}
m_MaxSize
:
{
x
:
4002
,
y
:
4021
}
m_ActualView
:
{
fileID
:
2
}
m_Panes
:
-
{
fileID
:
2
}
-
{
fileID
:
8
}
m_Selected
:
0
m_LastSelected
:
1
---
!u!114
&8
m_Target
:
{
x
:
0.09515609
,
y
:
-0.19751306
,
z
:
-0.0032460063
}
speed
:
2
m_Value
:
{
x
:
0.09515609
,
y
:
-0.19751306
,
z
:
-0.0032460063
}
m_RenderMode
:
0
m_CameraMode
:
drawMode
:
0
name
:
Shaded
section
:
Shading Mode
m_ValidateTrueMetals
:
0
m_DoValidateTrueMetals
:
0
m_ExposureSliderValue
:
0
m_SceneViewState
:
m_AlwaysRefresh
:
0
showFog
:
1
showSkybox
:
1
showFlares
:
1
showImageEffects
:
1
showParticleSystems
:
1
showVisualEffectGraphs
:
1
m_FxEnabled
:
1
m_Grid
:
xGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
0
,
y
:
0
}
yGrid
:
m_Fade
:
m_Target
:
0
speed
:
2
m_Value
:
0
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
1
,
y
:
1
}
zGrid
:
m_Fade
:
m_Target
:
1
speed
:
2
m_Value
:
1
m_Color
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
0.4
}
m_Pivot
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_Size
:
{
x
:
1
,
y
:
1
}
m_ShowGrid
:
1
m_GridAxis
:
1
m_gridOpacity
:
0.5
m_Rotation
:
m_Target
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_Size
:
m_Target
:
1.447439
speed
:
2
m_Value
:
1.447439
m_Ortho
:
m_Target
:
1
speed
:
2
m_Value
:
1
m_CameraSettings
:
m_Speed
:
1
m_SpeedNormalized
:
0.5
m_SpeedMin
:
0.001
m_SpeedMax
:
2
m_EasingEnabled
:
1
m_EasingDuration
:
0.4
m_AccelerationEnabled
:
1
m_FieldOfViewHorizontalOrVertical
:
60
m_NearClip
:
0.03
m_FarClip
:
10000
m_DynamicClip
:
1
m_OcclusionCulling
:
0
m_LastSceneViewRotation
:
{
x
:
-0.08717229
,
y
:
0.89959055
,
z
:
-0.21045254
,
w
:
-0.3726226
}
m_LastSceneViewOrtho
:
0
m_ReplacementShader
:
{
fileID
:
0
}
m_ReplacementString
:
m_SceneVisActive
:
1
m_LastLockedObject
:
{
fileID
:
0
}
m_ViewIsLockedToObject
:
0
---
!u!114
&9
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
...
@@ -570,10 +711,10 @@ MonoBehaviour:
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
28
4.5
y
:
9
6
width
:
86
2
height
:
619
x
:
28
2
y
:
9
2
width
:
86
3
height
:
557
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
@@ -587,7 +728,7 @@ MonoBehaviour:
m_ShowGizmos
:
0
m_TargetDisplay
:
0
m_ClearColor
:
{
r
:
0
,
g
:
0
,
b
:
0
,
a
:
1
}
m_TargetSize
:
{
x
:
1
920
,
y
:
108
0
}
m_TargetSize
:
{
x
:
1
600
,
y
:
90
0
}
m_TextureFilterMode
:
0
m_TextureHideFlags
:
61
m_RenderIMGUI
:
1
...
...
@@ -606,11 +747,11 @@ MonoBehaviour:
scale
:
24
fitToScreenEnabled
:
0
rotationDegree
:
270
highlightSafeAreaEnabled
:
1
highlightSafeAreaEnabled
:
0
friendlyName
:
Apple iPhone 13 Pro Max
networkReachability
:
1
systemLanguage
:
10
---
!u!114
&
9
---
!u!114
&
10
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
...
@@ -620,164 +761,23 @@ MonoBehaviour:
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
ConsoleWindow
m_Name
:
ProjectBrowser
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
640
width
:
114
8.5
height
:
2
26
m_MinSize
:
{
x
:
101
,
y
:
12
1
}
m_MaxSize
:
{
x
:
4001
,
y
:
4
021
}
m_ActualView
:
{
fileID
:
11
}
y
:
578
width
:
114
7
height
:
2
88
m_MinSize
:
{
x
:
231
,
y
:
27
1
}
m_MaxSize
:
{
x
:
10001
,
y
:
10
021
}
m_ActualView
:
{
fileID
:
2
}
m_Panes
:
-
{
fileID
:
10
}
-
{
fileID
:
2
}
-
{
fileID
:
11
}
m_Selected
:
1
m_LastSelected
:
0
---
!u!114
&10
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12014
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
230
,
y
:
250
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_Text
:
Project
m_Image
:
{
fileID
:
-5179483145760003458
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
485
width
:
1147.5
height
:
456
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SearchFilter
:
m_NameFilter
:
m_ClassNames
:
[]
m_AssetLabels
:
[]
m_AssetBundleNames
:
[]
m_ReferencingInstanceIDs
:
m_SceneHandles
:
m_ShowAllHits
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_Folders
:
-
Assets/SibylSystem/CardDescription
m_Globs
:
[]
m_OriginalText
:
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets/SibylSystem/CardDescription
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/hexzhou/Workplace/ygopro2_unity2021
m_LockTracker
:
m_IsLocked
:
0
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
239
}
m_SelectedIDs
:
bcae0000
m_LastClickedID
:
44732
m_ExpandedIDs
:
0000000092ae000094ae000096ae000098ae00009aae00009cae00009eae000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
9
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
0000000092ae000094ae000096ae000098ae00009aae00009cae00009eae0000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
1
m_ExpandedInstanceIDs
:
c62300000000000096d2000090d20000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
9
}
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_NewAssetIndexInList
:
-1
m_ScrollPosition
:
{
x
:
0
,
y
:
0
}
m_GridSize
:
64
m_SkipHiddenPackages
:
0
m_DirectoriesAreaWidth
:
207
m_Selected
:
0
m_LastSelected
:
1
---
!u!114
&11
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -800,9 +800,9 @@ MonoBehaviour:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
736
width
:
114
7.5
height
:
2
05
y
:
670
width
:
114
6
height
:
2
67
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
@@ -823,9 +823,9 @@ MonoBehaviour:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
114
8.5
x
:
114
7
y
:
0
width
:
36
3.
5
width
:
365
height
:
866
m_MinSize
:
{
x
:
275
,
y
:
50
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
...
...
@@ -855,9 +855,9 @@ MonoBehaviour:
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
114
8.5
y
:
9
6
width
:
36
2.5
x
:
114
7
y
:
9
2
width
:
36
4
height
:
845
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
...
...
UserSettings/Layouts/default-2021.dwlt
View file @
ba1f7611
...
...
@@ -19,7 +19,7 @@ MonoBehaviour:
width
:
1512
height
:
916
m_ShowMode
:
4
m_Title
:
Inspec
tor
m_Title
:
Simula
tor
m_RootView
:
{
fileID
:
2
}
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
...
...
@@ -119,7 +119,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
300
,
y
:
200
}
m_MaxSize
:
{
x
:
24288
,
y
:
16192
}
vertical
:
0
controlID
:
14
controlID
:
6
14
---
!u!114
&6
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -144,7 +144,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
16192
,
y
:
16192
}
vertical
:
1
controlID
:
15
controlID
:
6
15
---
!u!114
&7
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -165,11 +165,11 @@ MonoBehaviour:
x
:
0
y
:
0
width
:
1147
height
:
576
height
:
424
m_MinSize
:
{
x
:
200
,
y
:
100
}
m_MaxSize
:
{
x
:
16192
,
y
:
8096
}
vertical
:
0
controlID
:
16
controlID
:
6
16
---
!u!114
&8
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -188,9 +188,9 @@ MonoBehaviour:
x
:
0
y
:
0
width
:
282
height
:
576
m_MinSize
:
{
x
:
20
0
,
y
:
200
}
m_MaxSize
:
{
x
:
400
0
,
y
:
4000
}
height
:
424
m_MinSize
:
{
x
:
20
1
,
y
:
221
}
m_MaxSize
:
{
x
:
400
1
,
y
:
4021
}
m_ActualView
:
{
fileID
:
13
}
m_Panes
:
-
{
fileID
:
13
}
...
...
@@ -214,13 +214,13 @@ MonoBehaviour:
x
:
282
y
:
0
width
:
865
height
:
576
m_MinSize
:
{
x
:
20
0
,
y
:
200
}
m_MaxSize
:
{
x
:
400
0
,
y
:
4000
}
m_ActualView
:
{
fileID
:
1
4
}
height
:
424
m_MinSize
:
{
x
:
20
2
,
y
:
221
}
m_MaxSize
:
{
x
:
400
2
,
y
:
4021
}
m_ActualView
:
{
fileID
:
1
5
}
m_Panes
:
-
{
fileID
:
12
}
-
{
fileID
:
14
}
-
{
fileID
:
15
}
m_Selected
:
1
m_LastSelected
:
0
---
!u!114
&10
...
...
@@ -233,23 +233,23 @@ MonoBehaviour:
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12006
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
ProjectBrowser
m_Name
:
ConsoleWindow
m_EditorClassIdentifier
:
m_Children
:
[]
m_Position
:
serializedVersion
:
2
x
:
0
y
:
576
y
:
424
width
:
1147
height
:
290
m_MinSize
:
{
x
:
231
,
y
:
271
}
m_MaxSize
:
{
x
:
10001
,
y
:
10021
}
m_ActualView
:
{
fileID
:
1
5
}
height
:
442
m_MinSize
:
{
x
:
100
,
y
:
100
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_ActualView
:
{
fileID
:
1
6
}
m_Panes
:
-
{
fileID
:
1
5
}
-
{
fileID
:
1
2
}
-
{
fileID
:
16
}
m_Selected
:
0
m_LastSelected
:
1
m_Selected
:
1
m_LastSelected
:
0
---
!u!114
&11
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -269,14 +269,214 @@ MonoBehaviour:
y
:
0
width
:
365
height
:
866
m_MinSize
:
{
x
:
27
6
,
y
:
71
}
m_MaxSize
:
{
x
:
400
1
,
y
:
4021
}
m_MinSize
:
{
x
:
27
5
,
y
:
50
}
m_MaxSize
:
{
x
:
400
0
,
y
:
4000
}
m_ActualView
:
{
fileID
:
17
}
m_Panes
:
-
{
fileID
:
17
}
m_Selected
:
0
m_LastSelected
:
0
---
!u!114
&12
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12014
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
230
,
y
:
250
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_Text
:
Project
m_Image
:
{
fileID
:
-5179483145760003458
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
670
width
:
1146
height
:
267
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SearchFilter
:
m_NameFilter
:
m_ClassNames
:
[]
m_AssetLabels
:
[]
m_AssetBundleNames
:
[]
m_ReferencingInstanceIDs
:
m_SceneHandles
:
m_ShowAllHits
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_Folders
:
-
Assets/ArtSystem/superButton/toolBars
m_Globs
:
[]
m_OriginalText
:
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets/ArtSystem/superButton/toolBars
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/hexzhou/Workplace/ygopro2_unity2021
m_LockTracker
:
m_IsLocked
:
0
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
185
}
m_SelectedIDs
:
1eaf0000
m_LastClickedID
:
44830
m_ExpandedIDs
:
000000000eaf000010af000012af000014af000016af000018af00001aaf00001caf00001eaf000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
000000000eaf000010af000012af000014af000016af000018af00001aaf00001caf00001eaf000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
0
m_ExpandedInstanceIDs
:
c62300000000000096d2000090d20000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_NewAssetIndexInList
:
-1
m_ScrollPosition
:
{
x
:
0
,
y
:
0
}
m_GridSize
:
64
m_SkipHiddenPackages
:
0
m_DirectoriesAreaWidth
:
207
---
!u!114
&13
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12061
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Hierarchy
m_Image
:
{
fileID
:
-3734745235275155857
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
92
width
:
281
height
:
403
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SceneHierarchy
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
fafaffff
m_LastClickedID
:
-1286
m_ExpandedIDs
:
869ffaffb09ffaffda9ffaffe09ffaffe69ffaff7ad5faff5e7efdff667efdff6c39fefffafaffff
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
Background
m_OriginalName
:
Background
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
-352308
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
0
m_IsRenamingFilename
:
0
m_ClientGUIView
:
{
fileID
:
8
}
m_SearchString
:
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_LockTracker
:
m_IsLocked
:
0
m_CurrentSortingName
:
TransformSorting
m_WindowGUID
:
4c969a2b90040154d917609493e03593
---
!u!114
&14
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
...
@@ -300,7 +500,7 @@ MonoBehaviour:
x
:
282
y
:
92
width
:
863
height
:
555
height
:
403
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
@@ -558,9 +758,9 @@ MonoBehaviour:
m_PlayAudio
:
0
m_AudioPlay
:
0
m_Position
:
m_Target
:
{
x
:
-0.65800685
,
y
:
-0.19995081
,
z
:
0.0072034774
}
m_Target
:
{
x
:
1.5788889
,
y
:
0.18222223
,
z
:
0
}
speed
:
2
m_Value
:
{
x
:
-0.65800685
,
y
:
-0.19995081
,
z
:
0.0072034774
}
m_Value
:
{
x
:
1.5788889
,
y
:
0.18222223
,
z
:
0
}
m_RenderMode
:
0
m_CameraMode
:
drawMode
:
0
...
...
@@ -611,9 +811,9 @@ MonoBehaviour:
speed
:
2
m_Value
:
{
x
:
0
,
y
:
0
,
z
:
0
,
w
:
1
}
m_Size
:
m_Target
:
0.
4122567
m_Target
:
0.
3047038
speed
:
2
m_Value
:
0.
4122567
m_Value
:
0.
3047038
m_Ortho
:
m_Target
:
1
speed
:
2
...
...
@@ -638,66 +838,7 @@ MonoBehaviour:
m_SceneVisActive
:
1
m_LastLockedObject
:
{
fileID
:
0
}
m_ViewIsLockedToObject
:
0
---
!u!114
&13
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12061
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
200
,
y
:
200
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_Text
:
Hierarchy
m_Image
:
{
fileID
:
-3734745235275155857
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
92
width
:
281
height
:
555
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SceneHierarchy
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
72dfecff
m_LastClickedID
:
-1253518
m_ExpandedIDs
:
74dfecff967eefffa47eefffb07eefffc07eefffcc7eefffde7eefffea7eeffffc7eefff087fefff187fefff387fefff487fefff547fefff627fefff6e7fefff7e7fefff8a7fefff9a7fefffd07fefffb497efffee99effffe99efff569aefffdc9aefffa83af0ffde3af0ffe23af0ff5e51f0ff7051f0ff8251f0ffb251f0ff0604f6ff0e04f6ff90a9f6ff58c0f6ffb4c1f6ff04c2f6ff18c2f6ff00c3f6ff50c3f6ff26c7f6ffa67af7fff67af7ff0a7bf7ffe47bf7ff347cf7ff487cf7ff4e7df7ff9e7df7ff7481f7ff04fbffff
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
0
m_ClientGUIView
:
{
fileID
:
8
}
m_SearchString
:
m_ExpandedScenes
:
[]
m_CurrenRootInstanceID
:
0
m_LockTracker
:
m_IsLocked
:
0
m_CurrentSortingName
:
TransformSorting
m_WindowGUID
:
4c969a2b90040154d917609493e03593
---
!u!114
&14
---
!u!114
&15
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
...
...
@@ -721,7 +862,7 @@ MonoBehaviour:
x
:
282
y
:
92
width
:
863
height
:
555
height
:
403
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
@@ -758,147 +899,6 @@ MonoBehaviour:
friendlyName
:
Apple iPhone 13 Pro Max
networkReachability
:
1
systemLanguage
:
10
---
!u!114
&15
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_CorrespondingSourceObject
:
{
fileID
:
0
}
m_PrefabInstance
:
{
fileID
:
0
}
m_PrefabAsset
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
0
}
m_Enabled
:
1
m_EditorHideFlags
:
1
m_Script
:
{
fileID
:
12014
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
m_Name
:
m_EditorClassIdentifier
:
m_MinSize
:
{
x
:
230
,
y
:
250
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_Text
:
Project
m_Image
:
{
fileID
:
-5179483145760003458
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
m_Tooltip
:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
668
width
:
1146
height
:
269
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
m_SaveData
:
[]
m_OverlaysVisible
:
1
m_SearchFilter
:
m_NameFilter
:
m_ClassNames
:
[]
m_AssetLabels
:
[]
m_AssetBundleNames
:
[]
m_ReferencingInstanceIDs
:
m_SceneHandles
:
m_ShowAllHits
:
0
m_SkipHidden
:
0
m_SearchArea
:
1
m_Folders
:
-
Assets/ArtSystem/superButton/toolBars
m_Globs
:
[]
m_OriginalText
:
m_FilterByTypeIntersection
:
0
m_ViewMode
:
1
m_StartGridSize
:
64
m_LastFolders
:
-
Assets/ArtSystem/superButton/toolBars
m_LastFoldersGridSize
:
-1
m_LastProjectPath
:
/Users/hexzhou/Workplace/ygopro2_unity2021
m_LockTracker
:
m_IsLocked
:
0
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
541.3339
}
m_SelectedIDs
:
e0c60000
m_LastClickedID
:
50912
m_ExpandedIDs
:
00000000feae000002af000004af000006af000008af00000aaf0000f8c30000d2c60000e0c6000000ca9a3bffffff7f
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
10
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_AssetTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_LastClickedID
:
0
m_ExpandedIDs
:
00000000feae000000af000002af000004af000006af000008af00000aaf0000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_SearchString
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_ListAreaState
:
m_SelectedInstanceIDs
:
m_LastClickedInstanceID
:
0
m_HadKeyboardFocusLastEvent
:
1
m_ExpandedInstanceIDs
:
c62300000000000096d2000090d20000
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_Name
:
m_OriginalName
:
m_EditFieldRect
:
serializedVersion
:
2
x
:
0
y
:
0
width
:
0
height
:
0
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
10
}
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_InstanceID
:
0
m_Path
:
m_Icon
:
{
fileID
:
0
}
m_ResourceFile
:
m_NewAssetIndexInList
:
-1
m_ScrollPosition
:
{
x
:
0
,
y
:
0
}
m_GridSize
:
64
m_SkipHiddenPackages
:
0
m_DirectoriesAreaWidth
:
207
---
!u!114
&16
MonoBehaviour
:
m_ObjectHideFlags
:
52
...
...
@@ -921,9 +921,9 @@ MonoBehaviour:
m_Pos
:
serializedVersion
:
2
x
:
0
y
:
668
y
:
516
width
:
1146
height
:
269
height
:
421
m_ViewDataDictionary
:
{
fileID
:
0
}
m_OverlayCanvas
:
m_LastAppliedPresetName
:
Default
...
...
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