Godot API Controls Focus

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By brainsick
:warning: Old Version Published before Godot 3 was released.

Does Godot expose any kind of tab order / ui indexing options via its API? The editor allows me to tab through many of the controls, so Godot has the concept. I don’t see any corresponding options in any of the controls exposed via the API though.

It seems easy enough to roll your own, I just didn’t want to reinvent the wheel.

:bust_in_silhouette: Reply From: brainsick

I found the relevant part of the documentation dealing with focus.

It covers next/previous tabbing and even supports top/bottom/left/right movement via keyboard/controller. Seems pretty robust.