]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/model.hxx
Added a new 'delimiter' property to allow an alternative delimiter to
[flightgear.git] / src / Main / model.hxx
index 60e2c398dd0948dda83cf776bc4fc9481a5f847b..ac23895c516ea2368399caa9b147337066914b61 100644 (file)
@@ -49,12 +49,17 @@ private:
     float factor;
     float offset;
     float position;
+    bool has_min;
+    float min;
+    bool has_max;
+    float max;
     sgVec3 center;
     sgVec3 axis;
     void setRotation ();
   };
 
-  Animation read_animation (const SGPropertyNode * node);
+  Animation read_animation (const string &object_name,
+                           const SGPropertyNode * node);
   void do_animation (Animation &animation, long elapsed_ms);
 
   ssgEntity * _model;