1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 21:27:18 +08:00

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

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