mirror of
https://github.com/ppy/osu
synced 2024-12-27 01:12:45 +00:00
Merge pull request #27787 from peppy/update-hit-error-icons
Update hit error metre to use new icons
This commit is contained in:
commit
b226a05637
@ -175,6 +175,8 @@ namespace osu.Game.Graphics
|
|||||||
public static IconUsage EditorSelect => get(OsuIconMapping.EditorSelect);
|
public static IconUsage EditorSelect => get(OsuIconMapping.EditorSelect);
|
||||||
public static IconUsage EditorSound => get(OsuIconMapping.EditorSound);
|
public static IconUsage EditorSound => get(OsuIconMapping.EditorSound);
|
||||||
public static IconUsage EditorWhistle => get(OsuIconMapping.EditorWhistle);
|
public static IconUsage EditorWhistle => get(OsuIconMapping.EditorWhistle);
|
||||||
|
public static IconUsage Tortoise => get(OsuIconMapping.Tortoise);
|
||||||
|
public static IconUsage Hare => get(OsuIconMapping.Hare);
|
||||||
|
|
||||||
private static IconUsage get(OsuIconMapping glyph) => new IconUsage((char)glyph, FONT_NAME);
|
private static IconUsage get(OsuIconMapping glyph) => new IconUsage((char)glyph, FONT_NAME);
|
||||||
|
|
||||||
@ -380,6 +382,12 @@ namespace osu.Game.Graphics
|
|||||||
|
|
||||||
[Description(@"Editor/whistle")]
|
[Description(@"Editor/whistle")]
|
||||||
EditorWhistle,
|
EditorWhistle,
|
||||||
|
|
||||||
|
[Description(@"tortoise")]
|
||||||
|
Tortoise,
|
||||||
|
|
||||||
|
[Description(@"hare")]
|
||||||
|
Hare,
|
||||||
}
|
}
|
||||||
|
|
||||||
public class OsuIconStore : ITextureStore, ITexturedGlyphLookupStore
|
public class OsuIconStore : ITextureStore, ITexturedGlyphLookupStore
|
||||||
|
@ -303,13 +303,13 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
|
|||||||
labelEarly.Child = new SpriteIcon
|
labelEarly.Child = new SpriteIcon
|
||||||
{
|
{
|
||||||
Size = new Vector2(icon_size),
|
Size = new Vector2(icon_size),
|
||||||
Icon = FontAwesome.Solid.ShippingFast,
|
Icon = OsuIcon.Hare
|
||||||
};
|
};
|
||||||
|
|
||||||
labelLate.Child = new SpriteIcon
|
labelLate.Child = new SpriteIcon
|
||||||
{
|
{
|
||||||
Size = new Vector2(icon_size),
|
Size = new Vector2(icon_size),
|
||||||
Icon = FontAwesome.Solid.Bicycle,
|
Icon = OsuIcon.Tortoise
|
||||||
};
|
};
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Realm" Version="11.5.0" />
|
<PackageReference Include="Realm" Version="11.5.0" />
|
||||||
<PackageReference Include="ppy.osu.Framework" Version="2024.329.0" />
|
<PackageReference Include="ppy.osu.Framework" Version="2024.329.0" />
|
||||||
<PackageReference Include="ppy.osu.Game.Resources" Version="2024.321.0" />
|
<PackageReference Include="ppy.osu.Game.Resources" Version="2024.404.0" />
|
||||||
<PackageReference Include="Sentry" Version="3.41.3" />
|
<PackageReference Include="Sentry" Version="3.41.3" />
|
||||||
<!-- Held back due to 0.34.0 failing AOT compilation on ZstdSharp.dll dependency. -->
|
<!-- Held back due to 0.34.0 failing AOT compilation on ZstdSharp.dll dependency. -->
|
||||||
<PackageReference Include="SharpCompress" Version="0.36.0" />
|
<PackageReference Include="SharpCompress" Version="0.36.0" />
|
||||||
|
Loading…
Reference in New Issue
Block a user