Layout_Win.ts 338 B

1234567891011121314151617181920
  1. import { _decorator, Component, Node, SpriteFrame } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_Win')
  4. export class Layout_Win extends Component {
  5. // 奖励图片数组
  6. @property([SpriteFrame])
  7. rewardSprites: SpriteFrame[] = [];
  8. start() {
  9. }
  10. update(deltaTime: number) {
  11. }
  12. }