2008-01-02 21:49:43 +00:00
|
|
|
/******************************************\
|
|
|
|
Doom Builder Actions Configuration
|
|
|
|
\******************************************/
|
|
|
|
|
|
|
|
// This just defines which actions there are and what description they have
|
|
|
|
// The source code will bind to these actions with delegates (function pointers)
|
|
|
|
|
|
|
|
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-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;
|
|
|
|
}
|