Right Hand Drive Vehicles

Been seeing a lot of older posts about this, couldn’t find anything recent. Was just wondering if there has been a fix for RHD cars crashing on enter besides changing the layout line…
Thanks

Likely your layout placement is wrong in your manifest. You need it to be in a specific order for the layout to be recognized by the vehicle. As an example, here is one of my vehicles:

data_file 'VEHICLE_LAYOUTS_FILE' 'cars/jza80/vehiclelayouts.meta'
data_file 'HANDLING_FILE'   'cars/jza80/handling.meta'
data_file 'VEHICLE_METADATA_FILE' 'cars/jza80/vehicles.meta'
data_file 'CARCOLS_FILE'   'cars/jza80/carcols.meta'
data_file 'VEHICLE_VARIATION_FILE' 'cars/jza80/carvariations.meta'

As you can see, the vehiclelayouts.meta is BEFORE loading the vehicles.meta of the car. If you load it after, the vehicles.meta does not recognize the layout it is designated to use.

I have tons of RHD vehicles, they all work perfectly fine with its designated RHD layout, so either you are loading the file wrong in the manifest, or you have a corrupt vehiclelayouts meta.

1 Like

Okay, I got it to work. Thanks. I must’ve been doing something small that was messing it up.