-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nate Koenig <[email protected]>
- Loading branch information
Nate Koenig
committed
May 5, 2021
1 parent
d3738cb
commit 281af4f
Showing
7 changed files
with
274 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" ?> | ||
<!-- | ||
Test world downloading two tile files | ||
--> | ||
<sdf version="1.6"> | ||
<world name="collada_world_exporter_submesh_test"> | ||
<plugin | ||
filename="libignition-gazebo-physics-system.so" | ||
name="ignition::gazebo::systems::Physics"> | ||
</plugin> | ||
|
||
<plugin | ||
filename="ignition-gazebo-collada-world-exporter-system" | ||
name="ignition::gazebo::systems::ColladaWorldExporter"> | ||
</plugin> | ||
|
||
<include> | ||
<static>true</static> | ||
<pose>22 111 -10 0 -0 0</pose> | ||
<uri>model://mesh_with_submeshes</uri> | ||
</include> | ||
|
||
</world> | ||
</sdf> |
Binary file added
BIN
+39.7 KB
test/worlds/models/mesh_with_submeshes/materials/textures/cordless_drill.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
186 changes: 186 additions & 0 deletions
186
test/worlds/models/mesh_with_submeshes/meshes/mesh_with_submeshes.dae
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" ?> | ||
<model> | ||
<name>mesh_with_submeshes</name> | ||
<version>1.0</version> | ||
<sdf version="1.6">model.sdf</sdf> | ||
</model> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version='1.0'?> | ||
<sdf version='1.6'> | ||
<model name='scheme_resource_uri'> | ||
<pose>0 0 1 0 0 0</pose> | ||
<link name='the_link'> | ||
<visual name='the_visual'> | ||
<geometry> | ||
<mesh> | ||
<uri>model://mesh_with_submeshes/meshes/mesh_with_submeshes.dae</uri> | ||
</mesh> | ||
</geometry> | ||
</visual> | ||
<collision name='the_collision'> | ||
<geometry> | ||
<mesh> | ||
<uri>model://mesh_with_submeshes/meshes/mesh_with_submeshes.dae</uri> | ||
</mesh> | ||
</geometry> | ||
</collision> | ||
</link> | ||
</model> | ||
</sdf> | ||
|