osu/osu.Game.Modes.Catch/Objects/Drawable/DrawableFruit.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 09:03:20 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2016-11-14 09:03:20 +00:00
using osu.Framework.Graphics.Textures;
2017-02-25 12:12:39 +00:00
using osu.Framework.Graphics.Transforms;
using OpenTK;
2016-11-14 09:54:24 +00:00
namespace osu.Game.Modes.Catch.Objects.Drawable
{
2017-03-07 01:59:19 +00:00
internal class DrawableFruit : Sprite
{
private readonly CatchBaseHit h;
public DrawableFruit(CatchBaseHit h)
{
this.h = h;
Origin = Anchor.Centre;
Scale = new Vector2(0.1f);
RelativePositionAxes = Axes.Y;
Position = new Vector2(h.Position, -0.1f);
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
2016-11-08 23:13:20 +00:00
Texture = textures.Get(@"Menu/logo");
2017-03-23 04:52:38 +00:00
const double duration = 0;
Transforms.Add(new TransformPosition { StartTime = h.StartTime - 200, EndTime = h.StartTime, StartValue = new Vector2(h.Position, -0.1f), EndValue = new Vector2(h.Position, 0.9f) });
Transforms.Add(new TransformAlpha { StartTime = h.StartTime + duration + 200, EndTime = h.StartTime + duration + 400, StartValue = 1, EndValue = 0 });
Expire(true);
}
}
}