Deygus
(SkywolfGames)
1
So I created an android game with a Simple Tutorial Image as a Widget to display when the player starts the game but I realized a problem…
The issue I’m having is that when it fires I noticed it happens every time the game is started. I tried a do once node but that didn’t seem to work.
Can someone help advise me on how to fix this issue?
Everynone
(Everynone)
2
The issue I’m having is that when it
fires I noticed it happens every time
the game is started. I tried a do once
node but that didn’t seem to work.
You’ll need to do more than this. You will need to save that data - look into Save Game object.
- create a boolean variable to indicate whether the tutorial has been shown already
- once the tutorial has been shown, set the above var to True, save into the Save Game object
- whenever the game boots, load the data to check the status of the flag and then either show the tut or not based on its value