mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
27 lines
767 B
C#
27 lines
767 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|
{
|
|
public class TrianglesPiece : Triangles
|
|
{
|
|
protected override bool ExpireOffScreenTriangles => false;
|
|
protected override bool CreateNewTriangles => false;
|
|
protected override float SpawnRatio => 0.5f;
|
|
|
|
public TrianglesPiece()
|
|
{
|
|
TriangleScale = 1.2f;
|
|
HideAlphaDiscrepancies = false;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
if (IsPresent)
|
|
base.Update();
|
|
}
|
|
}
|
|
}
|