-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 935 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "com.sxm.spatial-partition-structures",
"version": "1.0.0",
"displayName": "Spatial Partition Structures",
"description": "A collection of well-known spatial partitioning data structures implemented in managed and native forms. The native form is multi-threaded with the Job System, compiled with Burst and calculations are done using the Mathematics library.",
"unity": "2020.3",
"unityRelease": "17f1",
"license": "MIT",
"keywords": [
"unity",
"quadtree",
"spatial-partitioning",
"native",
"job-system",
"burst"
],
"author": {
"name": "Alexey Pestov",
"url": "https://github.com/sxm-sxpxxl"
},
"samples": [
{
"displayName": "Base sample",
"description": "Contains a scene with spatially distributed objects stored in spatial partition structures.",
"path": "Samples/"
}
],
"dependencies": {
"com.unity.jobs": "0.50.0-preview.8"
}
}