Compare commits
6 Commits
2021.808.0
...
2021.813.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fff75da737 | ||
|
|
89139a7634 | ||
|
|
b51e924d41 | ||
|
|
9a30f36388 | ||
|
|
e97ac1ec2a | ||
|
|
a14e7b1dce |
@@ -15,6 +15,7 @@ uniform mat3 g_ToMaskingSpace;
|
||||
uniform mat3 g_ToDrawingSpace;
|
||||
|
||||
uniform float g_FadeClock;
|
||||
uniform float g_FadeExponent;
|
||||
|
||||
void main(void)
|
||||
{
|
||||
@@ -26,7 +27,7 @@ void main(void)
|
||||
vec3 drawingPos = g_ToDrawingSpace * vec3(m_Position, 1.0);
|
||||
v_DrawingPosition = drawingPos.xy / drawingPos.z;
|
||||
|
||||
v_Colour = vec4(m_Colour.rgb, m_Colour.a * pow(clamp(m_Time - g_FadeClock, 0.0, 1.0), 1.7));
|
||||
v_Colour = vec4(m_Colour.rgb, m_Colour.a * pow(clamp(m_Time - g_FadeClock, 0.0, 1.0), g_FadeExponent));
|
||||
|
||||
v_TexCoord = m_TexCoord;
|
||||
v_TexRect = m_TexRect;
|
||||
|
||||
BIN
osu.Game.Resources/Textures/Online/supporter-heart.png
Normal file
BIN
osu.Game.Resources/Textures/Online/supporter-heart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.4 KiB |
BIN
osu.Game.Resources/Textures/Online/supporter-pippi.png
Normal file
BIN
osu.Game.Resources/Textures/Online/supporter-pippi.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 490 KiB |
Reference in New Issue
Block a user