]> git.mxchange.org Git - simgear.git/commitdiff
Frederic: Include FGPanelNode in the display list generation process.
authorehofman <ehofman>
Sun, 10 Oct 2004 18:43:11 +0000 (18:43 +0000)
committerehofman <ehofman>
Sun, 10 Oct 2004 18:43:11 +0000 (18:43 +0000)
simgear/scene/model/model.cxx

index 645b6fc43fbc33019bd0591f18b3b1c0b990e14b..f8740adc0e7767eeb6b378593b7249e491657e2e 100644 (file)
@@ -271,10 +271,6 @@ sgLoad3DModel( const string &fg_root, const string &path,
       throw sg_exception("Failed to load 3D model");
   }
 
-  if ( model != 0 ) {
-    makeDList( model );
-  }
-
                                 // Set up the alignment node
   ssgTransform * alignmainmodel = new ssgTransform;
   if ( load_panel == 0 )
@@ -336,6 +332,10 @@ sgLoad3DModel( const string &fg_root, const string &path,
                      sim_time_sec);
   }
 
+  if ( model != 0 ) {
+    makeDList( model );
+  }
+
   return alignmainmodel;
 }