Class cc.EaseBackOut
- Defined in: CCActionEase.js
- Extends cc.ActionEase
Constructor Attributes | Constructor Name and Description |
---|---|
cc.EaseBackOut action.
|
Method Summary
Class Detail
cc.EaseBackOut()
cc.EaseBackOut action.
Fast moving more than the finish, and then slowly back to the finish.
Fast moving more than the finish, and then slowly back to the finish.
//The old usage cc.EaseBackOut.create(action); //The new usage action.easing(cc.easeBackOut());
- since v3.0 please use action.easing(cc.easeBackOut());
Method Detail
-
{cc.EaseBackOut} clone()to copy object with deep copy. returns a clone of action.
- Returns:
- {cc.EaseBackOut}
-
Creates the action.
Fast moving more than the finish, and then slowly back to the finish.//The old usage cc.EaseBackOut.create(action); //The new usage action.easing(cc.easeBackOut());
- Parameters:
- {cc.ActionInterval} action
- Deprecated:
-
since v3.0
Please use action.easing(cc.easeBackOut()); - Returns:
- {cc.EaseBackOut}
-
{cc.EaseBackIn} reverse()Create a action. Opposite with the original motion trajectory.
- Returns:
- {cc.EaseBackIn}
-
update(dt)Called once per frame. Time is the number of seconds of a frame interval.
- Parameters:
- {Number} dt