Sync to released Jecs 0.7.2-nightly.20250628T001101Z (#108)
Reviewed-on: #108
This commit is contained in:
parent
784f08c26c
commit
257f5da6fe
8 changed files with 1380 additions and 1174 deletions
|
@ -2,6 +2,19 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Added
|
||||
- `jecs.component_record` for retrieving the component_record of a component.
|
||||
- `Column<T>` and `ColumnsMap<T>` types for typescript.
|
||||
- `bulk_insert` and `bulk_remove` respectively for moving an entity to an archetype without intermediate steps.
|
||||
|
||||
### Changed
|
||||
- The fields `archetype.records[id]` and `archetype.counts[id` have been removed from the archetype struct and been moved to the component record `component_index[id].records[archetype.id]` and `component_index[id].counts[archetype.id]` respectively.
|
||||
- Removed the metatable `jecs.World`. Use `jecs.world()` to create your World.
|
||||
- Archetypes will no longer be garbage collected when invalidated, allowing them to be recycled to save a lot of performance during frequent deletion.
|
||||
- Removed `jecs.entity_index_try_get_fast`. Use `jecs.entity_index_try_get` instead.
|
||||
|
||||
## 0.6.1
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
modified = ["README.md"]
|
||||
version = "0.6.1-nightly.20250622T001116Z"
|
||||
modified = ["CHANGELOG.md", "jecs.luau"]
|
||||
version = "0.7.2-nightly.20250628T001101Z"
|
||||
|
|
2518
jecs/jecs.luau
2518
jecs/jecs.luau
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ includes = ["init.luau", "pesde.toml", "README.md", "CHANGELOG.md", "LICENSE", "
|
|||
license = "MIT"
|
||||
name = "marked/jecs_nightly"
|
||||
repository = "https://git.devmarked.win/marked/jecs-nightly"
|
||||
version = "0.6.1-nightly.20250622T001116Z"
|
||||
version = "0.7.2-nightly.20250628T001101Z"
|
||||
|
||||
[indices]
|
||||
default = "https://github.com/pesde-pkg/index"
|
||||
|
|
|
@ -3,7 +3,7 @@ includes = ["init.luau", "pesde.toml", "README.md", "CHANGELOG.md", "LICENSE", "
|
|||
license = "MIT"
|
||||
name = "marked/jecs_nightly"
|
||||
repository = "https://git.devmarked.win/marked/jecs-nightly"
|
||||
version = "0.6.1-nightly.20250622T001116Z"
|
||||
version = "0.7.2-nightly.20250628T001101Z"
|
||||
|
||||
[indices]
|
||||
default = "https://github.com/pesde-pkg/index"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
passed = true
|
||||
timestamp = "20250627T001106Z"
|
||||
timestamp = "20250628T001103Z"
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
-------
|
||||
[38;1m7.2[0m [33;1mus[0m [38;1m 2[0m [33;1mkB[0m[38;1m│[0m [38;1mdelete children of entity[0m
|
||||
[38;1m9.1[0m [33;1mus[0m [38;1m 1[0m [33;1mkB[0m[38;1m│[0m [38;1mremove friends of entity[0m
|
||||
[38;1m343[0m [32;1mns[0m [38;1m 0[0m [32;1m B[0m[38;1m│[0m [38;1msimple deletion of entity[0m
|
||||
[38;1m6.9[0m [33;1mus[0m [38;1m 0[0m [32;1m B[0m[38;1m│[0m [38;1mdelete children of entity[0m
|
||||
[38;1m8.8[0m [33;1mus[0m [38;1m 1[0m [33;1mkB[0m[38;1m│[0m [38;1mremove friends of entity[0m
|
||||
[38;1m335[0m [32;1mns[0m [38;1m 0[0m [32;1m B[0m[38;1m│[0m [38;1msimple deletion of entity[0m
|
||||
[37;1mbulk[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
[37;1mrepro[0m
|
||||
[38;5;208mNONE[0m[38;1m│[0m [38;1m[0m
|
||||
|
||||
|
@ -123,5 +126,5 @@
|
|||
[32;1mPASS[0m[38;1m│[0m [38;1m#2[0m
|
||||
[32;1mPASS[0m[38;1m│[0m [38;1m#3[0m
|
||||
|
||||
[38;1m75/75 test cases passed in 32.905 ms.[0m
|
||||
[38;1m76/76 test cases passed in 32.681 ms.[0m
|
||||
[32;1m0 fails[0m
|
||||
|
|
|
@ -5,4 +5,4 @@ license = "MIT"
|
|||
name = "mark-marks/jecs-nightly"
|
||||
realm = "shared"
|
||||
registry = "https://github.com/UpliftGames/wally-index"
|
||||
version = "0.6.1-nightly.20250622T001116Z"
|
||||
version = "0.7.2-nightly.20250628T001101Z"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue