FairyGUI.GComponent.ConstructFromResource C# (CSharp) Method

ConstructFromResource() public method

public ConstructFromResource ( ) : void
return void
        public override void ConstructFromResource()
        {
            ConstructFromResource(null, 0);
        }

Same methods

GComponent::ConstructFromResource ( List objectPool, int poolIndex ) : void

Usage Example

 static int ConstructFromResource(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         FairyGUI.GComponent obj = (FairyGUI.GComponent)ToLua.CheckObject(L, 1, typeof(FairyGUI.GComponent));
         obj.ConstructFromResource();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
All Usage Examples Of FairyGUI.GComponent::ConstructFromResource