Changeset 8079 for code/trunk/data/gui/scripts/KeyBindMenu.lua
- Timestamp:
- Mar 15, 2011, 9:47:11 PM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/data/gui/scripts/KeyBindMenu.lua
r7403 r8079 26 26 table.insert(commandList, "NewHumanController changeMode") 27 27 table.insert(commandList, "switchCamera") 28 table.insert(commandList, " openConsole")28 table.insert(commandList, "InGameConsole openConsole") 29 29 table.insert(commandList, "OverlayGroup toggleVisibility Debug") 30 30 table.insert(commandList, "OverlayGroup toggleVisibility Stats") … … 35 35 table.insert(commandList, "mouseLook") 36 36 table.insert(commandList, "pause") 37 table.insert(commandList, "printScreen") 38 if orxonox.GUIManager:inDevMode() then 39 table.insert(commandList, "printScreenHD 3") 40 end 37 41 38 42 nameList = {} … … 65 69 table.insert(nameList, "Look Around") 66 70 table.insert(nameList, "Pause") 71 table.insert(nameList, "Screenshot") 72 if orxonox.GUIManager:inDevMode() then 73 table.insert(nameList, "HD screenshot") 74 end 67 75 68 76 linesList = {} … … 100 108 local funct = luaState:createLuaFunctor("KeyBindMenu.callback()") 101 109 orxonox.KeyBinderManager:getInstance():registerKeybindCallback(funct) 110 111 P:setButton(1, 1, { 112 ["button"] = winMgr:getWindow("orxonox/KeyBindBackButton"), 113 ["callback"] = P.KeyBindBackButton_clicked 114 }) 102 115 end 103 116
Note: See TracChangeset
for help on using the changeset viewer.