mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
Fix #18552: Trains clipping through helixes
This commit is contained in:
@@ -46,6 +46,7 @@
|
||||
- Fix: [#18453] Slow walking guests don't get across level crossings in time.
|
||||
- Fix: [#18469] Land rights window buttons incorrectly disabled and markers remain visible indefinitely.
|
||||
- Fix: [#18459] ‘Highlight path issues’ hides fences for paths with additions.
|
||||
- Fix: [#18552] Trains clipping through helixes.
|
||||
- Fix: [#18606] JSON objects do not take priority over the DAT files they supersede.
|
||||
- Fix: [#18620] [Plugin] Crash when reading widget properties from windows that have both static and tab widgets.
|
||||
- Fix: [#18653] Negative ratings multipliers do not appear in Vehicle tab.
|
||||
|
||||
@@ -975,12 +975,12 @@ constexpr CoordsXY defaultRightHelixUpSmallQuarterBoundLengths[4][3][2] = {
|
||||
|
||||
constexpr CoordsXYZ defaultRightHelixUpSmallQuarterBoundOffsets[4][3][2] = {
|
||||
{
|
||||
{ { 0, 6, 8 }, { 0, 0, 0 } },
|
||||
{ { 0, 6, 0 }, { 0, 0, 0 } },
|
||||
{ { 16, 16, 0 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 8 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 0, 0, 0 } },
|
||||
},
|
||||
{
|
||||
{ { 6, 0, 8 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 16, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 6, 0 }, { 0, 27, 0 } },
|
||||
},
|
||||
@@ -990,7 +990,7 @@ constexpr CoordsXYZ defaultRightHelixUpSmallQuarterBoundOffsets[4][3][2] = {
|
||||
{ { 0, 0, 0 }, { 27, 0, 0 } },
|
||||
},
|
||||
{
|
||||
{ { 6, 0, 8 }, { 27, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 27, 0, 0 } },
|
||||
{ { 0, 16, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 6, 0 }, { 0, 0, 0 } },
|
||||
},
|
||||
@@ -1040,14 +1040,14 @@ void track_paint_util_right_helix_up_small_quarter_tiles_paint(
|
||||
|
||||
constexpr CoordsXYZ defaultRightHelixUpLargeQuarterBoundOffsets[4][5][2] = {
|
||||
{
|
||||
{ { 0, 6, 8 }, { 0, 0, 0 } },
|
||||
{ { 0, 6, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 16, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 16, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 8 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 0, 0, 0 } },
|
||||
},
|
||||
{
|
||||
{ { 6, 0, 8 }, { 0, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 16, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 16, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 0, 0 }, { 0, 0, 0 } },
|
||||
@@ -1061,7 +1061,7 @@ constexpr CoordsXYZ defaultRightHelixUpLargeQuarterBoundOffsets[4][5][2] = {
|
||||
{ { 0, 0, 0 }, { 27, 0, 0 } },
|
||||
},
|
||||
{
|
||||
{ { 6, 0, 8 }, { 27, 0, 0 } },
|
||||
{ { 6, 0, 0 }, { 27, 0, 0 } },
|
||||
{ { 0, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 16, 0, 0 }, { 0, 0, 0 } },
|
||||
{ { 0, 16, 0 }, { 0, 0, 0 } },
|
||||
|
||||
Reference in New Issue
Block a user