cc.Class({ extends: cc.Component, properties: { txtLabel: { default: null, type: cc.Label } }, // LIFE-CYCLE CALLBACKS: onLoad () { }, start () { }, // update (dt) {}, setLabelTxt(str) { this.txtLabel.string = str; } });