Like, playing transparency. (View the background of your desktop or whatever window is under osu whilst playing)
What if my desktop background is purely red? awts. my eyes hurts so much....[Avail] wrote:
I ment only as in background totally transparent, hitcircles still at 100% opacity
EDIT:
Don't like it? Don't use it.zinckingeye wrote:
What if my desktop background is purely red? awts. my eyes hurts so much....
I'm pretty much in the same...boat here.boat wrote:
I'm neither for nor against.
A feature like this could be very interesting and pretty, but that's only if it's used properly. (it reminds me of the feature in VLC... right? where you can set playback to your desktop background, which can also be used for moving wallpapers.)Oinari-sama wrote:
Well I can see this work for those who has a clean and tidy desktop.
I just don't know if it's worth the effort though...
; changing window transparencies
#WheelUp:: ; Increments transparency up by 3.375% (with wrap-around)
DetectHiddenWindows, on
WinGet, curtrans, Transparent, A
if ! curtrans
curtrans = 255
newtrans := curtrans + 8
if newtrans > 0
{
WinSet, Transparent, %newtrans%, A
}
else
{
WinSet, Transparent, OFF, A
WinSet, Transparent, 255, A
}
return
#WheelDown:: ; Increments transparency down by 3.375% (with wrap-around)
DetectHiddenWindows, on
WinGet, curtrans, Transparent, A
if ! curtrans
curtrans = 255
newtrans := curtrans - 8
if newtrans > 0
{
WinSet, Transparent, %newtrans%, A
}
;else
;{
; WinSet, Transparent, 255, A
; WinSet, Transparent, OFF, A
;}
return
#o:: ; Reset Transparency Settings
WinSet, Transparent, 255, A
WinSet, Transparent, OFF, A
return
#g:: ; Press Win+G to show the current settings of the window under the mouse.
MouseGetPos,,, MouseWin
WinGet, Transparent, Transparent, ahk_id %MouseWin%
ToolTip Translucency:`t%Transparent%`n
Sleep 2000
ToolTip
return