All Projects → armadillu → Ofxanimatable

armadillu / Ofxanimatable

Licence: other
Set of classes that help setup very simple animations, with curves, repeat modes and barebones scheduling.

ofxAnimatable

Build Status Build status

Set up very simple animations, with curves, repeat modes and basic scheduling.

Let's see how to make a value animate indefinitely between two values, with an EaseInEaseOut curve.

ofxAnimatableFloat	anim;

setup(){		

	//set initial position
	anim.reset( 0.0f );

	//set repeating style
	anim.setRepeatType(LOOP_BACK_AND_FORTH);

	//set animation curve
	anim.setCurve(EASE_IN_EASE_OUT);

	//start the animation, go from current val to the specified val
	anim.animateTo( 1.0f );

}

update(){
	//update with App timebase (60 fps)
	pointAnim.update( 1.0f/60.0f );
}

Includes basic tweening curves, and customizable ones found here and here; also includes Google's Swift Out curve.

ofxAnimatable screenshot

see big

##LICENSE ofxAnimatable is made available under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].