mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
ChildOf as built-in component
This commit is contained in:
parent
ebc916c7ef
commit
0324d3a33f
1 changed files with 6 additions and 0 deletions
|
@ -338,6 +338,9 @@ function World.new(): World
|
|||
}, World)
|
||||
self.ROOT_ARCHETYPE = archetypeOf(self, {})
|
||||
|
||||
-- Initialize built-in components
|
||||
nextEntityId(self.entityIndex, EcsChildOf)
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
|
@ -1026,8 +1029,11 @@ return {
|
|||
OnAdd = (EcsOnAdd :: any) :: Entity,
|
||||
OnRemove = (EcsOnRemove :: any) :: Entity,
|
||||
OnSet = (EcsOnSet :: any) :: Entity,
|
||||
|
||||
Wildcard = (EcsWildcard :: any) :: Entity,
|
||||
w = (EcsWildcard :: any) :: Entity,
|
||||
ChildOf = EcsChildOf,
|
||||
|
||||
Rest = EcsRest,
|
||||
|
||||
IS_PAIR = ECS_IS_PAIR,
|
||||
|
|
Loading…
Reference in a new issue