float lon = arg->getFloatValue("lon-deg", 0.0f);
float lat = arg->getFloatValue("lat-deg", 0.0f);
float alt = arg->getFloatValue("alt-ft", 0.0f);
+ float x = arg->getFloatValue("x-offset-m", 0.0f);
+ float y = arg->getFloatValue("y-offset-m", 0.0f);
+
- // Adding a 3D cloud immediately makes this layer 3D.
- thesky->get_cloud_layer(l)->set_enable3dClouds(true);
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
SGNewCloud cld = SGNewCloud(texture_root, arg);
- return layer->addCloud(lon, lat, alt, index, cld.genCloud());
+ bool success = layer->addCloud(lon, lat, alt, x, y, index, cld.genCloud());
+
+ // Adding a 3D cloud immediately makes this layer 3D.
+ thesky->get_cloud_layer(l)->set_enable3dClouds(true);
+
+ return success;
}
/**