mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-22 15:23:01 +01:00
Fix train glitching on Bobsleigh Coaster small helixes (#23809)
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
- Fix: [#22617] Sloped Wooden and Side-Friction supports draw out of order when built directly above diagonal track pieces.
|
- Fix: [#22617] Sloped Wooden and Side-Friction supports draw out of order when built directly above diagonal track pieces.
|
||||||
- Fix: [#23522] Diagonal sloped Steeplechase supports have glitched sprites at the base.
|
- Fix: [#23522] Diagonal sloped Steeplechase supports have glitched sprites at the base.
|
||||||
- Fix: [#23795] Looping Roller Coaster vertical loop supports are drawn incorrectly.
|
- Fix: [#23795] Looping Roller Coaster vertical loop supports are drawn incorrectly.
|
||||||
|
- Fix: [#23809] Trains glitch on Bobsleigh Coaster small helixes.
|
||||||
|
|
||||||
0.4.19.1 (2025-02-03)
|
0.4.19.1 (2025-02-03)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -2314,7 +2314,7 @@ static void BobsleighRCTrackLeftHalfBankedHelixUpSmall(
|
|||||||
case 3:
|
case 3:
|
||||||
PaintAddImageAsParentRotated(
|
PaintAddImageAsParentRotated(
|
||||||
session, direction, session.TrackColours.WithIndex(14884), { 0, 0, height },
|
session, direction, session.TrackColours.WithIndex(14884), { 0, 0, height },
|
||||||
{ { 0, 6, height + 8 }, { 32, 20, 2 } });
|
{ { 0, 6, height }, { 32, 20, 2 } });
|
||||||
PaintAddImageAsParentRotated(
|
PaintAddImageAsParentRotated(
|
||||||
session, direction, session.TrackColours.WithIndex(14896), { 0, 0, height },
|
session, direction, session.TrackColours.WithIndex(14896), { 0, 0, height },
|
||||||
{ { 0, 6, height + 27 }, { 32, 20, 0 } });
|
{ { 0, 6, height + 27 }, { 32, 20, 0 } });
|
||||||
@@ -2551,7 +2551,7 @@ static void BobsleighRCTrackLeftHalfBankedHelixUpSmall(
|
|||||||
case 0:
|
case 0:
|
||||||
PaintAddImageAsParentRotated(
|
PaintAddImageAsParentRotated(
|
||||||
session, direction, session.TrackColours.WithIndex(14882), { 0, 0, height },
|
session, direction, session.TrackColours.WithIndex(14882), { 0, 0, height },
|
||||||
{ { 0, 6, height + 8 }, { 32, 20, 2 } });
|
{ { 0, 6, height }, { 32, 20, 2 } });
|
||||||
PaintAddImageAsParentRotated(
|
PaintAddImageAsParentRotated(
|
||||||
session, direction, session.TrackColours.WithIndex(14894), { 0, 0, height },
|
session, direction, session.TrackColours.WithIndex(14894), { 0, 0, height },
|
||||||
{ { 0, 6, height + 27 }, { 32, 20, 0 } });
|
{ { 0, 6, height + 27 }, { 32, 20, 0 } });
|
||||||
|
|||||||
Reference in New Issue
Block a user