mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-03 19:14:19 +00:00
Issue #311 FLA Export BitmapFill fix
This commit is contained in:
@@ -296,6 +296,11 @@ public class XFLConverter {
|
||||
if (bitmapCh instanceof ImageTag) {
|
||||
ImageTag it = (ImageTag) bitmapCh;
|
||||
ret += "bitmap" + bitmapCh.getCharacterId() + "." + it.getImageFormat();
|
||||
}else{
|
||||
if(bitmapCh!=null){
|
||||
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:"+bitmapCh.getClass().getSimpleName());
|
||||
}
|
||||
return "<SolidColor color=\"#ffffff\" />";
|
||||
}
|
||||
ret += "\"";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user