Stuart Buchanan schrieb:
> --- Detlef Faber wrote:
>> Am Donnerstag, den 16.11.2006, 21:41 +0100 schrieb Heiko Schulz:
>>> Hi,
>>>
...


> Just to add a couple of issues I've noticed on FG OSG (on cygwin) on the
> c182:

> - Prop disk alpha animation appears to be reversed - i.e. it is more
> visible at high RPM, less visible at low. I'm pretty sure this was fine
> before OSG as I remember adding it.

Index: simgear/scene/model/animation.cxx
===================================================================
RCS file: /var/cvs/SimGear-0.3/SimGear/simgear/scene/model/animation.cxx,v
retrieving revision 1.52
diff -u -r1.52 animation.cxx
--- simgear/scene/model/animation.cxx   21 Nov 2006 18:44:55 -0000      1.52
+++ simgear/scene/model/animation.cxx   24 Nov 2006 22:53:14 -0000
@@ -662,7 +662,7 @@
    double _blend;

    if (_table == 0) {
-    _blend = 1.0 - (_prop->getDoubleValue() * _factor + _offset);
+    _blend = _prop->getDoubleValue() * _factor + _offset;
    } else {
      _blend = _table->interpolate(_prop->getDoubleValue());
    }


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to