25 lines
319 B
JavaScript
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;
|
|
}
|
|
});
|