Game Development Community

How To make KeyPad Configuration Menu

by Michael S · in Torque Game Builder · 07/10/2007 (11:55 am) · 3 replies

I tried to make Keyboard Configuration Menu
( This menu is made so User can change keyboard key manually )

The problem is how we can read Key and pass it to variable

For example in C++

Char key;
key = getch () ===> The Keyboard input is stored in Variable Key


Thanks

#1
07/11/2007 (7:25 pm)
Michael, you would use a Gui Input control to read the keys, check out the code for the Key-Bindings portions of the stock Options GUI.


#2
07/12/2007 (4:12 pm)
What David said ...
#3
07/17/2007 (3:10 am)
Thx a lot David