FairyGUI.Relations.Add C# (CSharp) Method

Add() public method

public Add ( GObject target, RelationType relationType ) : void
target GObject
relationType RelationType
return void
        public void Add(GObject target, RelationType relationType)
        {
            Add(target, relationType, false);
        }

Same methods

Relations::Add ( GObject target, RelationType relationType, bool usePercent ) : void

Usage Example

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

            if (count == 3 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Relations), typeof(FairyGUI.GObject), typeof(FairyGUI.RelationType)))
            {
                FairyGUI.Relations    obj  = (FairyGUI.Relations)ToLua.ToObject(L, 1);
                FairyGUI.GObject      arg0 = (FairyGUI.GObject)ToLua.ToObject(L, 2);
                FairyGUI.RelationType arg1 = (FairyGUI.RelationType)ToLua.ToObject(L, 3);
                obj.Add(arg0, arg1);
                return(0);
            }
            else if (count == 4 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Relations), typeof(FairyGUI.GObject), typeof(FairyGUI.RelationType), typeof(bool)))
            {
                FairyGUI.Relations    obj  = (FairyGUI.Relations)ToLua.ToObject(L, 1);
                FairyGUI.GObject      arg0 = (FairyGUI.GObject)ToLua.ToObject(L, 2);
                FairyGUI.RelationType arg1 = (FairyGUI.RelationType)ToLua.ToObject(L, 3);
                bool arg2 = LuaDLL.lua_toboolean(L, 4);
                obj.Add(arg0, arg1, arg2);
                return(0);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Relations.Add"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
All Usage Examples Of FairyGUI.Relations::Add