From a5efb97d58dd72ec79a4c1e9a0ea2ff066e9776b Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Tue, 10 Sep 2024 02:03:07 +0300 Subject: [PATCH] Set the group layer's default blend mode to Pass through Mostly for performance reasons, but also to make it consistent with Photoshop and Photopea --- src/Classes/Layers/GroupLayer.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Classes/Layers/GroupLayer.gd b/src/Classes/Layers/GroupLayer.gd index d31c49ead..49d2b7928 100644 --- a/src/Classes/Layers/GroupLayer.gd +++ b/src/Classes/Layers/GroupLayer.gd @@ -8,6 +8,7 @@ var expanded := true func _init(_project: Project, _name := "") -> void: project = _project name = _name + blend_mode = BlendModes.PASS_THROUGH ## Blends all of the images of children layer of the group layer into a single image.