Add log message about successfully converting

This commit is contained in:
2019-03-22 14:15:57 +07:00
parent 2161b38432
commit a2016ee01f
3 changed files with 6 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
* Add bitmap trimming
* Fix preview leaks in the Editor mode
* Add warning notes about outdated assets
* Add log message about successfully converting
###### Version 1.3.14
* Fix 2018.3.2f1 compilation

View File

@@ -42,6 +42,10 @@ namespace FTEditor.Postprocessors {
if ( asset.Atlas ) {
ConfigureAtlas(asset);
ConfigureClips(asset, asset_data);
Debug.LogFormat(
asset,
"<b>[FlashTools]</b> SwfAsset has been successfully converted:\nPath: {0}",
AssetDatabase.GetAssetPath(asset));
} else {
_progressBar.UpdateTitle(asset.name);
var new_data = ConfigureBitmaps(asset, asset_data);