Game Development Community

Cannot access world creator.

by Sandy Love · in Torque Game Engine Advanced · 01/29/2009 (6:27 am) · 4 replies

I've been working on a project for a couple of weeks and now for some reaon I cannot access world creator when I press f11 or exit when I press escape. I've tried another keyboard so that isn't the problem. Is there another way to access world creator?

#1
01/29/2009 (6:41 am)
You haven't accidentally removed/commented out the binding for it have you, or maybe popped the GlobalActionMap? The bind call for F11 is in creator/editor/editor.cs.
#2
01/29/2009 (6:57 am)
//------------------------------------------------------------------------------
// The editor action maps are defined in editor.bind.cs
GlobalActionMap.bind(keyboard, "f11", toggleEditor);

This? It isn't commented out but is there anywhere else that I might have effected it?
#3
01/29/2009 (7:17 am)
Are you calling GlobalActionMap.pop() anywhere? Escape and F11 are both part of the GlobalActionMap so its likely that whatever the issue is its responsible for both.

If you aren't popping the map are there any errors in the console?
#4
01/29/2009 (7:18 am)
Aha! yeah it was commented it out. Thanks a lot!