NativeQuadtree icon indicating copy to clipboard operation
NativeQuadtree copied to clipboard

A Quadtree Native Collection for Unity DOTS

Results 4 NativeQuadtree issues
Sort by recently updated
recently updated
newest added

It would be really nice if the readme had some code examples of what's currently possible with the container. Also, looks like a really cool project :) I've been looking...

I wanna try this fantastic project in Unity 2020.3.35f LTS Currently I install com.unity.collections to version 1.2.3 (verified) And looks like (UnsafeList*) is denoted as deprecated. And tests, RangeQueryAfterBulk() &...

Hey, I've been playing around with this for a little bit and added/changed a bunch of things. I think that other people would find it useful to get these changes...

This happens because of NativeQuadTree.Draw tries to GetEnumerator from results, which does not exist. Can be simply fixed by checking if results list exist like so: ``` if (results.IsCreated) {...