diff --git a/binaries/data/config/default.cfg b/binaries/data/config/default.cfg index 347d629d4d..d48672205f 100644 --- a/binaries/data/config/default.cfg +++ b/binaries/data/config/default.cfg @@ -171,7 +171,7 @@ hotkey.silhouettes = "Alt+S" ; Toggle unit silhouettes hotkey.showsky = "Alt+Z" ; Toggle sky ; > CAMERA SETTINGS -hotkey.camera.reset = "H" ; Reset camera rotation to default. +hotkey.camera.reset = "R" ; Reset camera rotation to default. hotkey.camera.follow = "F" ; Follow the first unit in the selection hotkey.camera.zoom.in = Plus, Equals, NumPlus ; Zoom camera in (continuous control) hotkey.camera.zoom.out = Minus, NumMinus ; Zoom camera out (continuous control) @@ -243,6 +243,7 @@ hotkey.selection.group.add.9 = "Shift+9" ; > SESSION CONTROLS hotkey.session.kill = Delete ; Destroy selected units +hotkey.session.stop = "H" ; Stop the current action hotkey.session.attack = "Ctrl+Alt" ; Modifier to force attack instead of another action hotkey.session.garrison = Ctrl ; Modifier to garrison when clicking on building hotkey.session.attackmove = Ctrl ; Modifier to attackmove when clicking on a point diff --git a/binaries/data/mods/public/gui/manual/intro.txt b/binaries/data/mods/public/gui/manual/intro.txt index fda80121cf..b7e3f79a70 100644 --- a/binaries/data/mods/public/gui/manual/intro.txt +++ b/binaries/data/mods/public/gui/manual/intro.txt @@ -62,6 +62,7 @@ Pause: Pause/unpause the game Delete: Delete currently selected unit/units/building/buildings ,: Select idle fighters .: Select idle workers (including citizen soldiers) +H: Stop (halt) the currently selected units. Ctrl + 1 (and so on up to Ctrl + 0): Create control group 1 (to 0) from the selected units/buildings 1 (and so on up to 0): Select the units/buildings in control group 1 (to 0) Shift + 1 (to 0): Add selected units/buildings to control group 1 (to 0) @@ -101,7 +102,7 @@ E: Rotate camera anticlockwise around terrain Shift + Mouse Wheel Rotate Up: Rotate camera clockwise around terrain Shift + Mouse Wheel Rotate Down: Rotate camera anticlockwise around terrain F: Follow the selected unit (move the camera to stop the camera from following the unit/s) -H: Reset camera zoom/orientation +R: Reset camera zoom/orientation +: Zoom in (keep pressed for continuous zoom) -: Zoom out (keep pressed for continuous zoom) Alt+W: Toggle through wireframe modes diff --git a/binaries/data/mods/public/gui/session/session.xml b/binaries/data/mods/public/gui/session/session.xml index 4d4fc051ff..039e18db43 100644 --- a/binaries/data/mods/public/gui/session/session.xml +++ b/binaries/data/mods/public/gui/session/session.xml @@ -97,6 +97,11 @@ setCameraFollow(g_Selection.toList()[0]); + + + stopUnits(g_Selection.toList()); + + addTrainingByPosition(0);