invite_page/assets/scripts/inviteTip.js
2019-02-26 13:28:28 +08:00

25 lines
319 B
JavaScript

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;
}
});