Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

bitsy

a little engine for little games, worlds, and stories · By adam le doux

Any way to remove the title?

A topic by bambuloid created Oct 28, 2023 Views: 214 Replies: 2
Viewing posts 1 to 2

Hey there, guys! Just as the title says, I'm trying to remove the title screen of the game I'm working on. Removing the title part of the code doesn't seem to do the trick, because the text box then shows the current version of Bitsy. Any tips on what to do? Thanks in advance!

Find this part of the code:

function onready(startWithTitle) {

bitsy.log("game ready!");

if (startWithTitle === undefined || startWithTitle === null) {

startWithTitle = true;

}

And change startWithTitle to false, and it will jump to the first scene of the game. Hope this helps!

Thank you!!!