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

Add generated Suspended monorail

This commit is contained in:
Michał Janiszewski
2016-10-09 14:47:46 +02:00
parent 3e5d445b79
commit 1ce3c28eee
4 changed files with 1166 additions and 2 deletions

View File

@@ -65,7 +65,8 @@ enum
TUNNEL_11 = 0x0B,
TUNNEL_12 = 0x0C,
TUNNEL_13 = 0x0D,
TUNNEL_14 = 0x0E
TUNNEL_14 = 0x0E,
TUNNEL_15 = 0x0F,
};
typedef struct tunnel_entry {

View File

@@ -6304,7 +6304,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_splash_boats, // RIDE_TYPE_SPLASH_BOATS
get_track_paint_function_mini_helicopters, // RIDE_TYPE_MINI_HELICOPTERS
get_track_paint_function_lay_down_rc, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER
0, // RIDE_TYPE_SUSPENDED_MONORAIL
get_track_paint_function_suspended_monorail, // RIDE_TYPE_SUSPENDED_MONORAIL
0, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER_ALT
0, // RIDE_TYPE_REVERSER_ROLLER_COASTER
0, // RIDE_TYPE_HEARTLINE_TWISTER_COASTER

View File

@@ -311,6 +311,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_virginia_reel(int trackType, int d
TRACK_PAINT_FUNCTION get_track_paint_function_splash_boats(int trackType, int direction);
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_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);

File diff suppressed because it is too large Load Diff