Sync to upstream Jecs 0.5.3
This commit is contained in:
parent
05d8a2e219
commit
8a2c15a383
2 changed files with 7 additions and 5 deletions
10
init.luau
10
init.luau
|
@ -619,7 +619,7 @@ local function archetype_create(world: World, id_types: { i24 }, ty, prev: i53?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, id in id_types do
|
for id in records do
|
||||||
local observer_list = find_observers(world, EcsOnArchetypeCreate, id)
|
local observer_list = find_observers(world, EcsOnArchetypeCreate, id)
|
||||||
if not observer_list then
|
if not observer_list then
|
||||||
continue
|
continue
|
||||||
|
@ -957,8 +957,10 @@ local function archetype_delete(world: World, archetype: Archetype, row: number,
|
||||||
|
|
||||||
-- TODO: if last == 0 then deactivate table
|
-- TODO: if last == 0 then deactivate table
|
||||||
|
|
||||||
|
local component_index = world.componentIndex
|
||||||
for _, id in id_types do
|
for _, id in id_types do
|
||||||
local on_remove: (entity: i53) -> () = world_get_one_inline(world, id, EcsOnRemove)
|
local idr = component_index[id]
|
||||||
|
local on_remove = idr.hooks.on_remove
|
||||||
if on_remove then
|
if on_remove then
|
||||||
on_remove(delete)
|
on_remove(delete)
|
||||||
end
|
end
|
||||||
|
@ -1156,7 +1158,6 @@ do
|
||||||
local idr_t_archetype = archetypes[archetype_id]
|
local idr_t_archetype = archetypes[archetype_id]
|
||||||
|
|
||||||
local idr_t_types = idr_t_archetype.types
|
local idr_t_types = idr_t_archetype.types
|
||||||
local on_remove = idr_t.hooks.on_remove
|
|
||||||
|
|
||||||
for _, child in idr_t_archetype.entities do
|
for _, child in idr_t_archetype.entities do
|
||||||
table.insert(children, child)
|
table.insert(children, child)
|
||||||
|
@ -1178,6 +1179,7 @@ do
|
||||||
end
|
end
|
||||||
break
|
break
|
||||||
else
|
else
|
||||||
|
local on_remove = id_record.hooks.on_remove
|
||||||
local to = archetype_traverse_remove(world, id, idr_t_archetype)
|
local to = archetype_traverse_remove(world, id, idr_t_archetype)
|
||||||
if on_remove then
|
if on_remove then
|
||||||
for _, child in children do
|
for _, child in children do
|
||||||
|
@ -2311,7 +2313,7 @@ export type World = {
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
World = World,
|
World = World :: { new: () -> World },
|
||||||
|
|
||||||
OnAdd = EcsOnAdd :: Entity<(entity: Entity) -> ()>,
|
OnAdd = EcsOnAdd :: Entity<(entity: Entity) -> ()>,
|
||||||
OnRemove = EcsOnRemove :: Entity<(entity: Entity) -> ()>,
|
OnRemove = EcsOnRemove :: Entity<(entity: Entity) -> ()>,
|
||||||
|
|
|
@ -11,7 +11,7 @@ includes = [
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "mark_marks/jecs_pesde"
|
name = "mark_marks/jecs_pesde"
|
||||||
repository = "https://git.devmarked.win/marked/jecs-pesde"
|
repository = "https://git.devmarked.win/marked/jecs-pesde"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
|
|
||||||
[indices]
|
[indices]
|
||||||
default = "https://github.com/pesde-pkg/index"
|
default = "https://github.com/pesde-pkg/index"
|
||||||
|
|
Loading…
Reference in a new issue