| 12345678910111213141516171819202122 |
- cc.Class({
- extends: cc.Component,
- properties: {
- label: {
- default: null,
- type: cc.Label
- },
- // defaults, set visually when attaching this script to the Canvas
- text: 'Hello, World!'
- },
- // use this for initialization
- onLoad: function () {
- this.label.string = this.text;
- },
- // called every frame
- update: function (dt) {
- },
- });
|