コード例 #1
0
    public static bool TryLuaIndex(IntPtr l)
    {
        string str = luaMgr.GetString(2);

        if (luaMgr.Index(reference, str, fields))
        {
            return(true);
        }

        return(BehaviourWrap.TryLuaIndex(l));
    }