2008-01-02 21:49:43 +00:00
|
|
|
/******************************************\
|
|
|
|
Doom Builder Actions Configuration
|
|
|
|
\******************************************/
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// This just defines which actions there are, what description they have and
|
|
|
|
// some behaviour options. The Doom Builder core will bind to these actions
|
|
|
|
// with delegates (function pointers) where you use the BeginAction and
|
|
|
|
// EndAction attributes.
|
|
|
|
|
|
|
|
// Behaviour options:
|
|
|
|
//
|
|
|
|
// allowkeys: Allows the user to bind standard keys to this action.
|
|
|
|
// allowmouse: Allows the user to bind mouse buttons to this action.
|
|
|
|
// allowscroll: Allows the user to bind the scrollwheel to this action.
|
|
|
|
// disregardshift: This action will be triggered regardless if Shift or Control are used.
|
|
|
|
// repeat: BeginAction will be called for automatic key repetition.
|
|
|
|
//
|
|
|
|
// allowkeys and allowmouse are true by default, the others are false by default.
|
|
|
|
//
|
2008-01-02 21:49:43 +00:00
|
|
|
|
|
|
|
verticesmode
|
|
|
|
{
|
|
|
|
title = "Edit: Vertices Mode";
|
|
|
|
description = "Switches to vertices editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
linedefsmode
|
|
|
|
{
|
|
|
|
title = "Edit: Linedefs Mode";
|
|
|
|
description = "Switches to linedefs editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
sectorsmode
|
|
|
|
{
|
|
|
|
title = "Edit: Sectors Mode";
|
|
|
|
description = "Switches to sectors editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
thingsmode
|
|
|
|
{
|
|
|
|
title = "Edit: Things Mode";
|
|
|
|
description = "Switches to things editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
2008-04-20 22:54:24 +00:00
|
|
|
drawlinesmode
|
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
title = "2D: Draw Lines";
|
|
|
|
description = "Starts drawing lines. See the Drawing category for actions available during drawing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
drawpoint
|
|
|
|
{
|
|
|
|
title = "Drawing: Draws Vertex";
|
|
|
|
description = "Draws a vertex at the mousecursor position.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
disregardshift = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
removepoint
|
|
|
|
{
|
|
|
|
title = "Drawing: Remove Previous Vertex";
|
|
|
|
description = "Removes the previously drawn vertex from the drawing session.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
finishdraw
|
|
|
|
{
|
|
|
|
title = "Drawing: Finish Drawing";
|
|
|
|
description = "Finishes the drawing and creates the geometry.";
|
2008-04-20 22:54:24 +00:00
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
2008-01-04 00:16:58 +00:00
|
|
|
visualmode
|
|
|
|
{
|
|
|
|
title = "Edit: Visual Mode";
|
|
|
|
description = "Switches to visual editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
2008-01-02 21:49:43 +00:00
|
|
|
wauthormode
|
|
|
|
{
|
|
|
|
title = "Edit: WadAuthor Mode";
|
|
|
|
description = "Switches to Wad Author editing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
2008-01-18 19:52:19 +00:00
|
|
|
|
|
|
|
triangulatormode
|
|
|
|
{
|
|
|
|
title = "Edit: Triangulator Mode";
|
|
|
|
description = "Switches to Triangulator testing mode.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
debugonly = true;
|
|
|
|
}
|
2008-05-15 12:36:55 +00:00
|
|
|
|
|
|
|
fliplinedefs
|
|
|
|
{
|
|
|
|
title = "Linedefs: Flip Linedefs";
|
|
|
|
description = "This flips the selected linedefs around and keeps sidedefs on the correct side.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
flipsidedefs
|
|
|
|
{
|
|
|
|
title = "Linedefs: Flip Sidedefs";
|
|
|
|
description = "This flips the sidedefs on the selected linedefs around, keeping the line in the same direction.";
|
|
|
|
allowkeys = true;
|
|
|
|
allowmouse = true;
|
|
|
|
allowscroll = true;
|
|
|
|
}
|