We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d72816 + e8c8891 commit fb49b99Copy full SHA for fb49b99
Quaver.API/Maps/Structures/TimingGroup.cs
@@ -23,6 +23,11 @@ public abstract class TimingGroup
23
/// </summary>
24
public string ColorRgb { get; [MoonSharpVisible(false)] set; }
25
26
+ /// <summary>
27
+ /// Is the timing group hidden in the editor?
28
+ /// </summary>
29
+ public bool Hidden { get; [MoonSharpVisible(false)] set; }
30
+
31
/// <summary>
32
/// Converts the stringified color to a System.Drawing color
33
@@ -42,7 +47,7 @@ public Color GetColor() =>
42
47
/// <returns></returns>
43
48
protected bool Equals(TimingGroup other)
44
49
{
45
- return ColorRgb == other.ColorRgb;
50
+ return ColorRgb == other.ColorRgb && Hidden == other.Hidden;
46
51
}
52
53
0 commit comments