Add basic fruit scaling support

This commit is contained in:
Dean Herbert
2017-11-24 14:49:38 +09:00
parent bd88df2722
commit 2deb33ac41
2 changed files with 14 additions and 0 deletions

View File

@ -5,6 +5,7 @@ using System;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects.Drawables;
using OpenTK;
namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
@ -17,6 +18,8 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
: base(hitObject)
{
HitObject = hitObject;
Scale = new Vector2(HitObject.Scale);
}
}