mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-25 21:31:14 +00:00
4389870162
In Sound Propagation Mode you can set the start (default: Shift+S) and end (default: Shift+E) sectors between which a path the sound can travel will be found and displayed.
78 lines
No EOL
2.2 KiB
INI
Executable file
78 lines
No EOL
2.2 KiB
INI
Executable file
//
|
|
// 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.
|
|
//
|
|
|
|
soundpropagationmode
|
|
{
|
|
title = "Sound propagation mode";
|
|
category = "modes";
|
|
description = "Shows how sound propagates through the map";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
}
|
|
|
|
soundenvironmentmode
|
|
{
|
|
title = "Sound environment mode";
|
|
category = "modes";
|
|
description = "Shows ZDoom sound environments";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
}
|
|
|
|
categories
|
|
{
|
|
soundpropagationmode = "Sound propagation mode";
|
|
}
|
|
|
|
soundpropagationcolorconfiguration
|
|
{
|
|
title = "Configure colors";
|
|
category = "soundpropagationmode";
|
|
description = "Configure colors for sound propagation mode";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
}
|
|
|
|
setleakfinderstart
|
|
{
|
|
title = "Set leak finder start sector";
|
|
category = "soundpropagationmode";
|
|
description = "Sets the starting sector for the sound leak finder";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
default = 65619; // Shift+S
|
|
}
|
|
|
|
setleakfinderend
|
|
{
|
|
title = "Set leak finder end sector";
|
|
category = "soundpropagationmode";
|
|
description = "Sets the ending sector for the sound leak finder";
|
|
allowkeys = true;
|
|
allowmouse = true;
|
|
allowscroll = true;
|
|
default = 65605; // Shift+E
|
|
} |