mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
More finishing touches
- Changes all references of `VIEWPORT_FLAG_INVISIBLE_PEEPS` to `VIEWPORT_FLAG_INVISIBLE_GUESTS` and `VIEWPORT_FLAG_INVISIBLE_STAFF` - Updates Invisible People menu item and shortcut. - Added new viewport flags into the `viewport_set_visibility` function - Invisible options only work if see-through is activated as well - Added see-through supports - Regression: Exclude ride from invisible no longer works (ride is still see-through)
This commit is contained in:
@@ -564,7 +564,7 @@ static void ApplyOptions(const ScreenshotOptions* options, rct_viewport& viewpor
|
||||
|
||||
if (options->hide_guests)
|
||||
{
|
||||
viewport.flags |= VIEWPORT_FLAG_INVISIBLE_PEEPS;
|
||||
viewport.flags |= VIEWPORT_FLAG_INVISIBLE_GUESTS | VIEWPORT_FLAG_INVISIBLE_STAFF;
|
||||
}
|
||||
|
||||
if (options->hide_sprites)
|
||||
|
||||
Reference in New Issue
Block a user