1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 07:47:44 +08:00

37 lines
1.2 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 18:03:20 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
2016-11-14 18:03:20 +09:00
using osu.Framework.Graphics.Textures;
2017-02-25 13:12:39 +01:00
using osu.Framework.Graphics.Transforms;
2016-11-14 18:54:24 +09:00
using osu.Framework.Graphics;
using OpenTK;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Mania.Objects.Drawable
{
public class DrawableNote : Sprite
{
private readonly ManiaBaseHit note;
public DrawableNote(ManiaBaseHit note)
{
this.note = note;
Origin = Anchor.Centre;
Scale = new Vector2(0.1f);
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
2016-11-08 18:13:20 -05:00
Texture = textures.Get(@"Menu/logo");
2017-03-23 13:52:38 +09:00
const double duration = 0;
2017-03-07 10:59:19 +09:00
Transforms.Add(new TransformPositionY { StartTime = note.StartTime - 200, EndTime = note.StartTime, StartValue = -0.1f, EndValue = 0.9f });
Transforms.Add(new TransformAlpha { StartTime = note.StartTime + duration + 200, EndTime = note.StartTime + duration + 400, StartValue = 1, EndValue = 0 });
Expire(true);
}
}
}