1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00

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
This commit is contained in:
Emmanouil Papadeas 2024-09-10 02:03:07 +03:00
parent f9dd09dc2c
commit a5efb97d58

View file

@ -8,6 +8,7 @@ var expanded := true
func _init(_project: Project, _name := "") -> void: func _init(_project: Project, _name := "") -> void:
project = _project project = _project
name = _name name = _name
blend_mode = BlendModes.PASS_THROUGH
## Blends all of the images of children layer of the group layer into a single image. ## Blends all of the images of children layer of the group layer into a single image.