2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-13 10:10:15 +09:00
|
|
|
|
|
2016-11-14 18:03:20 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-10-13 10:10:15 +09:00
|
|
|
|
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;
|
2016-10-13 10:10:15 +09:00
|
|
|
|
using OpenTK;
|
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawable
|
2016-10-13 10:10:15 +09:00
|
|
|
|
{
|
|
|
|
|
public class DrawableNote : Sprite
|
|
|
|
|
{
|
|
|
|
|
private readonly ManiaBaseHit note;
|
|
|
|
|
|
|
|
|
|
public DrawableNote(ManiaBaseHit note)
|
|
|
|
|
{
|
|
|
|
|
this.note = note;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
Scale = new Vector2(0.1f);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(TextureStore textures)
|
2016-10-13 10:10:15 +09:00
|
|
|
|
{
|
2016-11-08 18:13:20 -05:00
|
|
|
|
Texture = textures.Get(@"Menu/logo");
|
2016-10-13 10:10:15 +09:00
|
|
|
|
|
2017-03-23 13:52:38 +09:00
|
|
|
|
const double duration = 0;
|
2017-03-14 13:17:11 +09:00
|
|
|
|
|
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 });
|
2017-03-14 13:17:11 +09:00
|
|
|
|
Transforms.Add(new TransformAlpha { StartTime = note.StartTime + duration + 200, EndTime = note.StartTime + duration + 400, StartValue = 1, EndValue = 0 });
|
2016-10-13 10:10:15 +09:00
|
|
|
|
Expire(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|