File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ module JsonTypes =
181181 [<DataMember( EmitDefaultValue = false ) >]
182182 VEHICLE_ENTRY_FLAG_DODGEM_CAR_PLACEMENT: bool
183183 [<DataMember( EmitDefaultValue = false ) >]
184- loadingWaypointsRatio : float option
184+ numSegments : int option
185185 [<DataMember( EmitDefaultValue = false ) >]
186186 loadingPositions: int []
187187 [<DataMember( EmitDefaultValue = false ) >]
Original file line number Diff line number Diff line change @@ -256,16 +256,16 @@ module PropertyExtractor =
256256 VEHICLE_ ENTRY_ FLAG_ WATER_ RIDE = hasFlag 29
257257 VEHICLE_ ENTRY_ FLAG_ GO_ KART = hasFlag 30
258258 VEHICLE_ ENTRY_ FLAG_ DODGEM_ CAR_ PLACEMENT = hasFlag 31
259- loadingWaypointsRatio =
259+ numSegments =
260260 match loadingWaypoints with
261261 | Some loadingWaypoints ->
262262 if Array.contains TrackTypes.Enterprise ride.Header.TrackTypeList then
263- Some 2.0
263+ Some 8
264264 else
265265 if int ( Array.head loadingWaypoints) = 0 then
266- Some 0.5
266+ Some 0
267267 else
268- Some 1.0
268+ Some 4
269269 | None -> None
270270 loadingPositions =
271271 match loadingPositions with
You can’t perform that action at this time.
0 commit comments