mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-26 01:50:01 +00:00
Compare commits
1 commit
a38a0c33d7
...
6ba362c7a1
Author | SHA1 | Date | |
---|---|---|---|
|
6ba362c7a1 |
1 changed files with 3 additions and 7 deletions
10
jecs.luau
10
jecs.luau
|
@ -1562,21 +1562,17 @@ local function world_each(world: World, id): () -> ()
|
||||||
return NOOP
|
return NOOP
|
||||||
end
|
end
|
||||||
|
|
||||||
local entities = archetype.entities
|
local last = 0
|
||||||
local row = #entities
|
|
||||||
|
|
||||||
return function(): any
|
return function(): any
|
||||||
local entity = entities[row]
|
last += 1
|
||||||
|
local entity = archetype.entities[last]
|
||||||
while not entity do
|
while not entity do
|
||||||
archetype_id = next(idr_cache, archetype_id)
|
archetype_id = next(idr_cache, archetype_id)
|
||||||
if not archetype_id then
|
if not archetype_id then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
archetype = archetypes[archetype_id]
|
archetype = archetypes[archetype_id]
|
||||||
entities = archetype.entities
|
|
||||||
row = #entities
|
|
||||||
end
|
end
|
||||||
row -= 1
|
|
||||||
return entity
|
return entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue