Gazebo | Ignition | Community
Ask Your Question

artuvd's profile - activity

2018-01-17 08:40:46 -0500 received badge  Famous Question (source)
2018-01-17 08:40:46 -0500 received badge  Notable Question (source)
2017-04-19 12:59:04 -0500 commented answer Problem adding collada file

I did another test. I put the ArDrone in to my world with any modification. I've just copied the model from the original

2017-04-12 09:42:49 -0500 commented answer Problem adding collada file

Thanks for your answer! I tried to add the model directory to the .bashrc like this: export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:/usr/local/share/jderobot/gazebo/models:/home/projectfolder/text_test/gazebo/worlds/models And I tried to run it and I have this error: [Err] [ModelDatabase.cc:414] Unable to download model[model://turtlebotJde2cam/meshes/tagtext1.dae] [Err] [SystemPaths.cc:410] File or path does not exist[""] [Err] [Visual.cc:2763] No mesh specified

2017-04-12 09:21:25 -0500 received badge  Popular Question (source)
2017-04-06 14:31:14 -0500 asked a question Problem adding collada file

Hi all,

My name is Arturo, this is my first post.

I am trying to modify the turtlebot adding it a tag with texture made with Blender and exported as Collada file. I add the tag to the model like this:

<collision name="tag1_collision">
      <pose>0 0 0.44 0 0 0</pose>
      <geometry>
        <box>
            <size>0.4 0.2 0.01</size>
       </box>
     </geometry>
   </collision>
    <visual name="tag1_visual">
      <pose>0 0 0.44 0 0 0</pose>
      <cast_shadows>true</cast_shadows>
      <geometry>
        <mesh>
            <uri>model://turtlebotJde2cam/meshes/tagtext1.dae</uri>
        </mesh>
     </geometry>
      <material>
        <diffuse>0 1 0 1</diffuse>
     </material>
   </visual>

And when I try to run my world where this model is added, I is stacked here and nothing happens:

[Msg] Waiting for model database update to complete...
[Wrn] [Publisher.cc:141] Queue limit reached for topic /gazebo/default/pose/local/info, deleting message. This warning is printed only once.

Any clue to fix this problem? The model has more .dae files which are in the same folder than the one i was created with blender.

Thanks in advance, cheers,

Arturo.