1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-02-08 03:19:49 +00:00
Pixelorama/src/UI/Canvas/Previews.gd

18 lines
310 B
GDScript3
Raw Normal View History

extends Node2D
func _input(event: InputEvent) -> void:
if Global.has_focus:
if (
event is InputEventMouse
or event.is_action("shift")
or event.is_action("ctrl")
or event.is_action("alt")
):
update()
func _draw() -> void:
if Global.has_focus and Global.can_draw:
Tools.draw_preview()