-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "com.kenrampage.uguitools",
"version": "1.0.1",
"displayName": "Unity UI Extensions",
"description": "A few tools meant to help fill the gaps between Unity's EventSystem and Input System.",
"unity": "2022.3",
"documentationUrl": "https://github.com/kenrampage/UGUI-Tools",
"changelogUrl": "https://github.com/kenrampage/UGUI-Tools/blob/main/CHANGELOG.md",
"licensesUrl": "https://github.com/kenrampage/UGUI-Tools/blob/main/LICENSE.md",
"dependencies": {
"com.unity.inputsystem": "1.7.0"
},
"author": {
"name": "Ken Rampage",
"url": "https://github.com/kenrampage/UGUI-Tools"
},
"samples": [
{
"displayName": "Cursor Manager",
"description": "Sample scene for Cursor Manager",
"path": "Samples~/Cursor Manager"
},
{
"displayName": "Draggable",
"description": "Sample scene for Draggable UI Objects",
"path": "Samples~/Draggable"
},
{
"displayName": "Virtual Pointer",
"description": "Sample scene for Virtual Pointer",
"path": "Samples~/Virtual Pointer"
},
{
"displayName": "All Tools",
"description": "Sample scene containing all tools used together",
"path": "Samples~/All Tools"
}
]
}