Skip to main content

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

No prob. We are going to push a release this weekend most likely. Expect the feature to be in there 👍

Very sorry to write on a year old thread. Was this ever implemented? The cosonsole doesn't open using that key.

Try adding this to your def tick method:

def tick args
  if args.inputs.keyboard.c
    args.gtk.console.show
  end
end

The code above should bring up the console if you press c on your keyboard. :-)

So I should add this to every project I make?