mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-05 13:21:16 +00:00
very basic SVG import, no line/fill styles, only paths with constant color.
This commit is contained in:
@@ -2687,10 +2687,9 @@ public class SWFInputStream implements AutoCloseable {
|
||||
LINESTYLE ret = new LINESTYLE();
|
||||
newDumpLevel(name, "LINESTYLE");
|
||||
ret.width = readUI16("width");
|
||||
if ((shapeNum == 1) || (shapeNum == 2)) {
|
||||
if (shapeNum == 1 || shapeNum == 2) {
|
||||
ret.color = readRGB("color");
|
||||
}
|
||||
if (shapeNum == 3) {
|
||||
} else if (shapeNum == 3) {
|
||||
ret.color = readRGBA("color");
|
||||
}
|
||||
endDumpLevel();
|
||||
|
||||
Reference in New Issue
Block a user