【BUG反馈2.2.0】按钮无法取消掉灰度

cc.Class({
extends: cc.Component,

properties: {
    btnDebug: cc.Button
},
// LIFE-CYCLE CALLBACKS:
onLoad() {
    this.btnDebug.interactable = true;
},
start() {
    this.btnDebug.interactable = true;
},
// update (dt) {},

});

2.1.3没有这个问题,2.2.0出现的。

应该和这个问题一样,已经反馈修复了
https://forum.cocos.com/t/creator2-2-0-button-interactable-bug/85025

1赞