Add generated Stand up RC

This commit is contained in:
Michał Janiszewski 2016-10-09 14:19:14 +02:00
parent 482e7c15f0
commit 8b6f775cff
3 changed files with 5896 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6241,8 +6241,8 @@ const track_curve_chain gFlatRideTrackCurveChain[256] = {
};
const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_spiral_rc, // RIDE_TYPE_SPIRAL_ROLLER_COASTER
0, // RIDE_TYPE_STAND_UP_ROLLER_COASTER
get_track_paint_function_spiral_rc, // RIDE_TYPE_SPIRAL_ROLLER_COASTER
get_track_paint_function_stand_up_rc, // RIDE_TYPE_STAND_UP_ROLLER_COASTER
0, // RIDE_TYPE_SUSPENDED_SWINGING_COASTER
0, // RIDE_TYPE_INVERTED_ROLLER_COASTER
get_track_paint_function_junior_rc, // RIDE_TYPE_JUNIOR_ROLLER_COASTER

View File

@ -261,6 +261,7 @@ typedef void (*TRACK_PAINT_FUNCTION)(uint8 rideIndex, uint8 trackSequence, uint8
typedef TRACK_PAINT_FUNCTION (*TRACK_PAINT_FUNCTION_GETTER)(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_spiral_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_stand_up_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_junior_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_monorail(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_boat_ride(int trackType, int direction);