Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Hopefully we'll get the option so everyone is happy.
One thing that 'is' missing from both the previous Sins and Homeworld games is the 'middle-click to focus selection' function. In both named games, middle-click used to zoom to your current selection but now, by default, that function is assigned to something inconvenient like 'Ctrl-Space' and can't be mapped to the middle-click. It'd be nice to have the old, more convenient placement of that function back (at least as a mappable option).
What I did was: assigned random buttons as keyboard bindings for:
"Camera Rotation with Mouse"
"Camera Panning with Mouse"
Closed the game.
Then I've opened AppData\Local\sins2\settings\input_bindings.json (same folder where settings.json is located)
find:
"enable_camera_rotate_with_mouse": [
{
"keyboard_key": "some_key_you_assigned"
}
],
"enable_camera_pan_with_mouse": [
{
"keyboard_key": "some_key_you_assigned"
}
],
Change like this:
"enable_camera_rotate_with_mouse": [
{
"mouse_button": "middle"
},
],
"enable_camera_pan_with_mouse": [
{
"mouse_button": "right"
},
],