ReShade能设置窗口化变成无边框窗口化吗
reshade吧
全部回复
仅看楼主
level 11
饥饥喵 楼主
黑魂3本体不支持无边框窗口[不高兴]
2016年05月07日 11点05分 1
level 8
reshade只负责提供一个shader注入游戏的通道
其他功能一概没有的
无边框窗口化 可以用autohotkey弄一下吧
下面是我常用的一个autohotkey脚本
按f12可以把任意当前窗口去边框全屏
你可以试试
F12::
WinGet, TempWindowID, ID, A
If (WindowID != TempWindowID)
{
WindowID:=TempWindowID
WindowState:=0
}
If (WindowState != 1)
{
WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
WinSet, Style, -0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
;Hide Windows Task Bar and Start Button. (Remove the following two lines if you don't want that behaviour)
WinHide ahk_class Shell_TrayWnd
WinHide Start ahk_class Button
}
Else
{
WinSet, Style, +0xC40000, ahk_id %WindowID%
WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
;Show the task bar again
WinShow ahk_class Shell_TrayWnd
WinShow Start ahk_class Button
}
WindowState:=!WindowState
return
2016年05月09日 08点05分 2
[乖]我回去就试试
2016年05月09日 14点05分
真大神[爱心]
2016年05月10日 07点05分
level 11
[滑稽]请尝试Alt+Enter
2016年06月09日 02点06分 4
1