4b21dc51ee
Allow for advanced animations using easing functions and adapters for interpolating specific property types (eg. CSS colors). Old behavior should not have changed.
15 lines
344 B
C++
15 lines
344 B
C++
/*
|
|
* FGInterpolator.cxx
|
|
*
|
|
* Created on: 16.03.2013
|
|
* Author: tom
|
|
*/
|
|
|
|
#include "FGInterpolator.hxx"
|
|
#include <simgear/scene/util/ColorInterpolator.hxx>
|
|
|
|
//------------------------------------------------------------------------------
|
|
FGInterpolator::FGInterpolator()
|
|
{
|
|
addInterpolatorFactory<simgear::ColorInterpolator>("color");
|
|
}
|