Class cc.EaseBackIn

Class Summary
Constructor Attributes Constructor Name and Description
 
cc.EaseBackIn action.

Method Summary

Class Detail

cc.EaseBackIn()
cc.EaseBackIn action.
In the opposite direction to move slowly, and then accelerated to the right direction.
//The old usage
cc.EaseBackIn.create(action);
//The new usage
action.easing(cc.easeBackIn());
since v3.0 please use action.easing(cc.easeBackIn())

Method Detail

  • {cc.EaseBackIn} clone()
    to copy object with deep copy. returns a clone of action.
    Returns:
    {cc.EaseBackIn}
  • <static> {cc.EaseBackIn} cc.EaseBackIn.create(action)
    Creates the cc.EaseBackIn.
    In the opposite direction to move slowly, and then accelerated to the right direction.
    //The old usage
    cc.EaseBackIn.create(action);
    //The new usage
    action.easing(cc.easeBackIn());
    Parameters:
    {cc.ActionInterval} action
    Deprecated:
    since v3.0
    Please use action.easing(cc.easeBackIn())
    Returns:
    {cc.EaseBackIn}
  • {cc.EaseBackOut} reverse()
    Create a action. Opposite with the original motion trajectory.
    Returns:
    {cc.EaseBackOut}
  • update(dt)
    Called once per frame. Time is the number of seconds of a frame interval.
    Parameters:
    {Number} dt