代码如下:改变颜色没起作用
lbIndex:{
default:null,
type:cc.Label,
},
setShowIndex:function(strInfo) {
if(this.mChessType == EnChessType.Black) {
this.lbIndex.color = new cc.color(255,255,255,255);
} else {
this.lbIndex.color = new cc.color(0,0,0,255);
}
this.lbIndex.string = strInfo;
this.lbIndex.node.active = true;
},