Skip to content

Commit

Permalink
fixed the tween bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinCollins committed Feb 26, 2019
1 parent 0c14750 commit 9612a13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cocos2d/actions/tween.js
@@ -1,6 +1,6 @@

let TweenAction = cc.Class({
name: 'TweenAction',
name: 'cc.TweenAction',
extends: cc.ActionInterval,

ctor (duration, props, opts) {
Expand Down Expand Up @@ -224,7 +224,7 @@ Tween.prototype._get = function () {
actions = actions[0];
}
else {
actions = Tween.sequence(actions);
actions = cc.sequence(actions);
}

return actions;
Expand Down

0 comments on commit 9612a13

Please sign in to comment.