Custom Cart Styles
Custom Cart Styles
Customize your ride vehicles with custom 3D cart models in various formats.
Using Existing Presets
Quick Selection
- View → Cart Style
- Select from available configurations
- Cart updates immediately in the 3D view and ride camera
Creating Custom Configurations
Accessing Files
- View → Cart Style → Open Folder
- Click README.md for technical instructions
- Study existing
.json
files to understand the format
Basic Workflow
- Create a
.json
configuration file - Add your
.obj
or.gltf/.glb
mesh files to the folder - Select your configuration from the View menu
File Requirements
- JSON configuration defines the cart name and mesh path
- 3D mesh files in
.obj
,.gltf
, or.glb
format - GLTF/GLB files preserve materials and textures
- OBJ files get default materials applied
Simple Configuration Example
{
"Name": "MyCart",
"Styles": [
{
"MeshPath": "MyCustomCart.glb"
}
]
}
For complete configuration format and technical details, see README.md in the CartStyles folder.