Layout_UIWaiting.ts 271 B

123456789101112
  1. import { _decorator, Component, Label, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('tgxLayout_UIWaiting')
  4. export class Layout_UIWaiting extends Component {
  5. @property(Node)
  6. loadingIcon:Node;
  7. @property(Label)
  8. loadingTxt:Label;
  9. }