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.text2;
},
// called every frame
update: function (dt) {
this.label.string = this.text2;
},
});
这个 怎么跟 界面的UI对应的 教程上没写。。。 代码里的label跟界面的UI有联系吗