1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-03-15 15:55:18 +00:00
Pixelorama/src/UI/Canvas/Previews.gd

12 lines
198 B
GDScript3
Raw Normal View History

extends Node2D
func _input(event: InputEvent) -> void:
2024-01-24 03:06:09 +02:00
if event is InputEventMouse or event is InputEventKey:
queue_redraw()
func _draw() -> void:
2024-01-24 03:06:09 +02:00
if Global.can_draw:
Tools.draw_preview()