Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hello, Is it possible to do Name imputing and variables in this engine?

(+1)

Hi, it is not possible to get an input from the player, but you can have variables. 

The engine supports the ejs format avec provides an object named $state that persists between pages so you can write <% $state.name = "Paul" %> to set a variable called name inside $state and <%= $state.name %> to display it

Thank you!