Nez.ObjectExt.tween C# (CSharp) Méthode

tween() private méthode

private tween ( this self, string memberName, Microsoft.Xna.Framework.Color to, float duration ) : ITween
self this
memberName string
to Microsoft.Xna.Framework.Color
duration float
Résultat ITween
		public static ITween<Color> tween( this object self, string memberName, Color to, float duration )
		{
			return PropertyTweens.colorPropertyTo( self, memberName, to, duration );
		}

Same methods

ObjectExt::tween ( this self, string memberName, Vector2 to, float duration ) : ITween
ObjectExt::tween ( this self, string memberName, Microsoft.Xna.Framework.Vector3 to, float duration ) : ITween
ObjectExt::tween ( this self, string memberName, float to, float duration ) : ITween
ObjectExt::tween ( this self, string memberName, int to, float duration ) : ITween
ObjectExt