mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-08 11:29:47 +00:00
8 lines
253 B
GDScript3
8 lines
253 B
GDScript3
|
extends ConfirmationDialog
|
||
|
|
||
|
|
||
|
func _on_ResizeCanvas_confirmed() -> void:
|
||
|
var width : int = $VBoxContainer/OptionsContainer/WidthValue.value
|
||
|
var height : int = $VBoxContainer/OptionsContainer/HeightValue.value
|
||
|
DrawingAlgos.resize_canvas(width, height)
|