My current .sdf file looks like the following. my goal is to set the background to a specific colour by changing this sdf file. Found online "solutions" state that this can be done by setting the background variable in the scene tag. However I can't see any changes when this is done. The only thing i can think of is maybe its being overridden by some other value, but the verbose output seems fine.
<?xml version="1.0" ?>
<sdf version='1.9'>
<world name='default'>
<physics name='1ms' type='ignored'>
<max_step_size>0.001</max_step_size>
<real_time_factor>1</real_time_factor>
<real_time_update_rate>1000</real_time_update_rate>
</physics>
<scene>
<ambient>0 0 0 0</ambient>
<background>0 0 0 0</background>
<shadows>true</shadows>
<grid>true</grid>
</scene>
<light name='sun' type='directional'>
<pose>0 0 10 0 -0 0</pose>
<cast_shadows>true</cast_shadows>
<intensity>1</intensity>
<direction>-0.5 0.1 -0.9</direction>
<diffuse>0.8 0.8 0.8 1</diffuse>
<specular>0.2 0.2 0.2 1</specular>
<attenuation>
<range>1000</range>
<linear>0.01</linear>
<constant>0.90000000000000002</constant>
<quadratic>0.001</quadratic>
</attenuation>
<spot>
<inner_angle>0</inner_angle>
<outer_angle>0</outer_angle>
<falloff>0</falloff>
</spot>
</light>
</world>
</sdf>
