mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Update some case sensitive resources lookups in-line with resources
This commit is contained in:
@ -86,7 +86,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
|||||||
{
|
{
|
||||||
switch (component.LookupName)
|
switch (component.LookupName)
|
||||||
{
|
{
|
||||||
case "Gameplay/Catch/fruit-catcher-idle":
|
case "Gameplay/catch/fruit-catcher-idle":
|
||||||
return new CatcherCustomSkin();
|
return new CatcherCustomSkin();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,10 +132,10 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(TextureStore textures, OsuColour colours)
|
private void load(TextureStore textures, OsuColour colours)
|
||||||
{
|
{
|
||||||
rim.Texture = textures.Get(@"Gameplay/Taiko/taiko-drum-outer");
|
rim.Texture = textures.Get(@"Gameplay/taiko/taiko-drum-outer");
|
||||||
rimHit.Texture = textures.Get(@"Gameplay/Taiko/taiko-drum-outer-hit");
|
rimHit.Texture = textures.Get(@"Gameplay/taiko/taiko-drum-outer-hit");
|
||||||
centre.Texture = textures.Get(@"Gameplay/Taiko/taiko-drum-inner");
|
centre.Texture = textures.Get(@"Gameplay/taiko/taiko-drum-inner");
|
||||||
centreHit.Texture = textures.Get(@"Gameplay/Taiko/taiko-drum-inner-hit");
|
centreHit.Texture = textures.Get(@"Gameplay/taiko/taiko-drum-inner-hit");
|
||||||
|
|
||||||
rimHit.Colour = colours.Blue;
|
rimHit.Colour = colours.Blue;
|
||||||
centreHit.Colour = colours.Pink;
|
centreHit.Colour = colours.Pink;
|
||||||
|
Reference in New Issue
Block a user