mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-06 06:32:56 +01:00
Fix Junior RC flat to steep general support heights different to RCT1
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
- Fix: [#25146] The support clearance height of the diagonal brakes for the Junior, inverted Flying and inverted Lay-down Roller Coasters is too high.
|
||||
- Fix: [#25147] The wooden support clearance heights for steep Log Flume track pieces are too low.
|
||||
- Fix: [#25160] The Go-Karts steep to flat track piece has incorrect wooden support clearance heights.
|
||||
- Fix: [#25163] Some of the Junior Roller Coaster flat to steep track wooden support clearance heights are different to RCT1.
|
||||
|
||||
0.4.26 (2025-09-06)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
@@ -4733,7 +4733,7 @@ static void JuniorRCPaintTrackDiagFlatTo60DegDown(
|
||||
|
||||
int32_t blockedSegments = BlockedSegments::kDiagStraightFlat[trackSequence];
|
||||
PaintUtilSetSegmentSupportHeight(session, PaintUtilRotateSegments(blockedSegments, direction), 0xFFFF, 0);
|
||||
PaintUtilSetGeneralSupportHeight(session, height + 48);
|
||||
PaintUtilSetGeneralSupportHeight(session, height + 72);
|
||||
}
|
||||
|
||||
template<JuniorRCSubType TSubType>
|
||||
@@ -5617,7 +5617,7 @@ static void JuniorRCFlatTo60DegUpPaintSetup(
|
||||
PaintUtilRotateSegments(
|
||||
EnumsToFlags(PaintSegment::centre, PaintSegment::bottomLeft, PaintSegment::topRight), direction),
|
||||
0xFFFF, 0);
|
||||
PaintUtilSetGeneralSupportHeight(session, height + 72);
|
||||
PaintUtilSetGeneralSupportHeight(session, height + 64);
|
||||
}
|
||||
|
||||
static void JuniorRC60DegDownToFlatPaintSetup(
|
||||
|
||||
Reference in New Issue
Block a user