forked from carla-simulator/carla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
77 lines (75 loc) · 3.1 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
site_name: CARLA Simulator
repo_url: https://github.com/carla-simulator/carla
docs_dir: Docs
edit_uri: 'edit/master/Docs/'
theme: readthedocs
extra_css: [extra.css]
nav:
- Home: 'index.md'
- Getting started:
- 'Introduction': 'start_introduction.md'
- 'Quick start installation': 'start_quickstart.md'
- Building CARLA:
- 'Linux build': 'build_linux.md'
- 'Windows build': 'build_windows.md'
- 'Update CARLA': 'build_update.md'
- 'Build system': 'build_system.md'
- 'Running in a Docker': 'build_docker.md'
- 'F.A.Q.': 'build_faq.md'
- First steps:
- 'Core concepts': 'core_concepts.md'
- '1st- World and client': 'core_world.md'
- '2nd- Actors and blueprints': 'core_actors.md'
- '3rd- Maps and navigation': 'core_map.md'
- '4th- Sensors and data': 'core_sensors.md'
- Advanced steps:
- 'OpenDRIVE standalone mode': 'adv_opendrive.md'
- 'PTV-Vissim co-simulation': 'adv_ptv.md'
- 'Recorder': 'adv_recorder.md'
- 'Rendering options': 'adv_rendering_options.md'
- 'RSS': 'adv_rss.md'
- 'SUMO co-simulation': 'adv_sumo.md'
- 'Synchrony and time-step': 'adv_synchrony_timestep.md'
- 'Traffic Manager': 'adv_traffic_manager.md'
- References:
- 'Python API reference': 'python_api.md'
- 'Blueprint Library': 'bp_library.md'
- 'C++ reference' : 'ref_cpp.md'
- 'Recorder binary file format': 'ref_recorder_binary_file_format.md'
- "Sensors reference": 'ref_sensors.md'
- Plugins:
- 'carlaviz — web visualizer': 'plugins_carlaviz.md'
- ROS bridge:
- 'ROS bridge installation': 'ros_installation.md'
- 'CARLA messages reference': 'ros_msgs.md'
- 'Launchfiles reference': 'ros_launchs.md'
- Tutorials (general):
- 'Add friction triggers': "tuto_G_add_friction_triggers.md"
- 'Control vehicle physics': "tuto_G_control_vehicle_physics.md"
- 'Control walker skeletons': "tuto_G_control_walker_skeletons.md"
- 'Generate maps with OpenStreetMap': 'tuto_G_openstreetmap.md'
- 'Retrieve simulation data': "tuto_G_retrieve_data.md"
- 'CarSim Integration (Beta)': "carsim_integration.md"
- Tutorials (assets):
- 'Add a new map': 'tuto_A_add_map.md'
- 'Add a new vehicle': 'tuto_A_add_vehicle.md'
- 'Add new props': 'tuto_A_add_props.md'
- 'Create standalone packages': 'tuto_A_create_standalone.md'
- 'Map customization tools': 'tuto_A_map_customization.md'
- "Material customization": 'tuto_A_material_customization.md'
- 'Vehicle modelling': 'tuto_A_vehicle_modelling.md'
- Tutorials (developers):
- 'Contribute assets': 'tuto_D_contribute_assets.md'
- 'Create a sensor': 'tuto_D_create_sensor.md'
- 'Create semantic tags': 'tuto_D_create_semantic_tags.md'
- 'Customize vehicle suspension': 'tuto_D_customize_vehicle_suspension.md'
- 'Generate detailed colliders': 'tuto_D_generate_colliders.md'
- 'Make a release': 'tuto_D_make_release.md'
- 'Generate pedestrian navigation': 'tuto_D_generate_pedestrian_navigation.md'
- Contributing:
- 'Contribution guidelines': 'cont_contribution_guidelines.md'
- 'Code of conduct': 'cont_code_of_conduct.md'
- 'Coding standard': 'cont_coding_standard.md'
- 'Documentation standard': 'cont_doc_standard.md'
markdown_extensions:
- admonition