Game Development Community

Bad Mouse Input

by John Stinson · in Torque Game Engine · 05/12/2008 (4:30 pm) · 4 replies

So I finished that tutorial but for some reason my person can look around. He stays fixed in one direction.

When I go back into the editor using F11, my player can move around normally. It only happens in the actual game. This normal?

Any idea how this happened or how I can fix it?

#1
05/12/2008 (4:32 pm)
Do you have nocursor set to false?
#2
05/12/2008 (7:11 pm)
Hmm...

No idea to tell you the truth, I wouldn't know where to look for that.

I've been searching thru all the GameOne files to find this or is this an engine thing?
#3
05/13/2008 (11:57 am)
To solve this problem forever, set it in your PlayGui.gui script after the //--- OBJECT WRITE END --- tag
(The editor doesn't write below this line. )

//--- OBJECT WRITE END ---
PlayGui.noCursor="1";
#4
05/13/2008 (1:04 pm)
Well, never said that comment, I'm still using 1.4 but I just added it at the very end.

Thanks.