]> git.mxchange.org Git - flightgear.git/blobdiff - src/Scenery/scenery.hxx
Moved some of the low level scene graph construction code over to simgear.
[flightgear.git] / src / Scenery / scenery.hxx
index aa9e111032fe9f73fba10352ebd98eb0f4c1f3eb..4d506e4b709b1ea4877c2216197ecc9a6e1e0c27 100644 (file)
@@ -65,6 +65,7 @@ class FGScenery : public FGSubsystem {
     ssgBranch *terrain_branch;
     ssgRoot *gnd_lights_root;
     ssgRoot *rwy_lights_root;
+    ssgRoot *taxi_lights_root;
     ssgBranch *models_branch;
     ssgBranch *aircraft_branch;
 
@@ -111,6 +112,13 @@ public:
         rwy_lights_root = r;
     }
 
+    inline ssgRoot *get_taxi_lights_root () const {
+        return taxi_lights_root;
+    }
+    inline void set_taxi_lights_root (ssgRoot *r) {
+        taxi_lights_root = r;
+    }
+
     inline ssgBranch *get_models_branch () const {
         return models_branch;
     }