Show object in the first time running

Hello,

I’m making a tutorial to my game and i want it to be shown only when it’s the first time.

It is heavily dependant on how you design your game and tutorial. Here are some general ways:

-You could declare a static bool (i.e. “completedTutorial”). Before you load/play the tutorial you check that bool, if it’s true, then the tutorial won’t be initialised.

-You could have an extra menu-button to trigger the initlization of the tutorial

-You could have the tutorial (if it’s a level) as the very start of your game, and make it not available after passing it

Now, there may be even more ways to handle that issue, but these the 3 methods I thought of initially.

Greets!