1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game.Modes.Taiko/Objects/Drawable/DrawableTaikoHit.cs

40 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-14 17:03:20 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2016-11-14 17:03:20 +08:00
using osu.Framework.Graphics.Textures;
2017-02-25 20:12:39 +08:00
using osu.Framework.Graphics.Transforms;
using OpenTK;
2016-11-14 17:54:24 +08:00
namespace osu.Game.Modes.Taiko.Objects.Drawable
{
2017-03-07 09:59:19 +08:00
internal class DrawableTaikoHit : Sprite
{
2017-03-17 12:33:48 +08:00
private TaikoHitObject h;
2017-03-17 12:33:48 +08:00
public DrawableTaikoHit(TaikoHitObject h)
{
this.h = h;
Origin = Anchor.Centre;
Scale = new Vector2(0.2f);
RelativePositionAxes = Axes.Both;
Position = new Vector2(1.1f, 0.5f);
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
2016-11-09 07:13:20 +08:00
Texture = textures.Get(@"Menu/logo");
double duration = 0;
2016-10-28 16:42:00 +08:00
Transforms.Add(new TransformPositionX { StartTime = h.StartTime - 200, EndTime = h.StartTime, StartValue = 1.1f, EndValue = 0.1f });
Transforms.Add(new TransformAlpha { StartTime = h.StartTime + duration + 200, EndTime = h.StartTime + duration + 400, StartValue = 1, EndValue = 0 });
Expire(true);
}
}
}