UI_LoadingView.ts 872 B

123456789101112131415161718192021222324252627282930
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. import UI_ProgressBar from "./UI_ProgressBar";
  3. export default class UI_LoadingView extends fgui.GComponent {
  4. public m_n0:fgui.GImage;
  5. public m_progressBar:UI_ProgressBar;
  6. public m_n2:fgui.GTextField;
  7. public m_n3:fgui.GImage;
  8. public m_n4:fgui.GImage;
  9. public static URL:string = "ui://llglz4x4l16l0";
  10. public static createInstance():UI_LoadingView {
  11. return <UI_LoadingView>(fgui.UIPackage.createObject("LoadingView","LoadingView"));
  12. }
  13. public constructor() {
  14. super();
  15. }
  16. protected onConstruct(): void {
  17. this.m_n0 = <fgui.GImage>(this.getChildAt(0));
  18. this.m_progressBar = <UI_ProgressBar>(this.getChildAt(1));
  19. this.m_n2 = <fgui.GTextField>(this.getChildAt(2));
  20. this.m_n3 = <fgui.GImage>(this.getChildAt(3));
  21. this.m_n4 = <fgui.GImage>(this.getChildAt(4));
  22. }
  23. }