Skip to content

Commit

Permalink
ColorIdConst remove LaneRed/LaneGreen/LaneBlue
Browse files Browse the repository at this point in the history
  • Loading branch information
MikiraSora committed Oct 24, 2024
1 parent 9b58f55 commit b014929
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
2 changes: 1 addition & 1 deletion OngekiFumenEditor/Base/EditorObjects/Svg/SvgPrefabBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public bool IsForceColorful
set => Set(ref isForceColorful, value);
}

private ColorId colorfulLaneColor = ColorIdConst.LaneGreen;
private ColorId colorfulLaneColor = ColorIdConst.Yuzu;
public ColorId ColorfulLaneColor
{
get => colorfulLaneColor;
Expand Down
25 changes: 0 additions & 25 deletions OngekiFumenEditor/Base/OngekiObjects/ColorIdConst.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,28 +145,6 @@ public static class ColorIdConst
Color = Color.FromArgb(255, 71, 145, 255)
};

public static ColorId LaneRed { get; } = new ColorId()
{
Id = 1020,
Name = nameof(LaneRed),
Color = Color.FromArgb(255, 255, 0, 0)
};

public static ColorId LaneGreen { get; } = new ColorId()
{
Id = 1021,
Name = nameof(LaneGreen),
Color = Color.FromArgb(255, 0, 255, 0)
};

public static ColorId LaneBlue { get; } = new ColorId()
{
Id = 1022,
Name = nameof(LaneBlue),
Color = Color.FromArgb(255, 0, 0, 255)
};


public static IEnumerable<ColorId> AllColors { get; } = new[]
{
Akari,
Expand All @@ -188,9 +166,6 @@ public static class ColorIdConst
Black,
Akane,
Aoi,
LaneRed,
LaneGreen,LaneG,
LaneBlue,
};
}
}

0 comments on commit b014929

Please sign in to comment.