From 65607d4a7b8576905bb08f68a506aa87db258368 Mon Sep 17 00:00:00 2001 From: Stuart Buchanan Date: Sun, 24 Apr 2011 20:48:18 +0100 Subject: [PATCH] Add x-offset-m and y-offset-m to move-cloud command. --- src/Environment/fgclouds.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Environment/fgclouds.cxx b/src/Environment/fgclouds.cxx index 6bd1d5aa7..c57c4ee1d 100644 --- a/src/Environment/fgclouds.cxx +++ b/src/Environment/fgclouds.cxx @@ -408,7 +408,9 @@ 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(); - return layer->repositionCloud(i, lon, lat, alt); + return layer->repositionCloud(i, lon, lat, alt, x, y); } -- 2.39.5