From f295d1eebf6a03a0ed4bf9d76b5651a1d8021720 Mon Sep 17 00:00:00 2001 From: corkyw10 Date: Fri, 9 Apr 2021 16:06:08 +0200 Subject: [PATCH] Added note about directory needing write permissions to parse xodr correctly. --- Docs/adv_opendrive.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Docs/adv_opendrive.md b/Docs/adv_opendrive.md index 7c2c68c46..4f6634c97 100644 --- a/Docs/adv_opendrive.md +++ b/Docs/adv_opendrive.md @@ -48,7 +48,10 @@ python3 config.py -x opendrive/TownBig.xodr ``` !!! Important - __[client.generate_opendrive_world()](python_api.md#carla.Client.generate_opendrive_world)__ uses __content of the OpenDRIVE file parsed as string__. On the contrary, __`config.py`__ script needs __the path to the `.xodr` file__. + __[client.generate_opendrive_world()](python_api.md#carla.Client.generate_opendrive_world)__ uses __content of the OpenDRIVE file parsed as string__. On the contrary, __`config.py`__ script needs __the path to the `.xodr` file__. + +!!! Note + If you experience the error `opendrive could not be correctly parsed`, ensure that there are write permissions on the `CarlaUE4/Content/Carla/Maps/OpenDrive/` directory. This is required by the server to parse the `xodr` file correctly. --- ## Mesh generation