Sub Title for Tabs on the TabContainer ?

Godot Version

Godot 4.5.1

Question

Hi everyone,

I was exploring and experimenting with using the “TabContainer” node, trying to replicate the UI of the game Pathfinder WotR (Image ref 1).

I noticed that it’s possible to change the title of each tab without any problem, but I can’t find a way to add a subtitle (Image ref 2). Is it possible to do this with TabContainer, or would I need to create a tab system from scratch?

Thank you in advance for your help and attention.

I don’t think there’s a native way of doing it but..

Maybe you can inject the extra Control node for the subtitles on runtime in a ready function by using get_tab_control(tab_idx: int) method of tabcontainer.

1 Like