RHD Cars
-
Hi guys! Just want to ask how I can make my character walk and enter the car at the right side? I'm currently working on an RHD car. Thanks in advance!
-
Hi OhiOchinu .... Even i also have the same doubt
-
@OhiOcinu You have to set it up in VehicleLayout.meta I believe, have a look at the meta files in this mod. https://www.gta5-mods.com/vehicles/nissan-fairlady-z-s30-addon-rhd-devil-z
Note in the <Entrypoints> section, the <EntryPointInfo /> and <EntryPointAnimInfo /> elements have their sides reversed.
<EntryPoints> <Item> <EntryPointInfo ref="ENTRY_POINT_NSX_FRONT_LEFT" /> <EntryPointAnimInfo ref="ENTRY_POINT_ANIM_LOW_NSX_FRONT_RIGHT" /> </Item> <Item> <EntryPointInfo ref="ENTRY_POINT_NSX_FRONT_RIGHT" /> <EntryPointAnimInfo ref="ENTRY_POINT_ANIM_LOW_NSX_FRONT_LEFT" /> </Item> </EntryPoints>
I will move this into Modding Discussion as well for you, in case I am wrong. You will get a better chance of the correct answer in that section.
-
@LeeC2202 said in RHD Cars:
@OhiOcinu You have to set it up in VehicleLayout.meta I believe, have a look at the meta files in this mod. https://www.gta5-mods.com/vehicles/nissan-fairlady-z-s30-addon-rhd-devil-z
Note in the <Entrypoints> section, the <EntryPointInfo /> and <EntryPointAnimInfo /> elements have their sides reversed.
<EntryPoints>
<Item>
<EntryPointInfo ref="ENTRY_POINT_NSX_FRONT_LEFT" />
<EntryPointAnimInfo ref="ENTRY_POINT_ANIM_LOW_NSX_FRONT_RIGHT" />
</Item>
<Item>
<EntryPointInfo ref="ENTRY_POINT_NSX_FRONT_RIGHT" />
<EntryPointAnimInfo ref="ENTRY_POINT_ANIM_LOW_NSX_FRONT_LEFT" />
</Item>
</EntryPoints>I will move this into Modding Discussion as well for you, in case I am wrong. You will get a better chance of the correct answer in that section.
I will have a look on that. Thanks man!