コード例 #1
0
            public void Reset()
            {
                if (opt != null)
                {
                    opt.Reset();
                }

                delayed = false;
            }
コード例 #2
0
    public static int Reset(IntPtr l)
    {
        int result;

        try
        {
            CustomYieldInstruction customYieldInstruction = (CustomYieldInstruction)LuaObject.checkSelf(l);
            customYieldInstruction.Reset();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }