Deleting Objects?
by Joshua Brown · in Torque Game Engine · 05/30/2008 (2:57 pm) · 8 replies
Ok, so I'm a little embarrased at the simplicity of my question... but I just started developing on the mac platform. And for the life of me... I cannot get the delete button to delete. I select and object and press delete, nothing. Now, I know I can just go into the menu and click the delete option, but in GUI editor this option is not available. Also, what are the shortcuts for save/copy/paste? Because I havn't been able to get those to work either.
-Josh
-Josh
About the author
#2
-Josh
06/25/2008 (10:20 pm)
Ok, well I'm on a laptop so I don't have all those keen options. I'm actually having to... not use Torque because of my issues. Any ideas?-Josh
#3
EditorMenuBar.addMenuItem("World", "Delete Selection", 17, "Delete");
to
EditorMenuBar.addMenuItem("World", "Delete Selection", 17, "Backspace");
06/26/2008 (2:24 pm)
In creator/editor/EditorGui.cs change the line:EditorMenuBar.addMenuItem("World", "Delete Selection", 17, "Delete");
to
EditorMenuBar.addMenuItem("World", "Delete Selection", 17, "Backspace");
#4
-Josh
06/26/2008 (8:42 pm)
Hey that does it! Now all we need is for SOMEONE to release a mac optimized EditorGui.cs file... hmmm... Maybe I'll look into it.-Josh
#5
06/29/2008 (1:52 pm)
What else would you like to see done? I don't use the world editor much right now but have been working a lot on gui stuff (making an AI Editor) so I'm sure I could knock one out real quick if I knew what bugs there were...
#6
-Josh
06/29/2008 (9:28 pm)
Well, I suppose just make it more mac friendly in general. For instance, I cannot use cmd-c or v. And there may be others that I haven't noticed or remembered.-Josh
#7
06/29/2008 (11:32 pm)
I've got F-keys occupied with all sorts of useful system things, like volume and widgets. There really should be a hotkey settings menu for the users to choose the editor hotkeys.
#8
06/29/2008 (11:42 pm)
Ah yes, I forgot about that, I ended up re-assigning some function keys.... and I reverted them back to the way I had it. I just use them too much to change them for Torque.
Torque Owner Eyal Erez