#ifdef FG_USE_CLOUDS_3D
# include <simgear/scene/sky/clouds3d/SkySceneLoader.hpp>
# include <simgear/scene/sky/clouds3d/SkyUtil.hpp>
+# include <simgear/screen/texture.hxx>
#endif
#include <simgear/timing/sg_time.hxx>
#include <simgear/timing/lowleveltime.h>
= fgGetNode("/sim/presets/altitude-ft");
SGPath cloud_path(globals->get_fg_root());
- cloud_path.append("large.sky");
+#if 0
+ cloud_path.append("Textures/Sky/scattered.rgba");
SG_LOG(SG_GENERAL, SG_INFO, "Loading CLOUDS3d from: " << cloud_path.c_str());
+
+ SGTexture tx;
+ tx.read_rgba_texture(cloud_path.c_str());
+ if ( !sgCloud3d->Load( tx.texture(), tx.width(),
+#else
+ cloud_path.append("large.sky");
if ( !sgCloud3d->Load( cloud_path.str(),
+#endif
latitude->getDoubleValue(),
longitude->getDoubleValue()) )
{