mirror of
https://github.com/Jusctsch5/ironsphererpg.git
synced 2026-01-19 19:44:45 +00:00
16 lines
629 B
C#
16 lines
629 B
C#
|
|
//-----------------------------------------------------------------------------
|
||
|
|
// Torque Game Engine
|
||
|
|
//
|
||
|
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
||
|
|
//-----------------------------------------------------------------------------
|
||
|
|
|
||
|
|
//------------------------------------------------------------------------------
|
||
|
|
// Mission Editor Manager
|
||
|
|
new ActionMap(EditorMap);
|
||
|
|
|
||
|
|
EditorMap.bindCmd(keyboard, "f1", "contextHelp();", "");
|
||
|
|
EditorMap.bindCmd(keyboard, "escape", "editor.close();", "");
|
||
|
|
EditorMap.bindCmd(keyboard, "i", "Canvas.pushDialog(interiorDebugDialog);", "");
|
||
|
|
|