ติดตั้ง Steam
เข้าสู่ระบบ
|
ภาษา
简体中文 (จีนตัวย่อ)
繁體中文 (จีนตัวเต็ม)
日本語 (ญี่ปุ่น)
한국어 (เกาหลี)
български (บัลแกเรีย)
Čeština (เช็ก)
Dansk (เดนมาร์ก)
Deutsch (เยอรมัน)
English (อังกฤษ)
Español - España (สเปน)
Español - Latinoamérica (สเปน - ลาตินอเมริกา)
Ελληνικά (กรีก)
Français (ฝรั่งเศส)
Italiano (อิตาลี)
Bahasa Indonesia (อินโดนีเซีย)
Magyar (ฮังการี)
Nederlands (ดัตช์)
Norsk (นอร์เวย์)
Polski (โปแลนด์)
Português (โปรตุเกส - โปรตุเกส)
Português - Brasil (โปรตุเกส - บราซิล)
Română (โรมาเนีย)
Русский (รัสเซีย)
Suomi (ฟินแลนด์)
Svenska (สวีเดน)
Türkçe (ตุรกี)
Tiếng Việt (เวียดนาม)
Українська (ยูเครน)
รายงานปัญหาเกี่ยวกับการแปลภาษา
Rotate Clockwise: CTRL + D
Camera Altitude increase: CTRL + W
Camera Altitude decrease: CTRL + S
Can't find anything on zoom.
Devs, please
What makes it fast is you zoom out to bird's eye view of map, hold the mouse cursor over any part of the active map you want to zoom in to, and zoom in with mouse wheel. It zooms in to where the mouse cursor is. You can do rotations by pressing that mouse wheel and rotating. The more I use it, the easier it becomes.
Someone on the steam community posted a keyboard mapping image that looks useful.
https://steamcommunity.com/sharedfiles/filedetails/?id=2731450059
Additionally, you might try AutoHotKey (it's free, and open source). It allows you to script keyboard actions. https://www.autohotkey.com/
I did this test script using the pageup and page down keys to replace middle mouse scroll. It works, but not as smooth as just using the mouse scroll wheel.
Script Example:
PgUp::
{
MouseClick("wheelup")
}
PgDn::
{
MouseClick("wheeldown")
}