Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

My game starts with an in-game cut scene while not having any conversation/dialog/message box, and the controls just appeared by default. I feel like I need to hide it first before we get to the tutorial passage etc.

Ok! You can try this on a script call field, to hide:

Eli.MobileControls.hideButtons()
Eli.MobileControls.controlButton.hide()

And these ones, to show:

Eli.MobileControls.showButtons()
Eli.MobileControls.controlButton.show()

Let me know if it helps you!

Thanks~! I’ll try it later.