2023-11-22 18:35:54 +02:00
|
|
|
extends Event
|
2024-03-17 01:14:31 +02:00
|
|
|
## Emitted when a Node with the `ui_focus` group is focused or unfocused.
|
2023-11-22 18:35:54 +02:00
|
|
|
class_name EventFocus
|
|
|
|
|
2024-03-17 01:14:31 +02:00
|
|
|
## The Node that is being focused or unfocused.
|
2023-11-22 18:35:54 +02:00
|
|
|
var target: Node
|
2024-03-17 01:14:31 +02:00
|
|
|
## The Node that was previously focused or unfocused.
|
2023-11-22 18:35:54 +02:00
|
|
|
var previous_target: Node
|