-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathActions.cfg
53 lines (48 loc) · 1.58 KB
/
Actions.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// This file 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. This file must be named Actions.cfg and must be
// included in the plugin project as "Embedded Resource".
//
//
// 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 trigger regardless if Shift or Control is used.
// repeat: BeginAction will be called for automatic key repetition.
// default: Default key is only used when the action is loaded for the first
// time and the default key is not used by any other action.
//
// allowkeys and allowmouse are true by default, the others are false by default.
//
categories {
drawtext = "Draw Text";
}
drawtextmode {
title = "Draw Text Mode";
category = "modes";
description = "Create geometry using a true type font's vector data";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
incfontsize
{
title = "Increase font size by 1";
category = "drawtext";
description = "Increases the current font size by 1 unit.";
allowscroll = true;
default = 131066;
}
decfontsize
{
title = "Decrease font size by 1";
category = "drawtext";
description = "Decrease the current font size by 1 unit.";
allowscroll = true;
default = 131067;
}