mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2026-03-22 12:55:31 +07:00
update roadmap
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user