cps_loki_description/urdf/diffbot.materials.xacro

48 lines
1009 B
Plaintext
Raw Normal View History

2023-06-01 08:05:36 +00:00
<?xml version="1.0"?>
<!--
Copied from ROS1 example:
https://github.com/ros-simulation/gazebo_ros_demos/blob/kinetic-devel/rrbot_description/urdf/materials.xacro
-->
<robot>
<material name="black">
2023-06-06 08:53:36 +00:00
<color rgba="0.0 0.0 0.0 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="blue">
2023-06-06 08:53:36 +00:00
<color rgba="0.0 0.0 0.8 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="green">
2023-06-06 08:53:36 +00:00
<color rgba="0.0 0.8 0.0 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="grey">
2023-06-06 08:53:36 +00:00
<color rgba="0.2 0.2 0.2 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="orange">
2023-06-06 08:53:36 +00:00
<color rgba="${255/255} ${108/255} ${10/255} 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="brown">
2023-06-06 08:53:36 +00:00
<color rgba="${222/255} ${207/255} ${195/255} 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="red">
2023-06-06 08:53:36 +00:00
<color rgba="0.8 0.0 0.0 1.0" />
2023-06-01 08:05:36 +00:00
</material>
<material name="white">
2023-06-06 08:53:36 +00:00
<color rgba="1.0 1.0 1.0 1.0" />
2023-06-01 08:05:36 +00:00
</material>
2023-11-20 11:42:37 +00:00
<material name="grey2">
<color rgba="0.9 0.9 0.9 1.0"/>
</material>
<material name="lightGrey">
<color rgba="0.6 0.6 0.6 1.0"/>
</material>
2023-06-06 08:53:36 +00:00
</robot>