mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 13:05:31 +00:00
Change convolution filter default values
This commit is contained in:
@@ -72,7 +72,7 @@ public class CONVOLUTIONFILTER extends FILTER {
|
||||
/**
|
||||
* Default color for pixels outside the image
|
||||
*/
|
||||
public RGBA defaultColor = new RGBA(Color.BLACK);
|
||||
public RGBA defaultColor = new RGBA(0, 0, 0, 0);
|
||||
|
||||
@Reserved
|
||||
@SWFType(value = BasicType.UB, count = 6)
|
||||
@@ -81,12 +81,12 @@ public class CONVOLUTIONFILTER extends FILTER {
|
||||
/**
|
||||
* Clamp mode
|
||||
*/
|
||||
public boolean clamp;
|
||||
public boolean clamp = true;
|
||||
|
||||
/**
|
||||
* Preserve the alpha
|
||||
*/
|
||||
public boolean preserveAlpha;
|
||||
public boolean preserveAlpha = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
||||
Reference in New Issue
Block a user