1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 07:20:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Skinning/Default/TrianglesPiece.cs

29 lines
779 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 17:19:50 +08:00
2024-01-23 09:54:27 +08:00
using osu.Framework.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.Backgrounds;
2020-12-04 19:21:53 +08:00
namespace osu.Game.Rulesets.Osu.Skinning.Default
2018-04-13 17:19:50 +08:00
{
2022-11-24 13:32:20 +08:00
public partial class TrianglesPiece : Triangles
2018-04-13 17:19:50 +08:00
{
protected override bool CreateNewTriangles => false;
2018-04-13 17:19:50 +08:00
protected override float SpawnRatio => 0.5f;
public TrianglesPiece(int? seed = null)
: base(seed)
2018-04-13 17:19:50 +08:00
{
TriangleScale = 1.2f;
HideAlphaDiscrepancies = false;
2024-01-23 09:54:27 +08:00
ClampAxes = Axes.None;
2018-04-13 17:19:50 +08:00
}
protected override void Update()
{
if (IsPresent)
base.Update();
}
}
}