Further updates to 3D clouds
This commit is contained in:
parent
0becb0df2b
commit
202e957154
1 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue