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

Add generated Looping RC

This commit is contained in:
Michał Janiszewski
2016-10-09 14:31:33 +02:00
parent 4f091aac4d
commit 6f94e9fc6d
3 changed files with 6427 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6256,7 +6256,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_launched_freefall, // RIDE_TYPE_LAUNCHED_FREEFALL
get_track_paint_function_bobsleigh_rc, // RIDE_TYPE_BOBSLEIGH_COASTER
get_track_paint_function_observation_tower, // RIDE_TYPE_OBSERVATION_TOWER
0, // RIDE_TYPE_LOOPING_ROLLER_COASTER
get_track_paint_function_looping_rc, // RIDE_TYPE_LOOPING_ROLLER_COASTER
get_track_paint_function_dinghy_slide, // RIDE_TYPE_DINGHY_SLIDE
0, // RIDE_TYPE_MINE_TRAIN_COASTER
get_track_paint_function_chairlift, // RIDE_TYPE_CHAIRLIFT

View File

@@ -274,6 +274,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_car_ride(int trackType, int direct
TRACK_PAINT_FUNCTION get_track_paint_function_launched_freefall(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_bobsleigh_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_observation_tower(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_looping_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_dinghy_slide(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_chairlift(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_maze(int trackType, int direction);