1
0
Fork 0

Further updates to 3D clouds

This commit is contained in:
Stuart Buchanan 2011-04-22 21:06:28 +01:00
parent 0becb0df2b
commit 202e957154

View file

@ -357,12 +357,18 @@ bool FGClouds::get_3dClouds() const
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);
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
SGNewCloud cld = SGNewCloud(texture_root, arg);
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);
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
SGNewCloud cld = SGNewCloud(texture_root, arg);
return layer->addCloud(lon, lat, alt, index, cld.genCloud());
return success;
}
/**