UI.ts 281 B

12345678910111213141516
  1. const {ccclass, property} = cc._decorator;
  2. @ccclass
  3. export default class UI extends cc.Component {
  4. @property(cc.Label)
  5. label: cc.Label = null;
  6. @property
  7. text: string = 'hello';
  8. start () {
  9. // init logic
  10. this.label.string = this.text;
  11. }
  12. }