Compare commits

...

3 Commits

Author SHA1 Message Date
df364244b4 fix multiple import 2017-02-24 02:13:55 +07:00
5012b53ac1 fix single frame optimization 2017-02-24 00:28:56 +07:00
b7e026e8ff Added tag versions/1.3.6 for changeset 9df7b359e92b 2017-02-17 22:37:05 +07:00
8 changed files with 26 additions and 2 deletions

0
.projectile Normal file
View File

View File

@@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 2d8762b6bff92457aa59aaf03193018c
folderAsset: yes
timeCreated: 1487860932
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d481c08b811dc41eda079968a32efbb9
timeCreated: 1487860937
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +1,7 @@
###### Version 1.3.7
* Fix multiple import
* Fix single frame optimization
###### Version 1.3.6
* Fix for scale very small vector items
* Big vector item optimization

View File

@@ -564,6 +564,7 @@
new_item_elem.transformX = 0;
new_item_elem.transformY = 0;
ftdoc.convert_selection_to_bitmap(doc, item);
doc.exitEditMode();
return true;
} else {
doc.exitEditMode();

View File

@@ -24,8 +24,9 @@ namespace FTEditor.Postprocessors {
.Select(p => AssetDatabase.LoadAssetAtPath<SwfAsset>(p))
.Where(p => !!p);
foreach ( var asset in assets ) {
var asset_copy = asset;
EditorApplication.delayCall += () => {
SwfAssetProcess(asset);
SwfAssetProcess(asset_copy);
AssetDatabase.SaveAssets();
};
}

View File

@@ -32,8 +32,9 @@ namespace FTEditor.Postprocessors {
EditorUtility.DisplayDialog(title, message, "Ok");
} else {
foreach ( var swf_path in swf_paths ) {
var swf_path_copy = swf_path;
EditorApplication.delayCall += () => {
SwfFileProcess(swf_path);
SwfFileProcess(swf_path_copy);
AssetDatabase.SaveAssets();
};
}