mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +00:00
Compare commits
2 commits
6ba362c7a1
...
a38a0c33d7
Author | SHA1 | Date | |
---|---|---|---|
|
a38a0c33d7 | ||
|
02cb4ad7a2 |
1 changed files with 7 additions and 3 deletions
10
jecs.luau
10
jecs.luau
|
@ -1562,17 +1562,21 @@ local function world_each(world: World, id): () -> ()
|
||||||
return NOOP
|
return NOOP
|
||||||
end
|
end
|
||||||
|
|
||||||
local last = 0
|
local entities = archetype.entities
|
||||||
|
local row = #entities
|
||||||
|
|
||||||
return function(): any
|
return function(): any
|
||||||
last += 1
|
local entity = entities[row]
|
||||||
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