mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 16:43:52 +09:00
Add license + general fixes.
This commit is contained in:
@ -1,4 +1,7 @@
|
|||||||
using osu.Framework.Graphics;
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Transforms;
|
using osu.Framework.Graphics.Transforms;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
using OpenTK;
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using OpenTK;
|
||||||
using OpenTK.Graphics;
|
using OpenTK.Graphics;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
@ -45,8 +48,6 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
switch (ScoreResult)
|
switch (ScoreResult)
|
||||||
{
|
{
|
||||||
default:
|
|
||||||
break;
|
|
||||||
case TaikoScoreResult.Good:
|
case TaikoScoreResult.Good:
|
||||||
innerFill.Colour = colours.Green;
|
innerFill.Colour = colours.Green;
|
||||||
break;
|
break;
|
||||||
|
@ -46,12 +46,14 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
|
|
||||||
protected override Container<Drawable> Content => hitObjectContainer;
|
protected override Container<Drawable> Content => hitObjectContainer;
|
||||||
|
|
||||||
|
// ReSharper disable once NotAccessedField.Local
|
||||||
private HitTarget hitTarget;
|
private HitTarget hitTarget;
|
||||||
private Container<RingExplosion> ringExplosionContainer;
|
private Container<RingExplosion> ringExplosionContainer;
|
||||||
//private Container<DrawableBarLine> barLineContainer;
|
//private Container<DrawableBarLine> barLineContainer;
|
||||||
private Container<JudgementText> judgementContainer;
|
private Container<JudgementText> judgementContainer;
|
||||||
|
|
||||||
private Container hitObjectContainer;
|
private Container hitObjectContainer;
|
||||||
|
// ReSharper disable once NotAccessedField.Local
|
||||||
private Container topLevelHitContainer;
|
private Container topLevelHitContainer;
|
||||||
private Container leftBackgroundContainer;
|
private Container leftBackgroundContainer;
|
||||||
private Container rightBackgroundContainer;
|
private Container rightBackgroundContainer;
|
||||||
|
Reference in New Issue
Block a user