Skip to content

Commit

Permalink
Tweak storage track colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Insprill committed Apr 28, 2023
1 parent fc8cd16 commit c063653
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MapifyEditor/Trackage/Track.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void OnValidate()
Curve.drawColor = new Color32(255, 255, 255, 255);
break;
case TrackType.Storage:
Curve.drawColor = new Color32(255, 127, 80, 255);
Curve.drawColor = new Color32(172, 134, 101, 255);
break;
case TrackType.Loading:
Curve.drawColor = new Color32(0, 0, 128, 255);
Expand All @@ -82,7 +82,7 @@ private void OnValidate()
Curve.drawColor = new Color32(200, 235, 0, 255);
break;
case TrackType.PassengerStorage:
Curve.drawColor = new Color32(0, 128, 128, 255);
Curve.drawColor = new Color32(0, 100, 100, 255);
break;
case TrackType.PassengerLoading:
Curve.drawColor = new Color32(0, 255, 255, 255);
Expand Down

0 comments on commit c063653

Please sign in to comment.