update 不更新位置

update (dt) {
    this.VelocityY += this.curGravity*dt;
    cc.log("Velocity",this.VelocityY);
    this.node.y += this.VelocityY*dt;
    cc.log("this.node.y",this.node.y);
},

log打出来 this.node.y的值是对的,但显示就是不更新········@@!!