Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

DAY 7 CONTINUED

I think I have to add some explanation on how to play the game. Maybe it doesnt looks nice but it was quick and easy thing  to do.


This kind of typing effect can be achieved with a Coroutine:

        private IEnumerator DisplayHelpText(string text)
        {
            for (int i = 0; i < text.Length; i++)
            {
                char letter = text[i];
                _textHelp.text += letter;
                yield return new WaitForSeconds(_displayCharacterSpeed);
            }
            _closeHelpTextButton.gameObject.SetActive(true);
        }

it looking quite good, I love the staggered text display :D

Thanks! :)