-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "com.nebukam.orca",
"version": "1.1.9",
"displayName": "N:ORCA",
"description": "Optimal Reciprocal Collision Avoidance",
"unity": "2022.1",
"unityRelease": "0f1",
"documentationUrl":"https://github.com/Nebukam/com.nebukam.orca/wiki",
"keywords": [
"ORCA",
"RVO",
"pathfinding",
"navigation",
"avoidance",
"collision"
],
"category": "Navigation",
"author": {
"name": "Timothe Lapetite",
"email": "[email protected]",
"url": "https://github.com/Nebukam/com.nebukam.orca.git"
},
"dependencies": {
"com.unity.burst": "1.8.17",
"com.unity.collections": "1.3.1",
"com.unity.jobs": "0.70.0-preview.7",
"com.unity.mathematics": "1.3.1"
},
"gitDependencies": {
"com.nebukam.common": "https://github.com/Nebukam/com.nebukam.common.git#0.1.7",
"com.nebukam.job-assist": "https://github.com/Nebukam/com.nebukam.job-assist.git#1.1.6"
},
"samples": [
{
"displayName": "Setup Example (flock)",
"description": "An example setup. See in editor view, not game view.",
"path": "Samples~/Setup"
},
{
"displayName": "Setup Example (Ring)",
"description": "An example setup. See in editor view, not game view.",
"path": "Samples~/SetupRing"
},
{
"displayName": "Demos",
"description": "Small demos setups used for documentation. See in editor view, not game view.",
"path": "Samples~/Demos"
}
]
}