feat(simulation): prefer rover world terrain
This commit is contained in:
@@ -679,8 +679,9 @@ def _world_manifest(project_id: str, artifacts: list[dict[str, Any]]) -> dict[st
|
||||
"streamed_sog_url": url_for("stream-manifest"),
|
||||
},
|
||||
"collision": {
|
||||
"mesh_url": url_for("collision-mesh"),
|
||||
"available": url_for("collision-mesh") is not None,
|
||||
"mesh_url": url_for("rover-terrain-mesh") or url_for("collision-mesh"),
|
||||
"available": (url_for("rover-terrain-mesh") or url_for("collision-mesh"))
|
||||
is not None,
|
||||
},
|
||||
"transforms": {
|
||||
"world_from_visual": [1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1],
|
||||
|
||||
Reference in New Issue
Block a user