Skip to content

Commit 8dafbd4

Browse files
committed
add road station image names
1 parent ddb494a commit 8dafbd4

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

Definitions/ObjectModels/Objects/RoadStation/RoadStationObject.cs

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,22 @@ public bool TryGetImageName(int id, out string? value)
6464
public static Dictionary<int, string> ImageIdNameMap = new()
6565
{
6666
{ 0, "preview_image" },
67-
{ 1, "preview_image_windows" },
68-
{ 2, "totalPreviewImages" },
69-
70-
// These are relative to ImageOffsets
71-
// ImageOffsets is the imageIds per sequenceIndex (for start/middle/end of the platform)
72-
//namespace Style0
73-
//{
74-
// constexpr uint32_t totalNumImages = 8;
75-
//}
76-
};
67+
{ 1, "preview_image_glass_overlay" },
68+
{ 2, "North West Back Wall" },
69+
{ 3, "North West Front Platform" },
70+
{ 4, "North West Front Wall/Roof" },
71+
{ 5, "North West Glass Overlay" },
72+
{ 6, "South West Back Wall" },
73+
{ 7, "South West Front Platform" },
74+
{ 8, "South West Front Wall/Roof" },
75+
{ 9, "South West Glass Overlay" },
76+
{ 10, "South East Back Wall" },
77+
{ 11, "South East Front Platform" },
78+
{ 12, "South East Front Wall/Roof" },
79+
{ 13, "South East Glass Overlay" },
80+
{ 14, "North East Back Wall" },
81+
{ 15, "North East Front Platform" },
82+
{ 16, "North East Front Wall/Roof" },
83+
{ 17, "North East Glass Overlay" },
84+
};
7785
}

Definitions/ObjectModels/Objects/TrackStation/TrackStationObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public bool TryGetImageName(int id, out string? value)
5555
public static readonly Dictionary<int, string> ImageIdNameMap = new()
5656
{
5757
{ 0, "preview_image" },
58-
{ 1, "preview_image_windows" },
58+
{ 1, "preview_image_glass_overlay" },
5959
{ 2, "totalPreviewImages" },
6060
};
6161

0 commit comments

Comments
 (0)