mirror of
https://github.com/Ukendio/jecs.git
synced 2025-06-20 00:09:18 +00:00
Fix docs issues
This commit is contained in:
parent
8194b7db24
commit
fd685537ea
2 changed files with 1 additions and 2 deletions
|
@ -89,6 +89,7 @@ print(`${world.get(Position, jecs.Name)} is a Component: ${world.has(Position, j
|
||||||
### Entity ranges
|
### Entity ranges
|
||||||
Jecs reserves entity ids under a threshold (HI_COMPONENT_ID, default is 256) for components. That means that regular entities will start after this number. This number can be further specified via the `range` member function.
|
Jecs reserves entity ids under a threshold (HI_COMPONENT_ID, default is 256) for components. That means that regular entities will start after this number. This number can be further specified via the `range` member function.
|
||||||
|
|
||||||
|
::: code-group
|
||||||
```luau [luau]
|
```luau [luau]
|
||||||
world:range(1000, 5000) -- Defines the lower and upper bounds of the entity range respectively
|
world:range(1000, 5000) -- Defines the lower and upper bounds of the entity range respectively
|
||||||
|
|
||||||
|
|
|
@ -32,8 +32,6 @@
|
||||||
- [Awesome Entity Component System (link collection related to ECS) - Jeongseok Lee](https://github.com/jslee02/awesome-entity-component-system)
|
- [Awesome Entity Component System (link collection related to ECS) - Jeongseok Lee](https://github.com/jslee02/awesome-entity-component-system)
|
||||||
- [Hibitset - DOCS.RS](https://docs.rs/hibitset/0.6.3/hibitset/)
|
- [Hibitset - DOCS.RS](https://docs.rs/hibitset/0.6.3/hibitset/)
|
||||||
|
|
||||||
------------------
|
|
||||||
|
|
||||||
## Addons
|
## Addons
|
||||||
|
|
||||||
A collection of third-party jecs addons made by the community. If you would like to share what you're working on, [submit a pull request](/learn/contributing/pull-requests#addons)!
|
A collection of third-party jecs addons made by the community. If you would like to share what you're working on, [submit a pull request](/learn/contributing/pull-requests#addons)!
|
||||||
|
|
Loading…
Reference in a new issue