Commit e4c4c727 authored by hex's avatar hex

fix and update

parent c8a0c92b
Pipeline #39949 failed
...@@ -176,7 +176,7 @@ public class Menu : WindowServantSP ...@@ -176,7 +176,7 @@ public class Menu : WindowServantSP
{ {
isDownloadingSuperPre = true; isDownloadingSuperPre = true;
// 定义常量和路径 // 定义常量和路径
const string downloadUrl = "https://cdn02.moecube.com:444/ygopro-super-pre/archive/ygopro-super-pre.ypk"; const string downloadUrl = "https://cdntx.moecube.com/ygopro-super-pre/archive/ygopro-super-pre.ypk";
string expansionsDir = "expansions"; string expansionsDir = "expansions";
string ypkFileName = "ygopro-super-pre.ypk"; string ypkFileName = "ygopro-super-pre.ypk";
string zipFileName = "ygopro-super-pre.zip"; string zipFileName = "ygopro-super-pre.zip";
......
...@@ -576,7 +576,7 @@ public class Program : MonoBehaviour ...@@ -576,7 +576,7 @@ public class Program : MonoBehaviour
bool lflistUpdated = false; bool lflistUpdated = false;
bool stringsUpdated = false; bool stringsUpdated = false;
// 1. 下载 cards.cdb // 1. 下载 cards.cdb
string cardsUrl = "https://cdn02.moecube.com:444/koishipro/ygopro-database/zh-CN/cards.cdb"; string cardsUrl = "https://cdntx.moecube.com/koishipro/ygopro-database/zh-CN/cards.cdb";
string cardsPath = Path.Combine(dbDir, "cards.cdb"); string cardsPath = Path.Combine(dbDir, "cards.cdb");
yield return StartCoroutine( yield return StartCoroutine(
UnityFileDownloader.DownloadFileWithHeadCheck( UnityFileDownloader.DownloadFileWithHeadCheck(
...@@ -594,7 +594,7 @@ public class Program : MonoBehaviour ...@@ -594,7 +594,7 @@ public class Program : MonoBehaviour
); );
// 2. 下载 lflist.conf // 2. 下载 lflist.conf
string lflistUrl = "https://cdn02.moecube.com:444/koishipro/ygopro-database/zh-CN/lflist.conf"; string lflistUrl = "https://cdntx.moecube.com/koishipro/ygopro-database/zh-CN/lflist.conf";
string lflistPath = Path.Combine(dbDir, "lflist.conf"); string lflistPath = Path.Combine(dbDir, "lflist.conf");
yield return StartCoroutine( yield return StartCoroutine(
UnityFileDownloader.DownloadFileWithHeadCheck( UnityFileDownloader.DownloadFileWithHeadCheck(
...@@ -612,7 +612,7 @@ public class Program : MonoBehaviour ...@@ -612,7 +612,7 @@ public class Program : MonoBehaviour
); );
// 3. 下载 strings.conf // 3. 下载 strings.conf
string stringsUrl = string stringsUrl =
"https://cdn02.moecube.com:444/koishipro/ygopro-database/zh-CN/strings.conf"; "https://cdntx.moecube.com/koishipro/ygopro-database/zh-CN/strings.conf";
string stringsPath = Path.Combine(dbDir, "strings.conf"); string stringsPath = Path.Combine(dbDir, "strings.conf");
yield return StartCoroutine( yield return StartCoroutine(
UnityFileDownloader.DownloadFileWithHeadCheck( UnityFileDownloader.DownloadFileWithHeadCheck(
......
...@@ -246,7 +246,7 @@ public class GameTextureManager ...@@ -246,7 +246,7 @@ public class GameTextureManager
else if (pic.type == GameTextureType.card_picture && pic.code != 0 && AutoPicDownload) else if (pic.type == GameTextureType.card_picture && pic.code != 0 && AutoPicDownload)
{ {
// 文件不存在,且是卡图,则尝试下载 // 文件不存在,且是卡图,则尝试下载
string url = "https://cdn02.moecube.com:444/images/ygopro-images-zh-CN/" + pic.code.ToString() + ".jpg"; string url = "https://cdntx.moecube.com/images/ygopro-images-zh-CN/" + pic.code.ToString() + ".jpg";
string finalPath = "picture/card/" + pic.code.ToString() + ".jpg"; string finalPath = "picture/card/" + pic.code.ToString() + ".jpg";
lock (_lock) lock (_lock)
......
...@@ -29,40 +29,40 @@ public static class GlobalCertificateManager ...@@ -29,40 +29,40 @@ public static class GlobalCertificateManager
SslPolicyErrors sslPolicyErrors SslPolicyErrors sslPolicyErrors
) )
{ {
// 都是从 cdn02 的官方资源下载,hook 掉不验证证书可以提高下载速度,但是有一定的安全风险 // 都是从的官方资源下载,hook 掉不验证证书可以提高下载速度,但是有一定的安全风险
return true; // return true;
// // Case 1: 证书本身没有问题,直接通过 // Case 1: 证书本身没有问题,直接通过
// if (sslPolicyErrors == SslPolicyErrors.None) if (sslPolicyErrors == SslPolicyErrors.None)
// { {
// return true; return true;
// } }
// // Case 2: 如果错误是 RemoteCertificateChainErrors, // Case 2: 如果错误是 RemoteCertificateChainErrors,
// // 这通常意味着证书链有问题,比如找不到吊销列表或者根证书不受信任。 // 这通常意味着证书链有问题,比如找不到吊销列表或者根证书不受信任。
// // 我们将尝试进行一次忽略吊销检查的自定义验证。 // 我们将尝试进行一次忽略吊销检查的自定义验证。
// if ((sslPolicyErrors & SslPolicyErrors.RemoteCertificateChainErrors) != 0) if ((sslPolicyErrors & SslPolicyErrors.RemoteCertificateChainErrors) != 0)
// { {
// // 创建一个新的证书链对象 // 创建一个新的证书链对象
// X509Chain customChain = new X509Chain(); X509Chain customChain = new X509Chain();
// // 设置自定义验证策略 // 设置自定义验证策略
// customChain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck; // <-- 核心:不检查证书吊销 customChain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck; // <-- 核心:不检查证书吊销
// customChain.ChainPolicy.VerificationFlags = customChain.ChainPolicy.VerificationFlags =
// X509VerificationFlags.AllowUnknownCertificateAuthority; // 可选:如果你的服务器是自签名证书,需要加上这句。如果服务器证书是由受信任的公共CA颁发的,可以去掉这句。 X509VerificationFlags.AllowUnknownCertificateAuthority; // 可选:如果你的服务器是自签名证书,需要加上这句。如果服务器证书是由受信任的公共CA颁发的,可以去掉这句。
// // 使用 X509Certificate2,因为它包含更完整的信息 // 使用 X509Certificate2,因为它包含更完整的信息
// X509Certificate2 cert2 = new X509Certificate2(certificate); X509Certificate2 cert2 = new X509Certificate2(certificate);
// // 使用自定义策略进行验证 // 使用自定义策略进行验证
// bool isChainValid = customChain.Build(cert2); bool isChainValid = customChain.Build(cert2);
// // 如果自定义验证构建成功,说明在忽略吊销检查的前提下,证书是可信的 // 如果自定义验证构建成功,说明在忽略吊销检查的前提下,证书是可信的
// if (isChainValid) if (isChainValid)
// { {
// return true; return true;
// } }
// } }
// // Case 3: 对于其他错误(如名称不匹配 RemoteCertificateNameMismatch)或自定义验证失败, // Case 3: 对于其他错误(如名称不匹配 RemoteCertificateNameMismatch)或自定义验证失败,
// // 我们认为证书无效。 // 我们认为证书无效。
// Debug.LogErrorFormat("证书验证失败. SslPolicyErrors: {0}", sslPolicyErrors); Debug.LogErrorFormat("证书验证失败. SslPolicyErrors: {0}", sslPolicyErrors);
// return false; return false;
} }
} }
...@@ -53,13 +53,13 @@ public class SelectServer : WindowServantSP ...@@ -53,13 +53,13 @@ public class SelectServer : WindowServantSP
set_version("0x" + String.Format("{0:X}", Config.ClientVersion)); set_version("0x" + String.Format("{0:X}", Config.ClientVersion));
//方便免修改 [selectServerWithRoomlist.prefab] //方便免修改 [selectServerWithRoomlist.prefab]
serversList.items.Add("[OCG]MYGO"); serversList.items.Add("[OCG]Koishi");
serversList.items.Add("[OCG]MYGO 2");
serversList.items.Add("[OCG]EXP");
serversList.items.Add("[OCG]233 1"); serversList.items.Add("[OCG]233 1");
serversList.items.Add("[OCG]233 2"); serversList.items.Add("[OCG]233 2");
serversList.items.Add("[OCG]233 约战"); serversList.items.Add("[OCG]233 约战");
serversList.items.Add("[OCG]Koishi"); serversList.items.Add("[OCG]MYGO");
serversList.items.Add("[OCG]MYGO 2");
serversList.items.Add("[OCG]EXP");
serversList.items.Add("决斗编年史"); serversList.items.Add("决斗编年史");
serversList.items.Add("2Pick轮抽"); serversList.items.Add("2Pick轮抽");
if ( if (
......
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!114 &1 --- !u!114 &1
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: 0
m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_PixelRect:
serializedVersion: 2
x: 0
y: 66
width: 1107
height: 601
m_ShowMode: 0
m_Title: Build Settings
m_RootView: {fileID: 4}
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_Maximized: 0
--- !u!114 &2
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -20,11 +44,61 @@ MonoBehaviour: ...@@ -20,11 +44,61 @@ MonoBehaviour:
height: 916 height: 916
m_ShowMode: 4 m_ShowMode: 4
m_Title: Simulator m_Title: Simulator
m_RootView: {fileID: 2} m_RootView: {fileID: 5}
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 1 m_Maximized: 1
--- !u!114 &2 --- !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: 0
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: BuildPlayerWindow
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 1107
height: 601
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
m_Selected: 0
m_LastSelected: 0
--- !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: 0
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children:
- {fileID: 3}
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 1107
height: 601
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
vertical: 0
controlID: 5149
--- !u!114 &5
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -37,9 +111,9 @@ MonoBehaviour: ...@@ -37,9 +111,9 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 3} - {fileID: 6}
- {fileID: 5} - {fileID: 8}
- {fileID: 4} - {fileID: 7}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -52,7 +126,7 @@ MonoBehaviour: ...@@ -52,7 +126,7 @@ MonoBehaviour:
m_TopViewHeight: 30 m_TopViewHeight: 30
m_UseBottomView: 1 m_UseBottomView: 1
m_BottomViewHeight: 20 m_BottomViewHeight: 20
--- !u!114 &3 --- !u!114 &6
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -74,7 +148,7 @@ MonoBehaviour: ...@@ -74,7 +148,7 @@ MonoBehaviour:
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
m_LastLoadedLayoutName: m_LastLoadedLayoutName:
--- !u!114 &4 --- !u!114 &7
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -95,7 +169,7 @@ MonoBehaviour: ...@@ -95,7 +169,7 @@ MonoBehaviour:
height: 20 height: 20
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
--- !u!114 &5 --- !u!114 &8
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -108,8 +182,8 @@ MonoBehaviour: ...@@ -108,8 +182,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 6} - {fileID: 9}
- {fileID: 11} - {fileID: 14}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -119,8 +193,8 @@ MonoBehaviour: ...@@ -119,8 +193,8 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 200} m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
controlID: 138 controlID: 19
--- !u!114 &6 --- !u!114 &9
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -133,8 +207,8 @@ MonoBehaviour: ...@@ -133,8 +207,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 7}
- {fileID: 10} - {fileID: 10}
- {fileID: 13}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -144,8 +218,8 @@ MonoBehaviour: ...@@ -144,8 +218,8 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 200} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
controlID: 139 controlID: 20
--- !u!114 &7 --- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -158,8 +232,8 @@ MonoBehaviour: ...@@ -158,8 +232,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 8} - {fileID: 11}
- {fileID: 9} - {fileID: 12}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -169,8 +243,8 @@ MonoBehaviour: ...@@ -169,8 +243,8 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 100} m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096} m_MaxSize: {x: 16192, y: 8096}
vertical: 0 vertical: 0
controlID: 140 controlID: 21
--- !u!114 &8 --- !u!114 &11
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -189,14 +263,14 @@ MonoBehaviour: ...@@ -189,14 +263,14 @@ MonoBehaviour:
y: 0 y: 0
width: 282.5 width: 282.5
height: 444 height: 444
m_MinSize: {x: 201, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 13} m_ActualView: {fileID: 17}
m_Panes: m_Panes:
- {fileID: 13} - {fileID: 17}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &9 --- !u!114 &12
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -217,13 +291,13 @@ MonoBehaviour: ...@@ -217,13 +291,13 @@ MonoBehaviour:
height: 444 height: 444
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 14} m_ActualView: {fileID: 18}
m_Panes: m_Panes:
- {fileID: 12} - {fileID: 16}
- {fileID: 14} - {fileID: 18}
m_Selected: 1 m_Selected: 1
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &10 --- !u!114 &13
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -233,7 +307,7 @@ MonoBehaviour: ...@@ -233,7 +307,7 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: ConsoleWindow m_Name: ProjectBrowser
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
...@@ -242,15 +316,15 @@ MonoBehaviour: ...@@ -242,15 +316,15 @@ MonoBehaviour:
y: 444 y: 444
width: 1147 width: 1147
height: 422 height: 422
m_MinSize: {x: 101, y: 121} m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 16} m_ActualView: {fileID: 19}
m_Panes: m_Panes:
- {fileID: 15} - {fileID: 19}
- {fileID: 16} - {fileID: 20}
m_Selected: 1 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 1
--- !u!114 &11 --- !u!114 &14
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -269,14 +343,65 @@ MonoBehaviour: ...@@ -269,14 +343,65 @@ MonoBehaviour:
y: 0 y: 0
width: 365 width: 365
height: 866 height: 866
m_MinSize: {x: 276, y: 71} m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 17} m_ActualView: {fileID: 21}
m_Panes: m_Panes:
- {fileID: 17} - {fileID: 21}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &12 --- !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: 0
m_Script: {fileID: 12043, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 640, y: 580}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Build Settings
m_Image: {fileID: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 66
width: 1107
height: 580
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs:
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: 0}
m_SearchString:
--- !u!114 &16
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -558,9 +683,9 @@ MonoBehaviour: ...@@ -558,9 +683,9 @@ MonoBehaviour:
m_PlayAudio: 0 m_PlayAudio: 0
m_AudioPlay: 0 m_AudioPlay: 0
m_Position: m_Position:
m_Target: {x: 0.38957965, y: 0.6880578, z: -0.009957563} m_Target: {x: 0.82517153, y: -0.41986775, z: -0.013034212}
speed: 2 speed: 2
m_Value: {x: 0.38957965, y: 0.6880578, z: -0.009957563} m_Value: {x: 0.82517153, y: -0.41986775, z: -0.013034212}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
...@@ -611,9 +736,9 @@ MonoBehaviour: ...@@ -611,9 +736,9 @@ MonoBehaviour:
speed: 2 speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1} m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size: m_Size:
m_Target: 1.2822651 m_Target: 1.5899264
speed: 2 speed: 2
m_Value: 1.2822651 m_Value: 1.5899264
m_Ortho: m_Ortho:
m_Target: 1 m_Target: 1
speed: 2 speed: 2
...@@ -638,7 +763,7 @@ MonoBehaviour: ...@@ -638,7 +763,7 @@ MonoBehaviour:
m_SceneVisActive: 1 m_SceneVisActive: 1
m_LastLockedObject: {fileID: 0} m_LastLockedObject: {fileID: 0}
m_ViewIsLockedToObject: 0 m_ViewIsLockedToObject: 0
--- !u!114 &13 --- !u!114 &17
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -671,9 +796,9 @@ MonoBehaviour: ...@@ -671,9 +796,9 @@ MonoBehaviour:
m_SceneHierarchy: m_SceneHierarchy:
m_TreeViewState: m_TreeViewState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: 8843edff m_SelectedIDs: 7426fcff
m_LastClickedID: 0 m_LastClickedID: -252300
m_ExpandedIDs: 16adf2ff04c6f5ff6abff6ff94bff6ffc4bff6ffcabff6ff2cf5f6ff3ef5f6ffe67ff8ff3680f8ff4a80f8ff0081f8ff5081f8ff6481f8ff1a82f8ff6a82f8ff4086f8ffaaadf9fffaadf9ffd0b1f9ff06fbffff m_ExpandedIDs: 7a26fcff0c3dfcff1e3dfcff303dfcff543dfcff963efcffe43efcfff83efcff1e40fcff7240fcff1845fcff6a0ffdff980ffdffd025fdff8cd6fdffbad6fdfff2ecfdff4cf0fdffc2f0fdffa6f1feffd4f1feffae08fffff6faffffb2c10000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -689,7 +814,7 @@ MonoBehaviour: ...@@ -689,7 +814,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 0 m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 8} m_ClientGUIView: {fileID: 11}
m_SearchString: m_SearchString:
m_ExpandedScenes: [] m_ExpandedScenes: []
m_CurrenRootInstanceID: 0 m_CurrenRootInstanceID: 0
...@@ -697,7 +822,7 @@ MonoBehaviour: ...@@ -697,7 +822,7 @@ MonoBehaviour:
m_IsLocked: 0 m_IsLocked: 0
m_CurrentSortingName: TransformSorting m_CurrentSortingName: TransformSorting
m_WindowGUID: 4c969a2b90040154d917609493e03593 m_WindowGUID: 4c969a2b90040154d917609493e03593
--- !u!114 &14 --- !u!114 &18
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -758,7 +883,7 @@ MonoBehaviour: ...@@ -758,7 +883,7 @@ MonoBehaviour:
friendlyName: Apple iPhone 13 Pro Max friendlyName: Apple iPhone 13 Pro Max
networkReachability: 1 networkReachability: 1
systemLanguage: 10 systemLanguage: 10
--- !u!114 &15 --- !u!114 &19
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -813,9 +938,9 @@ MonoBehaviour: ...@@ -813,9 +938,9 @@ MonoBehaviour:
m_IsLocked: 0 m_IsLocked: 0
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 179} scrollPos: {x: 0, y: 179}
m_SelectedIDs: 9eae0000 m_SelectedIDs: 62ba0000
m_LastClickedID: 44702 m_LastClickedID: 47714
m_ExpandedIDs: 0000000070ae000072ae000074ae000076ae000078ae00007aae00007cae000000ca9a3bffffff7f m_ExpandedIDs: 00000000b8ae0000baae0000bcae0000beae0000c0ae0000c2ae0000c4ae000000ca9a3bffffff7f
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -831,7 +956,7 @@ MonoBehaviour: ...@@ -831,7 +956,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 10} m_ClientGUIView: {fileID: 13}
m_SearchString: m_SearchString:
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
...@@ -843,7 +968,7 @@ MonoBehaviour: ...@@ -843,7 +968,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 0000000070ae000072ae000074ae000076ae000078ae00007aae00007cae0000 m_ExpandedIDs: 00000000b8ae0000baae0000bcae0000beae0000c0ae0000c2ae0000c4ae0000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -870,7 +995,7 @@ MonoBehaviour: ...@@ -870,7 +995,7 @@ MonoBehaviour:
m_ListAreaState: m_ListAreaState:
m_SelectedInstanceIDs: m_SelectedInstanceIDs:
m_LastClickedInstanceID: 0 m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 0 m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c62300000000000096d2000090d20000 m_ExpandedInstanceIDs: c62300000000000096d2000090d20000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
...@@ -887,7 +1012,7 @@ MonoBehaviour: ...@@ -887,7 +1012,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 10} m_ClientGUIView: {fileID: 13}
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
m_InstanceID: 0 m_InstanceID: 0
...@@ -899,7 +1024,7 @@ MonoBehaviour: ...@@ -899,7 +1024,7 @@ MonoBehaviour:
m_GridSize: 64 m_GridSize: 64
m_SkipHiddenPackages: 0 m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 207 m_DirectoriesAreaWidth: 207
--- !u!114 &16 --- !u!114 &20
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -929,7 +1054,7 @@ MonoBehaviour: ...@@ -929,7 +1054,7 @@ MonoBehaviour:
m_LastAppliedPresetName: Default m_LastAppliedPresetName: Default
m_SaveData: [] m_SaveData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
--- !u!114 &17 --- !u!114 &21
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment