Game Development Community

Mouse Movment

by Taylor Petrick · in Torque Game Engine · 08/18/2007 (2:28 am) · 3 replies

While doing some engine modding, I somehow un-mapped the mouse. Now, I can run, zoom, etc while in-game, however I can not look around with the mouse nor shoot with left mouse click. Where do I re-assign the mouse to preform these actions?

PS, I check options|controls already, looks good in there. Also, the mouse works in the GUI, just not the game itself.

#1
08/19/2007 (11:26 am)
Make sure your GUI has noCursor = "1" at the top
#2
08/19/2007 (3:48 pm)
Check the nocursor property in your GUI :

new GameTSCtrl(PlayGui) {
.. .
.
.

.
nocursor = "1";

};
#3
08/19/2007 (9:22 pm)
I figured out what it was. I did some mods to playGui.gui and accidentaly took out a line that should have been in there. The nocursor line. Thanks for the help guys.