rework hold notes' "long things" to properly draw out of bounds

This commit is contained in:
msk
2023-09-17 23:09:19 -07:00
parent 0ac72faf87
commit 5f2a13a7a6
6 changed files with 138 additions and 56 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ namespace WacK.Data.Chart
/// <summary>
/// The note's radial position out of 60.
/// </summary>
public int? position;
public int? pos;
/// <summary>
/// The radial size of the note.
@@ -32,7 +32,7 @@ namespace WacK.Data.Chart
{
this.time = time;
this.measureBeat = measureBeat;
this.position = position;
this.pos = position;
this.size = size;
}