-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.58 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
51
52
53
54
55
56
57
58
{
"name": "com.lizzyfox-code.brg-container",
"version": "1.3.5",
"displayName": "BRG Container",
"description": "A Batch Rendering Group Tool for Unity.",
"_upm": {
"supportedPlatforms": ["Desktop", "Mobile", "Consoles"]
},
"unity": "2023.1",
"unityRelease": "13f1",
"license": "MIT",
"dependencies": {
"com.unity.mathematics": "1.2.6",
"com.unity.burst": "1.8.8",
"com.unity.collections": "2.2.1"
},
"keywords": [
"brg",
"rendering",
"tool"
],
"author": {
"name": "LizzyFox",
"url" : "https://github.com/LizzyFox-code"
},
"samples": [
{
"displayName": "Hello World",
"description": "A minimalist Hello World sample created with BRG Container tool.",
"path": "Samples~/HelloWorld"
},
{
"displayName": "Create BRG",
"description": "A simple sample that shows how to create a BRG Container instance.",
"path": "Samples~/CreateBRG"
},
{
"displayName": "Create Batch",
"description": "A simple sample that shows how to create a batch for drawing some objects.",
"path": "Samples~/CreateBatch"
},
{
"displayName": "Batch Data Buffer",
"description": "A sample that shows how to set and read instance data.",
"path": "Samples~/BatchDataBuffer"
},
{
"displayName": "Material Properties",
"description": "A sample that shows how to use material properties.",
"path": "Samples~/MaterialProperties"
},
{
"displayName": "LOD",
"description": "A sample that shows how to add LOD support.",
"path": "Samples~/LOD"
}
]
}