ui_Component_goto.ts 612 B

12345678910111213141516171819
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. export default class ui_Component_goto extends fgui.GButton {
  3. public c1:fgui.Controller;
  4. public n0:fgui.GImage;
  5. public n_goto:fgui.GTextField;
  6. public static URL:string = "ui://isxx5ak7nnz5v589";
  7. public static createInstance():ui_Component_goto {
  8. return <ui_Component_goto>(fgui.UIPackage.createObject("game", "Component_goto"));
  9. }
  10. protected onConstruct():void {
  11. this.c1 = this.getController("c1");
  12. this.n0 = <fgui.GImage>(this.getChild("n0"));
  13. this.n_goto = <fgui.GTextField>(this.getChild("n_goto"));
  14. }
  15. }