DayPrizeTips.ts 362 B

1234567891011121314
  1. import { _decorator, Component, Node, Label, Layers } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('DayPrizeTips')
  4. export class DayPrizeTips extends Component {
  5. @property({ type: Label })
  6. public label: Label;
  7. public onParams(data) {
  8. if (data) {
  9. this.label.string = "恭喜提升奖励进度";
  10. }
  11. }
  12. }