Crazy Eddies GUI System
0.7.2
|
Defines a 'interpolator' class. More...
Inherited by CEGUI::BoolInterpolator, CEGUI::ColourInterpolator, CEGUI::ColourRectInterpolator, CEGUI::FloatInterpolator, CEGUI::IntInterpolator, CEGUI::PointInterpolator, CEGUI::RectInterpolator, CEGUI::SizeInterpolator, CEGUI::StringInterpolator, CEGUI::UBoxInterpolator, CEGUI::UDimInterpolator, CEGUI::UintInterpolator, CEGUI::URectInterpolator, CEGUI::UVector2Interpolator, and CEGUI::Vector3Interpolator.
Public Member Functions | |
virtual | ~Interpolator (void) |
destructor | |
virtual const String & | getType () const =0 |
returns type string of this interpolator | |
virtual String | interpolateAbsolute (const String &value1, const String &value2, float position)=0 |
virtual String | interpolateRelative (const String &base, const String &value1, const String &value2, float position)=0 |
virtual String | interpolateRelativeMultiply (const String &base, const String &value1, const String &value2, float position)=0 |
Defines a 'interpolator' class.
Interpolator allows you to interpolate between 2 properties. You can jut pass them as strings and Interpolator does everything for you. If you want to define your own interpolator, inherit this class and add it to AnimationManager via AnimationManager::addInterpolator to make it available for animations.
|
pure virtual |
this is used when Affector is set to apply values in absolute mode (application method == AM_Absolute)
Implemented in CEGUI::UBoxInterpolator, CEGUI::URectInterpolator, CEGUI::UVector2Interpolator, CEGUI::UDimInterpolator, CEGUI::ColourRectInterpolator, CEGUI::ColourInterpolator, CEGUI::RectInterpolator, CEGUI::Vector3Interpolator, CEGUI::PointInterpolator, CEGUI::SizeInterpolator, CEGUI::BoolInterpolator, CEGUI::IntInterpolator, CEGUI::UintInterpolator, CEGUI::FloatInterpolator, and CEGUI::StringInterpolator.
|
pure virtual |
this is used when Affector is set to apply values in relative mode (application method == AM_Relative)
Implemented in CEGUI::UBoxInterpolator, CEGUI::URectInterpolator, CEGUI::UVector2Interpolator, CEGUI::UDimInterpolator, CEGUI::ColourRectInterpolator, CEGUI::ColourInterpolator, CEGUI::RectInterpolator, CEGUI::Vector3Interpolator, CEGUI::PointInterpolator, CEGUI::SizeInterpolator, CEGUI::BoolInterpolator, CEGUI::IntInterpolator, CEGUI::UintInterpolator, CEGUI::FloatInterpolator, and CEGUI::StringInterpolator.
|
pure virtual |
this is used when Affector is set to apply values in relative multiply mode (application method == AM_RelativeMultiply)
Implemented in CEGUI::UBoxInterpolator, CEGUI::URectInterpolator, CEGUI::UVector2Interpolator, CEGUI::UDimInterpolator, CEGUI::ColourRectInterpolator, CEGUI::ColourInterpolator, CEGUI::RectInterpolator, CEGUI::Vector3Interpolator, CEGUI::PointInterpolator, CEGUI::SizeInterpolator, CEGUI::BoolInterpolator, CEGUI::IntInterpolator, CEGUI::UintInterpolator, CEGUI::FloatInterpolator, and CEGUI::StringInterpolator.