-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
54 lines (54 loc) · 2.26 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
{
"name": "com.readyplayerme.core",
"version": "7.3.1",
"displayName": "Ready Player Me Core",
"description": "This Module contains all the core functionality required for using Ready Player Me avatars in Unity, including features such as: \n - Module management and automatic package setup logic\n - Avatar loading from .glb files \n - Avatar creation \n - Avatar and 2D render requests \n - Optional Analytics\n - Custom editor windows\n - Sample scenes and assets",
"unity": "2020.3",
"unityRelease": "0f1",
"documentationUrl": "https://docs.readyplayer.me/ready-player-me/integration-guides/unity-sdk",
"changelogUrl": "https://github.com/readyplayerme/rpm-unity-sdk-core/blob/main/CHANGELOG.md",
"licensesUrl": "https://github.com/readyplayerme/rpm-unity-sdk-core/blob/main/LICENSE.md",
"dependencies": {
"com.unity.cloud.gltfast": "6.0.1",
"com.unity.nuget.newtonsoft-json": "3.0.2"
},
"keywords": [
"ready player me",
"avatar",
"loader",
"character",
"metaverse"
],
"author": {
"name": "Ready Player Me",
"email": "[email protected]",
"url": "https://readyplayer.me"
},
"samples": [
{
"displayName": "QuickStart",
"description": "This quick start sample demonstrates how to load an avatar with a third person controller setup.",
"path": "Samples~/QuickStart"
},
{
"displayName": "AvatarLoadingSamples",
"description": "These samples showcase various ways to load an avatar into a scene.",
"path": "Samples~/AvatarLoadingSamples"
},
{
"displayName": "AvatarRenderSamples",
"description": "These samples showcase how to creates a 2D renders of an avatar using the Render API.",
"path": "Samples~/AvatarRenderSamples"
},
{
"displayName": "WebGLSample",
"description": "This sample includes a WebGL template and demonstrates how run the Ready Player Me Web avatar creator inside an iFrame for WebGL applications.",
"path": "Samples~/WebGLSample"
},
{
"displayName": "AvatarCreatorSamples",
"description": "This sample demonstrates how to implement a Ready Player Me Avatar Creator using Unity's built in UI system without the need for an embedded Web Browser.",
"path": "Samples~/AvatarCreatorSamples"
}
]
}