mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-28 06:32:25 +00:00
52 lines
1.1 KiB
INI
52 lines
1.1 KiB
INI
|
/******************************************\
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
wauthormode
|
||
|
{
|
||
|
title = "Edit: WadAuthor Mode";
|
||
|
description = "Switches to Wad Author editing mode.";
|
||
|
allowkeys = true;
|
||
|
allowmouse = true;
|
||
|
allowscroll = true;
|
||
|
}
|