From 0e6ad875c54038b3eea1ef501cfa473383916f62 Mon Sep 17 00:00:00 2001 From: yangjing Date: Wed, 31 Aug 2022 19:47:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=92=88=E5=AF=B9233=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Plugins/ExcelDll/EPPlus.dll.meta | 41 ++++++++++++++++++- Assets/Plugins/ExcelDll/Excel.dll.meta | 41 ++++++++++++++++++- .../ExcelDll/ICSharpCode.SharpZipLib.dll.meta | 41 ++++++++++++++++++- Assets/Scripts/Storage/PlayerData.cs | 3 ++ 4 files changed, 120 insertions(+), 6 deletions(-) diff --git a/Assets/Plugins/ExcelDll/EPPlus.dll.meta b/Assets/Plugins/ExcelDll/EPPlus.dll.meta index 7968599c..47a958db 100644 --- a/Assets/Plugins/ExcelDll/EPPlus.dll.meta +++ b/Assets/Plugins/ExcelDll/EPPlus.dll.meta @@ -11,17 +11,54 @@ PluginImporter: isExplicitlyReferenced: 0 validateReferences: 1 platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 0 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude WebGL: 1 + Exclude Win: 1 + Exclude Win64: 1 + Exclude iOS: 1 - first: Any: second: - enabled: 1 + enabled: 0 settings: {} - first: Editor: Editor second: - enabled: 0 + enabled: 1 settings: DefaultValueInitialized: true + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None - first: Windows Store Apps: WindowsStoreApps second: diff --git a/Assets/Plugins/ExcelDll/Excel.dll.meta b/Assets/Plugins/ExcelDll/Excel.dll.meta index 14b1161b..e638f6e4 100644 --- a/Assets/Plugins/ExcelDll/Excel.dll.meta +++ b/Assets/Plugins/ExcelDll/Excel.dll.meta @@ -11,17 +11,54 @@ PluginImporter: isExplicitlyReferenced: 0 validateReferences: 1 platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 0 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude WebGL: 1 + Exclude Win: 1 + Exclude Win64: 1 + Exclude iOS: 1 - first: Any: second: - enabled: 1 + enabled: 0 settings: {} - first: Editor: Editor second: - enabled: 0 + enabled: 1 settings: DefaultValueInitialized: true + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None - first: Windows Store Apps: WindowsStoreApps second: diff --git a/Assets/Plugins/ExcelDll/ICSharpCode.SharpZipLib.dll.meta b/Assets/Plugins/ExcelDll/ICSharpCode.SharpZipLib.dll.meta index eb7ddbc3..8a0cb109 100644 --- a/Assets/Plugins/ExcelDll/ICSharpCode.SharpZipLib.dll.meta +++ b/Assets/Plugins/ExcelDll/ICSharpCode.SharpZipLib.dll.meta @@ -11,17 +11,54 @@ PluginImporter: isExplicitlyReferenced: 0 validateReferences: 1 platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 0 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude WebGL: 1 + Exclude Win: 1 + Exclude Win64: 1 + Exclude iOS: 1 - first: Any: second: - enabled: 1 + enabled: 0 settings: {} - first: Editor: Editor second: - enabled: 0 + enabled: 1 settings: DefaultValueInitialized: true + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None - first: Windows Store Apps: WindowsStoreApps second: diff --git a/Assets/Scripts/Storage/PlayerData.cs b/Assets/Scripts/Storage/PlayerData.cs index 6b6e1863..215b8307 100644 --- a/Assets/Scripts/Storage/PlayerData.cs +++ b/Assets/Scripts/Storage/PlayerData.cs @@ -209,6 +209,9 @@ public class PlayerData : StorageBase #region guide public bool CheckGuide(int pIndex) { + if (mLoginCount > 1 || mCurrentLevel > 1) + return true; + return mFinishedGuideIndex.Contains(pIndex); }