mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
39 lines
1.2 KiB
INI
39 lines
1.2 KiB
INI
/******************************************\
|
|
Doom Builder Actions Configuration
|
|
\******************************************/
|
|
|
|
// Categories for the Controls preferences
|
|
categories
|
|
{
|
|
drawing = "Drawing";
|
|
linedefs = "Lines";
|
|
sectors = "Sectors";
|
|
}
|
|
|
|
// 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 is used.
|
|
// disregardcontrol: This action will be triggered regardless if Control is used.
|
|
// repeat: BeginAction will be called for automatic key repetition.
|
|
//
|
|
// allowkeys and allowmouse are true by default, the others are false by default.
|
|
//
|
|
|
|
wadauthormode
|
|
{
|
|
title = "WadAuthor Mode";
|
|
category = "modes";
|
|
description = "Switches to WadAuthor editing mode.";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
}
|
|
|