1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Add generated Reverser RC

Includes previous function `vehicle_visual_reverser`
This commit is contained in:
Michał Janiszewski
2016-10-09 14:55:48 +02:00
parent 1ce3c28eee
commit c8ae40332c
3 changed files with 1005 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6306,7 +6306,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_lay_down_rc, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER
get_track_paint_function_suspended_monorail, // RIDE_TYPE_SUSPENDED_MONORAIL
0, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER_ALT
0, // RIDE_TYPE_REVERSER_ROLLER_COASTER
get_track_paint_function_reverser_rc, // RIDE_TYPE_REVERSER_ROLLER_COASTER
0, // RIDE_TYPE_HEARTLINE_TWISTER_COASTER
get_track_paint_function_mini_golf, // RIDE_TYPE_MINI_GOLF
0, // RIDE_TYPE_GIGA_COASTER

View File

@@ -312,6 +312,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_splash_boats(int trackType, int di
TRACK_PAINT_FUNCTION get_track_paint_function_mini_helicopters(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_lay_down_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_suspended_monorail(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_reverser_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mini_golf(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_roto_drop(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_flying_saucers(int trackType, int direction);