1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add generated Vertical drop RC

This commit is contained in:
Michał Janiszewski
2016-10-09 14:35:35 +02:00
parent 1d3c113439
commit ef4a2f4106
3 changed files with 7428 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6285,7 +6285,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_space_rings, // RIDE_TYPE_SPACE_RINGS
get_track_paint_function_reverse_freefall_rc, // RIDE_TYPE_REVERSE_FREEFALL_COASTER
get_track_paint_function_lift, // RIDE_TYPE_LIFT
0, // RIDE_TYPE_VERTICAL_DROP_ROLLER_COASTER
get_track_paint_function_vertical_drop_rc, // RIDE_TYPE_VERTICAL_DROP_ROLLER_COASTER
get_track_paint_function_shop, // RIDE_TYPE_CASH_MACHINE
get_track_paint_function_twist, // RIDE_TYPE_TWIST
get_track_paint_function_haunted_house, // RIDE_TYPE_HAUNTED_HOUSE

View File

@@ -294,6 +294,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_topspin(int trackType, int directi
TRACK_PAINT_FUNCTION get_track_paint_function_space_rings(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_reverse_freefall_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_lift(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_vertical_drop_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_shop(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_merry_go_round(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_facility(int trackType, int direction);