mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-20 01:59:49 +00:00
10 lines
184 B
GDScript3
10 lines
184 B
GDScript3
|
extends ViewportContainer
|
||
|
|
||
|
|
||
|
func _on_ViewportContainer_mouse_entered() -> void:
|
||
|
Global.has_focus = true
|
||
|
|
||
|
|
||
|
func _on_ViewportContainer_mouse_exited() -> void:
|
||
|
Global.has_focus = false
|