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); }