mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2026-01-09 01:45:37 +07:00
Compare commits
3 Commits
versions/1
...
versions/1
| Author | SHA1 | Date | |
|---|---|---|---|
| bee56e75a9 | |||
| 7ba00a7e9a | |||
| 545eacdaf8 |
BIN
Assets/DevTests/Animations/AlphaTests/Tortuga/hero_pirate.fla
Normal file
BIN
Assets/DevTests/Animations/AlphaTests/Tortuga/hero_pirate.fla
Normal file
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 55c438c941e894f25bb2b0527ee72f7c
|
||||
timeCreated: 1486989506
|
||||
licenseType: Free
|
||||
DefaultImporter:
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,3 +1,9 @@
|
||||
-------------------
|
||||
-- Version 1.3.3 --
|
||||
-------------------
|
||||
|
||||
Fix undefined unusedItems in CS6
|
||||
|
||||
-------------------
|
||||
-- Version 1.3.2 --
|
||||
-------------------
|
||||
|
||||
@@ -297,12 +297,14 @@
|
||||
ftdoc.remove_unused_items = function (doc) {
|
||||
ft.type_assert(doc, Document);
|
||||
var unused_items = doc.library.unusedItems;
|
||||
ft.array_reverse_foreach(unused_items, function(item) {
|
||||
if (ft.verbose_mode) {
|
||||
ft.trace_fmt("Remove unused item: {0}", item.name);
|
||||
}
|
||||
doc.library.deleteItem(item.name);
|
||||
});
|
||||
if (unused_items && unused_items !== undefined) {
|
||||
ft.array_reverse_foreach(unused_items, function(item) {
|
||||
if (ft.verbose_mode) {
|
||||
ft.trace_fmt("Remove unused item: {0}", item.name);
|
||||
}
|
||||
doc.library.deleteItem(item.name);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
ftdoc.unlock_all_timelines = function (doc) {
|
||||
|
||||
Reference in New Issue
Block a user