update roadmap

This commit is contained in:
BlackMATov
2024-11-30 10:53:17 +07:00
parent 556a546fb2
commit 4cb6927f14
3 changed files with 7 additions and 3 deletions

View File

@@ -15,3 +15,5 @@
- [x] registry.assign should not change chunks' tree
- [ ] add deferred changes api
- [ ] add multi apply/batch_apply
- [ ] add batch vector operations
- [ ] add inplace vector operations

View File

@@ -7,14 +7,16 @@ local singles = {
}
local fragments = {
disabled = evo.registry.entity(),
position = evo.registry.entity(),
velocity = evo.registry.entity(),
}
local queries = {
bodies = evo.registry.query(
fragments.position,
fragments.velocity),
fragments.position,
fragments.velocity)
:exclude(fragments.disabled)
}
do

View File

@@ -17,7 +17,7 @@ function common.describe(name, loop, init)
local start_kb = collectgarbage('count')
local success, result = pcall(function()
while os.clock() - start_s < 1.0 do
while os.clock() - start_s < 0.2 do
iters = iters + 1
loop(evo.compat.unpack(state))
end