From dd04c0c449c44b775c87bb2c3841bb83f317d59f Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 23:14:08 +0200 Subject: [PATCH] Just use default ipairs --- gfx/prop/children.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 46088de..5389c99 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -6,14 +6,7 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" } function Children:with(elementType) local propSelf = self function elementType:_iterateChildren(opts) - local tbl = propSelf:with(self) - local start, finish = ((opts and opts.from) or 1) - 1, (opts and opts.to) or #tbl - return function(t, i) - if i > finish then - return nil, nil - end - return i + 1, t[i + 1] - end, tbl, start + return ipairs(propSelf:getState(self)) end function elementType:childCount()