mirror of
https://github.com/bjoernellens1/cps_loki_description.git
synced 2024-11-22 07:33:48 +00:00
41 lines
838 B
Plaintext
41 lines
838 B
Plaintext
|
<?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">
|
||
|
<color rgba="0.0 0.0 0.0 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="blue">
|
||
|
<color rgba="0.0 0.0 0.8 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="green">
|
||
|
<color rgba="0.0 0.8 0.0 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="grey">
|
||
|
<color rgba="0.2 0.2 0.2 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="orange">
|
||
|
<color rgba="${255/255} ${108/255} ${10/255} 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="brown">
|
||
|
<color rgba="${222/255} ${207/255} ${195/255} 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="red">
|
||
|
<color rgba="0.8 0.0 0.0 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
<material name="white">
|
||
|
<color rgba="1.0 1.0 1.0 1.0"/>
|
||
|
</material>
|
||
|
|
||
|
</robot>
|