Hi mates, in the making of my RPG game i realize that when i test it on iPhone the layout of my game starts then a few seconds later loads all my global variables, im looking for a way to wait until all my globals are set then start the Level layout
The case is something like this:
Global HeroHP int 100
Global HeroHPKey Text HeroHPKey is for LocalStorage
So initialize LocalStorage, and assign to HeroHPKey the value HeroHp = 100 with this value set i'm making a HealthBar like HealthBar set With = HeroHp
Now the issue when the Level starts on iPhone it took some seconds until the HealthBar goes from With 0 to 100 and i don't know how to fix this
On my Level Layout
I have "On Start Layout"
Set HealthBar With = HeroHealthBar
And "Everytick"
Set HealthBar With = HeroHealthBar
Thanks in advance