FairyGUI.EventListener.BroadcastCall C# (CSharp) Method

BroadcastCall() public method

public BroadcastCall ( ) : bool
return bool
        public bool BroadcastCall()
        {
            return owner.BroadcastEvent(_type, null);
        }

Same methods

EventListener::BroadcastCall ( object data ) : bool

Usage Example

示例#1
0
    static int BroadcastCall(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 1)
            {
                FairyGUI.EventListener obj = (FairyGUI.EventListener)ToLua.CheckObject <FairyGUI.EventListener>(L, 1);
                bool o = obj.BroadcastCall();
                LuaDLL.lua_pushboolean(L, o);
                return(1);
            }
            else if (count == 2)
            {
                FairyGUI.EventListener obj = (FairyGUI.EventListener)ToLua.CheckObject <FairyGUI.EventListener>(L, 1);
                object arg0 = ToLua.ToVarObject(L, 2);
                bool   o    = obj.BroadcastCall(arg0);
                LuaDLL.lua_pushboolean(L, o);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.EventListener.BroadcastCall"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
All Usage Examples Of FairyGUI.EventListener::BroadcastCall