2016-10-13 09:10:15 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
|
using OpenTK;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Objects.Catch.Drawable
|
|
|
|
|
{
|
|
|
|
|
class DrawableFruit : Sprite
|
|
|
|
|
{
|
|
|
|
|
private 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);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(TextureStore textures)
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
2016-11-09 07:13:20 +08:00
|
|
|
|
Texture = textures.Get(@"Menu/logo");
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2016-10-28 16:42:00 +08:00
|
|
|
|
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 + h.Duration + 200, EndTime = h.StartTime + h.Duration + 400, StartValue = 1, EndValue = 0 });
|
2016-10-13 09:10:15 +08:00
|
|
|
|
Expire(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|