Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

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?