how can i disabled focus_mode on all my child node(button type)?
what i want to do is when i pause tree. i dont want focus on node that did't process at that time.
for example i want to disable focus all child(button type) of node "stats"

there other way than group all node child then disabled it like this?
func _on_pause_pressed() -> void:
get_node("style").pause_mode =Node.PAUSE_MODE_PROCESS
get_tree().paused = true
for x in get_tree().get_nodes_in_group("stats_child"):
x.focus_mode = 0