23 lines
319 B
JavaScript
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) {},
|
|
});
|