How to make help scene

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By vbdev

Hello,

I want to add “How to play” scene in my game. I am stuck up in determining the nodes to use.

The help scene may have 3/4 screens, which will have skip, next & finish buttons. By pressing next button every time, the scene contents will be changed. How can I add all these screens in a single scene? Is TabContainer a proper node to implement it. If yes how can I hide the tab buttons on top?

Thanks!

:bust_in_silhouette: Reply From: exuin

You don’t have to use tabs if you don’t want to. You can just have 3-4 different Control nodes as children of the root node and hide and show them whenever the player presses a button. Just keep track of which node is currently visible and hide it and show the next one when the next button is pressed.

Ohh… thanks, it is so simple. I was worrying unnecessarily.
Thank you very much for your reply.

vbdev | 2021-05-27 17:01