osu/osu.Game.Rulesets.Osu/Skinning/Default/TrianglesPiece.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
725 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
using osu.Game.Graphics.Backgrounds;
2018-04-13 09:19:50 +00:00
2020-12-04 11:21:53 +00:00
namespace osu.Game.Rulesets.Osu.Skinning.Default
{
public class TrianglesPiece : Triangles
{
protected override bool CreateNewTriangles => false;
protected override float SpawnRatio => 0.5f;
2018-04-13 09:19:50 +00:00
public TrianglesPiece(int? seed = null)
: base(seed)
{
TriangleScale = 1.2f;
2017-03-01 02:56:14 +00:00
HideAlphaDiscrepancies = false;
}
2018-04-13 09:19:50 +00:00
protected override void Update()
{
if (IsPresent)
base.Update();
}
}
2018-01-05 11:21:19 +00:00
}