Browse Source

- Fix

master
Seraph 4 years ago
parent
commit
06439a0218
  1. BIN
      Assets/Prototype/Core/CoreEditor.dll
  2. BIN
      Assets_DLL/Core/obj/Debug/netstandard2.0/Core.csproj.AssemblyReference.cache
  3. 5
      Assets_DLL/CoreEditor/CoreGUILayout.cs
  4. 5
      Assets_DLL/CoreEditor/IAP/PurchaseButtonEditor.cs
  5. 6
      Assets_DLL/CoreEditor/Localization/TextLocalizatorEditor.cs
  6. BIN
      Assets_DLL/CoreEditor/obj/Debug/netstandard2.0/CoreEditor.csproj.AssemblyReference.cache
  7. BIN
      Assets_DLL/CoreEditor/obj/Debug/netstandard2.0/CoreEditor.dll
  8. BIN
      Builds/Core_1.8.unitypackage

BIN
Assets/Prototype/Core/CoreEditor.dll

Binary file not shown.

BIN
Assets_DLL/Core/obj/Debug/netstandard2.0/Core.csproj.AssemblyReference.cache

Binary file not shown.

5
Assets_DLL/CoreEditor/CoreGUILayout.cs

@ -24,6 +24,11 @@ namespace CoreEditor
scenes.Insert(0, sceneName);
currentIndex = 0;
}
else if (currentIndex < 0 && string.IsNullOrWhiteSpace(sceneName))
{
scenes.Insert(0, "None");
currentIndex = 0;
}
if (scenes.Count == 0)
{

5
Assets_DLL/CoreEditor/IAP/PurchaseButtonEditor.cs

@ -28,6 +28,11 @@ namespace CoreEditor.Localization
products.Insert(0, productId.stringValue);
currentIndex = 0;
}
else if (currentIndex < 0 && string.IsNullOrWhiteSpace(productId.stringValue))
{
products.Insert(0, "None");
currentIndex = 0;
}
if (products.Count == 0)
{

6
Assets_DLL/CoreEditor/Localization/TextLocalizatorEditor.cs

@ -25,6 +25,12 @@ namespace CoreEditor.Localization
keys.Insert(0, key.stringValue);
currentIndex = 0;
}
else if (currentIndex < 0 && string.IsNullOrWhiteSpace(key.stringValue))
{
keys.Insert(0, "None");
currentIndex = 0;
}
if (keys.Count == 0)
{

BIN
Assets_DLL/CoreEditor/obj/Debug/netstandard2.0/CoreEditor.csproj.AssemblyReference.cache

Binary file not shown.

BIN
Assets_DLL/CoreEditor/obj/Debug/netstandard2.0/CoreEditor.dll

Binary file not shown.

BIN
Builds/Core_1.8.unitypackage

Binary file not shown.
Loading…
Cancel
Save