RS-3D - Interactive 3D Vehicle Viewing

Configuration

How to configure RS-3D

The RS-3D resource comes with a simple configuration file that you can use to adjust the settings of the resource.

Development mode

If you are running the server locally, set the Config.OverrideLocalMode to true in the config file to enable development mode. This will make the resource fetch the vehicle models locally instead of from public endpoint.

Vehicle configuration

In the config file you have full control and can define exactly which vehicle model should be viewable, the vehicle maker, model and which scene the vehicle model should be rendered in.

To add a new vehicle model, simply add a new entry to the Config.Vehicles array. Example:

Config.Vehicles = {
    m3e36 = { maker = "BMW", model = "M3 E36", room = "showroom" }
}

This will then add the vehicle model m3e36 to the resource with the maker brand BMW, model name M3 E36 and make the vehicle render in the scene showroom.

If you want to remove a vehicle model from the resource, simply remove the entry from the Config.Vehicles array.