1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 07:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Skinning/Legacy/LegacyFruitPiece.cs

45 lines
1.5 KiB
C#
Raw Normal View History

2020-02-17 18:06:08 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Game.Rulesets.Catch.Objects;
2020-02-17 18:06:08 +08:00
2020-12-07 11:35:24 +08:00
namespace osu.Game.Rulesets.Catch.Skinning.Legacy
2020-02-17 18:06:08 +08:00
{
internal class LegacyFruitPiece : LegacyCatchHitObjectPiece
2020-02-17 18:06:08 +08:00
{
protected override void LoadComplete()
2020-02-17 18:06:08 +08:00
{
base.LoadComplete();
2020-02-17 18:06:08 +08:00
IndexInBeatmap.BindValueChanged(index =>
{
setTexture(Fruit.GetVisualRepresentation(index.NewValue));
}, true);
2020-02-17 18:06:08 +08:00
}
private void setTexture(FruitVisualRepresentation visualRepresentation)
{
switch (visualRepresentation)
{
case FruitVisualRepresentation.Pear:
SetTexture(Skin.GetTexture("fruit-pear"), Skin.GetTexture("fruit-pear-overlay"));
break;
case FruitVisualRepresentation.Grape:
SetTexture(Skin.GetTexture("fruit-grapes"), Skin.GetTexture("fruit-grapes-overlay"));
break;
case FruitVisualRepresentation.Pineapple:
SetTexture(Skin.GetTexture("fruit-apple"), Skin.GetTexture("fruit-apple-overlay"));
break;
case FruitVisualRepresentation.Raspberry:
SetTexture(Skin.GetTexture("fruit-orange"), Skin.GetTexture("fruit-orange-overlay"));
break;
}
}
2020-02-17 18:06:08 +08:00
}
}