mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
153ea1d767
@ Added new project for Mass Undo/Redo plugin
42 lines
No EOL
1.4 KiB
INI
42 lines
No EOL
1.4 KiB
INI
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
copysectorprops
|
|
{
|
|
title = "Copy sector properties";
|
|
category = "sectors";
|
|
description = "Copies sector properties.";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
}
|
|
|
|
pastesectorprops
|
|
{
|
|
title = "Paste sector properties";
|
|
category = "sectors";
|
|
description = "Pastes sector properties.";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
} |