Xentripetal
Xentripetal
This would likely permit #190 by allowing addition and change watermarks to be stored alongside chunks and letting queries filter out types with watermarks older than their last run watermark
Just wanted to chime in, I've been mocking around a scheduler for building automatically parallel systems with dependency management like this. Hasn't gotten anywhere yet besides building the dependency graph...
> But that aside: I think a good (eventual?) goal would be to implement automatic dependency tracking (I think this is similar to what @xentripetal is talking about, but I'm...
4.0 RC2 still prevents sleep regardless of https://github.com/godotengine/godot/pull/71325
Some context on the datastax side, the issue is here https://github.com/datastax/java-driver/blob/39bf5e363e79d0184b5897d65197202391967bae/core/src/main/java/com/datastax/oss/driver/internal/core/cql/MultiPageResultSet.java#L92 ```java @Override protected Row computeNext() { maybeMoveToNextPage(); return currentRows.hasNext() ? currentRows.next() : endOfData(); } ``` where it advances the...
As a dependent of this, I think the requirement of a translation and rotation on SpawnMessage's should be removed once this is implemented. It would be useful to have networked...
One other to throw into the mix https://github.com/thygrrr/fennecs Also I tested Flecs, Bang, and Entt for a few tests and got meh results https://github.com/xentripetal/Ecs.CSharp.Benchmark/tree/master
Also wanted to give you a heads up that I posted a MR benchmarking this lib https://github.com/Doraku/Ecs.CSharp.Benchmark/pull/29 Showed really great results
Hmm, yeah adding variations for ref vs non ref would make the query gen way too large. I wonder if you could introduce wrapper component types like ```c# public ref...
I've started working on a POC where that's stored alongside the component array for chunks https://github.com/xentripetal/TinyEcs/commit/8dca1e2808a1d1a72a9e287a5f93b69c2f5593e8#diff-58f635af42e8d7ed9ebdcb7026ea8163e9fda76b51eefc446bb8ca91fe50a015R11 Add tracking is easy, but I'm not sure how to do the Change notifications...