Frictional Games Forum (read-only)
Panning in LevelEditor - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Panning in LevelEditor (/thread-16489.html)



Panning in LevelEditor - Electra - 06-25-2012

I know that to pan the camera you have to press the middle mouse button. Is there any way to pan without the middle mouse button? I can zoom and rotate just fine.


RE: Panning in LevelEditor - SilentStriker - 06-25-2012

Nope not unless you have some program that make you able to change another button to the middle button


RE: Panning in LevelEditor - Apjjm - 06-25-2012

If you download autohotkey the following script should let you use left ctrl+alt to pan with in the level and model editors:
Code:
SetTitleMatchMode RegEx
#IfWinActive .*HPL (Level|Model) Editor
*LCtrl::
SendEvent {Blind}{MButton down}
KeyWait LCtrl
SendEvent {Blind}{MButton up}
return