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
You can’t play 4K on a 1080 monitor. That’s well outside of the range of the monitor.
And for the record, no it isn’t. I still play it on 1080.
Playing at 4k here. It looks better. But you dont see more area. The game view is the same.
Nope. The game simply isn’t optimized for any benefits that come with 4K or HDR. So there’s no benefit there.
the game upscales to 1080p and beyond.2560x1440 using 144hz. heres a mouse tweak for your vram compile with autohotkey.
;copyright 2016
; <COMPILER: v1.0.48.5>
Critical
CoordMode, Mouse, Screen
#SingleInstance force
#InstallKeybdHook
#InstallMouseHook
#NoEnv
SendMode, Input
#Persistent
SetTimer, WatchCursor, 30
return
WatchCursor:
MouseGetPos, , , id, control
xlast = %xpos%
ylast = %ypos%
MouseGetPos, xpos, ypos
xmove := xpos-xlast
ymove := ypos-ylast
X := xmove
Y := ymove
X /= 3.5
Y /= 3.5
if (xmove!=0&&ymove!=0)
{
MouseEvent(X,Y)
}
return
~$Pause::
Pause
return
MouseEvent(a_xpos, a_ypos)
{
DllCall("mouse_event", uint,1, int,a_xpos, int,a_ypos, uint,0, int,0 )
}