From: ehofman Date: Wed, 3 Mar 2010 10:26:25 +0000 (+0000) Subject: Lauri Peltonen: turn on clouds depth sorting X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=284bc364fe01493ec698ead3299ccbe262093423;p=simgear.git Lauri Peltonen: turn on clouds depth sorting --- diff --git a/simgear/scene/sky/cloudfield.cxx b/simgear/scene/sky/cloudfield.cxx index 829a5585..b99a2d16 100644 --- a/simgear/scene/sky/cloudfield.cxx +++ b/simgear/scene/sky/cloudfield.cxx @@ -132,7 +132,8 @@ bool SGCloudField::reposition( const SGVec3f& p, const SGVec3f& up, double lon, field_transform->setMatrix( LAT*LON*T ); } - field_root->getStateSet()->setRenderBinDetails(asl, "DepthSortedBin"); + // Render the clouds in order from farthest away layer to nearest one. + field_root->getStateSet()->setRenderBinDetails(CLOUDS_BIN, "DepthSortedBin"); return true; }