Skip to content
This repository was archived by the owner on Feb 21, 2021. It is now read-only.
Merged

#907 #908

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
material vrc/acera
{
technique
{
pass
{
ambient 0.5 0.5 0.5 1.0
diffuse 0.5 0.5 0.5 1.0
specular 0.2 0.2 0.2 1.0 12.5

texture_unit
{
texture acera.jpg
filtering anistropic
max_anisotropy 16
}
}
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions src/drivers/gazeboserver/models/acera/model.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>

<model>
<name>acera</name>
<version>1.0</version>
<sdf version="1.5">model.sdf</sdf>

<author>
<name>Thomas Koletschka</name>
<email>thomas.koletschka@gmail.com</email>
</author>

<description>
A mud textured plane.
</description>

</model>
80 changes: 80 additions & 0 deletions src/drivers/gazeboserver/models/acera/model.sdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?xml version="1.0" ?>
<sdf version="1.5">
<model name="acera">
<static>true</static>
<link name="link">
<collision name="collision">
<geometry>
<!--mesh><uri>model://acera/materials/scripts</uri></mesh-->
<box>
<size>60 8 0.2</size>
</box>
</geometry>
</collision>
<visual name="visual_1">
<pose>-15 2 0 0 0 0</pose>
<cast_shadows>false</cast_shadows>
<geometry>
<box>
<size>30 4 0.2</size>
</box>
</geometry>
<material>
<script>
<uri>model://acera/materials/scripts</uri>
<uri>model://acera/materials/textures</uri>
<name>vrc/acera</name>
</script>
</material>
</visual>
<visual name="visual_2">
<pose>15 2 0 0 0 0</pose>
<cast_shadows>false</cast_shadows>
<geometry>
<box>
<size>30 4 0.2</size>
</box>
</geometry>
<material>
<script>
<uri>model://acera/materials/scripts</uri>
<uri>model://acera/materials/textures</uri>
<name>vrc/acera</name>
</script>
</material>
</visual>
<visual name="visual_3">
<pose>15 -2 0 0 0 0</pose>
<cast_shadows>false</cast_shadows>
<geometry>
<box>
<size>30 4 0.2</size>
</box>
</geometry>
<material>
<script>
<uri>model://acera/materials/scripts</uri>
<uri>model://acera/materials/textures</uri>
<name>vrc/acera</name>
</script>
</material>
</visual>
<visual name="visual_4">
<pose>-15 -2 0 0 0 0</pose>
<cast_shadows>false</cast_shadows>
<geometry>
<box>
<size>30 4 0.2</size>
</box>
</geometry>
<material>
<script>
<uri>model://acera/materials/scripts</uri>
<uri>model://acera/materials/textures</uri>
<name>vrc/acera</name>
</script>
</material>
</visual>
</link>
</model>
</sdf>
Loading