Compare commits
33 Commits
2020.715.0
...
2021.422.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f15b49a846 | ||
|
|
e0e32a1eca | ||
|
|
821fa43611 | ||
|
|
4ae1858034 | ||
|
|
440ee653db | ||
|
|
5ef2018d67 | ||
|
|
fcaca5ba7f | ||
|
|
740561ded0 | ||
|
|
2692d3721c | ||
|
|
85c55d9f51 | ||
|
|
8676edcc06 | ||
|
|
2f322fff32 | ||
|
|
2e14fa17ea | ||
|
|
42977bff23 | ||
|
|
95a8fc1844 | ||
|
|
490d6a4487 | ||
|
|
6ad5094b9f | ||
|
|
968f491e3f | ||
|
|
e6bb5f0ef6 | ||
|
|
41face8af4 | ||
|
|
de9132a7d7 | ||
|
|
59efcb23f7 | ||
|
|
0984b46926 | ||
|
|
18254992a5 | ||
|
|
9dfffd1e89 | ||
|
|
a7df4bc0e0 | ||
|
|
7ea62f7d79 | ||
|
|
6850dd5773 | ||
|
|
500f5f4f29 | ||
|
|
760bbe0d18 | ||
|
|
e81f149d8d | ||
|
|
3fbb90b2f2 | ||
|
|
b4615aeed8 |
BIN
osu.Game.Resources/Samples/Gameplay/catch-banana.wav
Normal file
BIN
osu.Game.Resources/Samples/Menu/button-edit-select.wav
Normal file
BIN
osu.Game.Resources/Samples/Menu/osu-logo-downbeat.wav
Normal file
BIN
osu.Game.Resources/Samples/Menu/osu-logo-heartbeat.wav
Normal file
BIN
osu.Game.Resources/Samples/Results/rankfail.wav
Normal file
BIN
osu.Game.Resources/Samples/Results/rankpass.wav
Normal file
BIN
osu.Game.Resources/Samples/SongSelect/select-difficulty.wav
Normal file
BIN
osu.Game.Resources/Samples/SongSelect/select-expand.wav
Normal file
BIN
osu.Game.Resources/Samples/SongSelect/song-ping.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/dialog-pop-in.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/dialog-pop-out.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/error-notification-pop-in.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-hover-noclick.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-hover-songselect.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-hover-toolbar.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-select-noclick.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-select-songselect.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/generic-select-toolbar.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/notification-pop-in.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/now-playing-pop-in.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/now-playing-pop-out.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/osd-change.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/osd-off.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/osd-on.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/ruleset-select-fruits.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/ruleset-select-mania.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/ruleset-select-osu.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/ruleset-select-taiko.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/settings-pop-in.wav
Normal file
BIN
osu.Game.Resources/Samples/UI/wave-pop-in.wav
Normal file
@@ -1,28 +0,0 @@
|
||||
#include "sh_Utils.h"
|
||||
|
||||
varying mediump vec2 v_TexCoord;
|
||||
varying lowp vec4 v_Colour;
|
||||
|
||||
uniform lowp sampler2D m_Sampler;
|
||||
uniform lowp float progress;
|
||||
|
||||
// Taken from http://lolengine.net/blog/2013/07/27/rgb-to-hsv-in-glsl
|
||||
vec3 rgb2hsv(vec3 c)
|
||||
{
|
||||
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
|
||||
vec4 p = c.g < c.b ? vec4(c.bg, K.wz) : vec4(c.gb, K.xy);
|
||||
vec4 q = c.r < p.x ? vec4(p.xyw, c.r) : vec4(c.r, p.yzx);
|
||||
|
||||
float d = q.x - min(q.w, q.y);
|
||||
float e = 1.0e-10;
|
||||
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
|
||||
}
|
||||
|
||||
void main(void)
|
||||
{
|
||||
vec4 colour = toSRGB(texture2D(m_Sampler, v_TexCoord, -0.9));
|
||||
|
||||
vec3 hsv = rgb2hsv(colour.rgb);
|
||||
|
||||
gl_FragColor = hsv.x < progress ? toSRGB(vec4(v_Colour.rgb, v_Colour.a * colour.a * hsv.z)) : vec4(0);
|
||||
}
|
||||
14
osu.Game.Resources/Shaders/sh_LogoAnimation.fs
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "sh_Utils.h"
|
||||
|
||||
varying mediump vec2 v_TexCoord;
|
||||
varying lowp vec4 v_Colour;
|
||||
|
||||
uniform lowp sampler2D m_Sampler;
|
||||
uniform lowp float progress;
|
||||
|
||||
void main(void)
|
||||
{
|
||||
vec4 colour = toSRGB(texture2D(m_Sampler, v_TexCoord, -0.9));
|
||||
|
||||
gl_FragColor = colour.r < progress ? toSRGB(vec4(v_Colour.rgb, v_Colour.a * colour.a)) : vec4(0);
|
||||
}
|
||||
BIN
osu.Game.Resources/Skins/Legacy/applause.mp3
Normal file
BIN
osu.Game.Resources/Skins/Legacy/scorebar-bg@2x.png
Normal file
|
After Width: | Height: | Size: 139 KiB |
BIN
osu.Game.Resources/Skins/Legacy/scorebar-colour@2x.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
osu.Game.Resources/Skins/Legacy/scorebar-marker@2x.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 20 KiB |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/accuracy.png
Normal file
|
After Width: | Height: | Size: 644 B |
|
After Width: | Height: | Size: 356 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/bpm.png
Normal file
|
After Width: | Height: | Size: 643 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/circles.png
Normal file
|
After Width: | Height: | Size: 641 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/hp-drain.png
Normal file
|
After Width: | Height: | Size: 322 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/length.png
Normal file
|
After Width: | Height: | Size: 257 B |
|
After Width: | Height: | Size: 511 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/size.png
Normal file
|
After Width: | Height: | Size: 365 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/sliders.png
Normal file
|
After Width: | Height: | Size: 485 B |
BIN
osu.Game.Resources/Textures/Icons/BeatmapDetails/spinners.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
osu.Game.Resources/Textures/Icons/Hexacons/beatmap-packs.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
osu.Game.Resources/Textures/Icons/Hexacons/beatmap.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
osu.Game.Resources/Textures/Icons/Hexacons/calendar.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |