1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-21 17:56:08 +08:00

Fix for DemiLib layout updater

This commit is contained in:
Demigiant 2015-12-06 17:55:24 +01:00
parent 12d7b6d707
commit 2f0c080c62
43 changed files with 7 additions and 5 deletions

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ ExternalPluginsTestsAndExamples*
zz builds
zz UnityTests*
*.tmp
*.pdb

View File

@ -32,7 +32,7 @@ namespace DG.Tweening
public class DOTween
{
/// <summary>DOTween's version</summary>
public static readonly string Version = "1.1.130";
public static readonly string Version = "1.1.135";
///////////////////////////////////////////////
// Options ////////////////////////////////////

View File

@ -111,11 +111,12 @@ namespace DG.DOTweenEditor.Core
adbDemiLibDir + "/Editor/Imgs"
});
// Delete Editor folder if empty
if (AssetExists(adbDemiLibDir + "/Editor") && Directory.GetFiles(demiLibDir + slash + "Editor").Length == 0)
if (AssetExists(adbDemiLibDir + "/Editor") && Directory.GetFiles(demiLibDir + slash + "Editor").Length == 0) {
AssetDatabase.DeleteAsset(adbDemiLibDir + "/Editor");
// Reimport correct Core libraries
AssetDatabase.ImportAsset(demiLibNewCoreDir, ImportAssetOptions.ImportRecursive);
}
}
static void DeleteAssetsIfExist(string[] adbFilePaths)
{
foreach (string f in adbFilePaths) {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.