1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Fix formatting

This commit is contained in:
Emmanouil Papadeas 2023-09-05 02:39:01 +03:00
parent 1901078d98
commit 8fb29e050e
3 changed files with 3 additions and 3 deletions

View file

@ -565,7 +565,7 @@ func notification_label(text: String) -> void:
control.add_child(notif)
func general_undo(project:= current_project) -> void:
func general_undo(project := current_project) -> void:
project.undos -= 1
var action_name := project.undo_redo.get_current_action_name()
notification_label("Undo: %s" % action_name)

View file

@ -34,7 +34,7 @@ func _input(event: InputEvent) -> void:
Vector2(0.5, 0.5)
)
var project_size: = Global.current_project.size
var project_size := Global.current_project.size
if Rect2(Vector2.ZERO, project_size).has_point(mouse_point):
visible = true
else:

View file

@ -14,7 +14,7 @@ var image_exports: Array[Export.FileFormat] = [
Export.FileFormat.GIF,
Export.FileFormat.APNG
]
var spritesheet_exports: Array[Export.FileFormat]= [
var spritesheet_exports: Array[Export.FileFormat] = [
Export.FileFormat.PNG, Export.FileFormat.WEBP, Export.FileFormat.JPEG
]