Add back random rotation

This commit is contained in:
Dean Herbert 2018-01-03 20:52:11 +09:00
parent 9bde8d3da1
commit b03cbaca77
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.MathUtils;
using osu.Game.Rulesets.Catch.Objects.Drawable.Pieces;
using OpenTK;
using OpenTK.Graphics;
@ -26,7 +27,7 @@ public DrawableFruit(Fruit h)
AccentColour = HitObject.ComboColour;
Masking = false;
//Rotation = (float)(RNG.NextDouble() - 0.5f) * 40;
Rotation = (float)(RNG.NextDouble() - 0.5f) * 40;
}
[BackgroundDependencyLoader]