1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 11:22:54 +08:00

Merge pull request #8814 from smoogipoo/allcontrolpoint-serialisation

Don't serialise AllControlPoints
This commit is contained in:
Dean Herbert 2020-04-21 14:31:19 +09:00 committed by GitHub
commit 1e683fe553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,6 +56,7 @@ namespace osu.Game.Beatmaps.ControlPoints
/// <summary>
/// All control points, of all types.
/// </summary>
[JsonIgnore]
public IEnumerable<ControlPoint> AllControlPoints => Groups.SelectMany(g => g.ControlPoints).ToArray();
/// <summary>