2017-02-07 12:59:30 +08: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 09:10:15 +08:00
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class DrawableFruit : Sprite
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
2017-07-10 17:31:41 +08:00
|
|
|
|
//private readonly CatchBaseHit h;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
|
|
|
|
public DrawableFruit(CatchBaseHit h)
|
|
|
|
|
{
|
2017-07-10 17:31:41 +08:00
|
|
|
|
//this.h = h;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
Scale = new Vector2(0.1f);
|
|
|
|
|
RelativePositionAxes = Axes.Y;
|
2017-03-14 12:11:07 +08:00
|
|
|
|
Position = new Vector2(h.Position, -0.1f);
|
2016-10-13 09:10:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2017-07-10 06:01:25 +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 + duration + 200, EndTime = h.StartTime + duration + 400, StartValue = 1, EndValue = 0 });
|
2016-10-13 09:10:15 +08:00
|
|
|
|
Expire(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|