mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-05 07:11:12 +00:00
Allow holding down "move selection" actions & add 8 mp versions
This commit is contained in:
parent
aac2a46e78
commit
987f998ba4
1 changed files with 48 additions and 0 deletions
|
@ -1534,6 +1534,7 @@ moveselectionup
|
|||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectiondown
|
||||
|
@ -1544,6 +1545,7 @@ moveselectiondown
|
|||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectionleft
|
||||
|
@ -1554,6 +1556,7 @@ moveselectionleft
|
|||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectionright
|
||||
|
@ -1564,6 +1567,51 @@ moveselectionright
|
|||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectionup8
|
||||
{
|
||||
title = "Move Selection Up by 8 mp";
|
||||
category = "edit";
|
||||
description = "Moves the selection in Edit Selection mode up by 8 mp.";
|
||||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectiondown8
|
||||
{
|
||||
title = "Move Selection Down by 8 mp";
|
||||
category = "edit";
|
||||
description = "Moves the selection in Edit Selection mode down by 8 mp.";
|
||||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectionleft8
|
||||
{
|
||||
title = "Move Selection Left by 8 mp";
|
||||
category = "edit";
|
||||
description = "Moves the selection in Edit Selection mode left by 8 mp.";
|
||||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
moveselectionright8
|
||||
{
|
||||
title = "Move Selection Right by 8 mp";
|
||||
category = "edit";
|
||||
description = "Moves the selection in Edit Selection mode right by 8 mp.";
|
||||
allowkeys = true;
|
||||
allowmouse = true;
|
||||
allowscroll = true;
|
||||
repeat = true;
|
||||
}
|
||||
|
||||
//mxd
|
||||
|
|
Loading…
Reference in a new issue