Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

In Source 2 games the console can be accessed with that key, so it sounds good to me. 

Thanks a lot for the fast response! 

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?