I created a simple .world
file:
<?xml version="1.0"?>
<sdf version="1.4">
<world name="office">
<include>
<uri>model://sun</uri>
</include>
<include>
<uri>model://ground_plane</uri>
</include>
</world>
</sdf>
My launch file also adds a robot to this world. It launches fine in gazebo, I can see the gray ground plane with grid markings on it and also my robot.
Next I created a simple building layout (some walls created using Gazebo's building editor). I saved the building model and added these lines to my .world
file:
<include>
<uri>model://car_description/models/tunnel</uri>
<pose>25 20.2 0 0 0 0</pose>
</include>
When I launch the file again, this time it takes ages to launch. I see a 'Preparing your world ...' screen for a long time (~10 mins):
and then I see this dark screen:
There are no errors thrown in the terminal. What am I doing wrong?