Skip to main content

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

Hi there!

On regular and Dpad type buttons, you can specify a condition for the buttons to show on the plugin parameter.

If you want it to not show on the maps, you can use this:

return !([10, 20, 35].includes($gameMap.mapId()))

This will return true, if the current map id is not any of those listed inside the brackets. So just keep listing the map ids you do not want to show the buttons.

Another way is hide/show by using script calls:

Eli.MobileControls.hideButtons()

or

Eli.MobileControls.showButtons()

thx for the reply :),   ive found a side B solution with a paralel event with this script call on it

Eli.MobileControls.showButtons()
Eli.MobileControls.parameters.disableScreenMove = true;

Nice! Have fun :)