2.3.2 cc.tween call() 有时候不会调用?

cc.tween(this.effectNode.getChildByName("blackBg"))
        .to(2, {opacity: 1}) 
        .call( ()=>{
                        console.log("fade Over");
                        this.effectNode.getChildByName("blackBg").opacity = 190; 
                        // this.effectNode.getChildByName("blackBg").active = false;
                    }
            )
        .start();

这样to会调用,但是call不会调用,但是如果把to注释掉会调用call,求解。。

打扰了,发现其他地方有this.effectNode.getChildByName(“blackBg”).active = false;