RS-3D - Interactive 3D Vehicle Viewing

Installation

How to install RS-3D

Installing RS-3D is just as simple as ever, simply download the resource from the FiveM Portal where you normally download purchased resources from and follow the instructions below.

Requirements

Before installing RS-3D, make sure you have the model data downloaded:

Once the model data has been downloaded, follow the instructions below.

Installation

Note: Make sure that you have the model data downloaded before proceeding with the installation!

  1. Download the latest version of RS-3D from the FiveM Portal.
  2. Extract the contents of the downloaded ZIP file to your FiveM server resouces directory.
  3. Open the model_data.7z archive.
  4. Extract the model_data folder into the RS-3D resource folder.
  5. Start the RS-3D resource on your FiveM server and you are done!

Adding new vehicle models

Note: RS-3D will NOT work with Escrowed vehicle models & compressed vehicle models.

If you have a compressed vehicle model, simply place the .yft and .ytd files into CodeWalker, right click the files and select: Save uncompressed.

Once you have a vehicle model that you want to add into RS-3D, create a new folder with the same name as your vehicle model inside the RS-3D resource folder, for example: adder. Then place the .yft and .ytd files into the folder you just created (for example: adder) inside the data folder of the RS-3D resource.

Once you have added the required files, run the command: generate-models --missing-only in your server console and it will automatically find the new vehicle models and build them for you. Once the process is comeplete, simply restart the RS-3D resource and you are done!

Opening and closing the catalogue

To open and close the catalogue, you can use the built in export functions like this:

RegisterCommand("open_catalogue", function()
    exports.rs_3d:open_ui()
end, false)

RegisterCommand("close_catalogue", function()
    exports.rs_3d:close_ui()
end, false)