UI_ProgressBar.ts 573 B

123456789101112131415161718192021222324
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. export default class UI_ProgressBar extends fgui.GProgressBar {
  3. public m_n0:fgui.GGraph;
  4. public m_bar:fgui.GGraph;
  5. public static URL:string = "ui://llglz4x4l16l1";
  6. public static createInstance():UI_ProgressBar {
  7. return <UI_ProgressBar>(fgui.UIPackage.createObject("LoadingView","ProgressBar"));
  8. }
  9. public constructor() {
  10. super();
  11. }
  12. protected onConstruct(): void {
  13. this.m_n0 = <fgui.GGraph>(this.getChildAt(0));
  14. this.m_bar = <fgui.GGraph>(this.getChildAt(1));
  15. }
  16. }