mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-05-11 01:44:48 -04:00
9 lines
184 B
GDScript
9 lines
184 B
GDScript
extends ViewportContainer
|
|
|
|
|
|
func _on_ViewportContainer_mouse_entered() -> void:
|
|
Global.has_focus = true
|
|
|
|
|
|
func _on_ViewportContainer_mouse_exited() -> void:
|
|
Global.has_focus = false
|