invite_page/assets/scripts/barCountPop.js
2019-02-26 11:51:46 +08:00

23 lines
319 B
JavaScript

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