mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 06:20:55 +00:00
sprite export fix (missing objects)
This commit is contained in:
@@ -360,9 +360,9 @@ public class Timeline {
|
||||
for (ASMSource asm : asmSources) {
|
||||
if (asm instanceof DoInitActionTag) {
|
||||
DoInitActionTag initAction = (DoInitActionTag) asm;
|
||||
CharacterTag cht=swf.getCharacter(initAction.spriteId);
|
||||
String path = cht!=null?cht.getExportName():"_unk_";
|
||||
if (path == null || path.isEmpty()) {
|
||||
String path = swf.getExportName(initAction.spriteId);
|
||||
path = path != null ? path : "_unk_";
|
||||
if (path.isEmpty()) {
|
||||
path = initAction.getExportFileName();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user