33 lines
924 B
C#
33 lines
924 B
C#
|
|
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||
|
|
|
||
|
|
using FairyGUI;
|
||
|
|
using FairyGUI.Utils;
|
||
|
|
|
||
|
|
namespace FGUI.Common_01
|
||
|
|
{
|
||
|
|
public partial class item_wheel : GComponent
|
||
|
|
{
|
||
|
|
public Controller type;
|
||
|
|
public GImage img_light;
|
||
|
|
public GTextField text_rate;
|
||
|
|
public Transition show;
|
||
|
|
public Transition hide;
|
||
|
|
public const string URL = "ui://jq2t9glpr8lg4r";
|
||
|
|
|
||
|
|
public static item_wheel CreateInstance()
|
||
|
|
{
|
||
|
|
return (item_wheel)UIPackage.CreateObject("Common_01", "item_wheel");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void ConstructFromXML(XML xml)
|
||
|
|
{
|
||
|
|
base.ConstructFromXML(xml);
|
||
|
|
|
||
|
|
type = GetControllerAt(0);
|
||
|
|
img_light = (GImage)GetChildAt(3);
|
||
|
|
text_rate = (GTextField)GetChildAt(4);
|
||
|
|
show = GetTransitionAt(0);
|
||
|
|
hide = GetTransitionAt(1);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|