mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-03-15 07:45:19 +00:00
* Preview blend modes No support for exporting and layer merging yet. Also need to fix the move tool preview. * Preview blend modes on tile mode * Raise layer limit to 1024 * Export images with layer blending modes * Save blend modes in pxo files * Merge layers with blending modes * Fix crash when adding a new layer * Preview blending in the other canvases * Update DrawingAlgos.gd * Move tool preview * Re-arrange blend menu and add lighten, darken, linear burn and exclusion * Add divide blend mode * Add hue, saturation, color & luminosity blend modes * Undo/redo when changing blend modes
9 lines
211 B
GDScript
9 lines
211 B
GDScript
extends Node2D
|
|
|
|
|
|
func _draw() -> void:
|
|
# Placeholder so we can have a material here
|
|
draw_texture(
|
|
Global.current_project.frames[Global.current_project.current_frame].cels[0].image_texture,
|
|
Vector2.ZERO
|
|
)
|