同步更新

This commit is contained in:
LA
2026-01-02 16:03:41 +08:00
parent 367e4b112e
commit ccb50c66ea

View File

@@ -122,8 +122,10 @@ namespace osu.Framework.Graphics.Lines
// at this small angle curvature isn't noticeable, we can get away with straight-up connecting segment to the previous one.
if (thetaDiff < Math.PI / max_res)
{
topLeft = prevSegment.TopRight;
bottomLeft = prevSegment.BottomRight;
if (pDot < 0f)
topLeft = prevSegment.TopRight;
else
bottomLeft = prevSegment.BottomRight;
}
else
{