1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 02:05:13 +01:00

Misc. clean ups

Define see-through paint colours in Paint.h for global use
Color staff sprite button
Change ride->is_visible bool to ignore_invisible_flag bool
Add shortcut to open transparency options (CTRL+T)
This commit is contained in:
Kane
2021-08-14 00:54:16 +10:00
committed by Ted John
parent 9bf003c018
commit 3d3271a5ec
10 changed files with 76 additions and 149 deletions

View File

@@ -2196,7 +2196,7 @@ void PaintTrack(paint_session& session, Direction direction, int32_t height, con
}
if ((session->ViewFlags & VIEWPORT_FLAG_SEETHROUGH_RIDES && session->ViewFlags & VIEWPORT_FLAG_INVISIBLE_RIDES)
&& ride->is_visible == false)
&& ride->ignore_invisible_flag == false)
return;
if ((!gTrackDesignSaveMode || rideIndex == gTrackDesignSaveRideIndex)