Skip to content

Commit

Permalink
Remove dead link
Browse files Browse the repository at this point in the history
  • Loading branch information
Ukendio committed Jul 31, 2024
1 parent 24f9f58 commit a191a0c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/api/jecs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,31 @@ Jecs. Just an Entity Component System.
```luau
jecs.World: World
```
A world is a container of all ECS data. Games can have multiple worlds but component IDs may conflict between worlds. Ensure to register the same component IDs in the same order for each world.

### Wildcard
```luau
jecs.Wildcard: Entity
```
Builtin component type. This ID is used for wildcard queries.

### Component
```luau
jecs.Component: Entity
```
Builtin component type. Every ID created with [world:component()](world.md#component()) has this type added to it. This is meant for querying every component ID.

### ChildOf
```luau
jecs.ChildOf: Entity
```
Builtin component type. This ID is for creating parent-child hierarchies.

:::
### Rest
```luau
jecs.Rest: Entity
```

## Functions

Expand Down

0 comments on commit a191a0c

Please sign in to comment.