-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathassets.json
More file actions
46 lines (46 loc) · 1.48 KB
/
assets.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Public assets required by @elizaos/plugin-companion at runtime. Consuming apps must serve these from their public/ root.",
"publicAssets": {
"vrm-decoders/draco/": {
"source": "vendored",
"required": true,
"note": "Draco WASM decompressor for glTF/VRM geometry. Shipped with the plugin."
},
"animations/idle.glb.gz": {
"source": "ensure-avatars",
"required": true,
"note": "Default idle animation loaded on engine init."
},
"animations/emotes/": {
"source": "ensure-avatars",
"required": true,
"note": "Emote animations (GLB). Referenced by EmotePicker."
},
"animations/greetings/": {
"source": "ensure-avatars",
"required": false,
"note": "Greeting animations (FBX). Used in companion mode."
},
"animations/mixamo/": {
"source": "ensure-avatars",
"required": false,
"note": "Mixamo base animations (FBX). Retargeted to VRM at runtime."
},
"vrms/": {
"source": "ensure-avatars",
"required": true,
"note": "Bundled VRM avatar models (.vrm.gz). Roster configured via boot config."
},
"vrms/previews/": {
"source": "ensure-avatars",
"required": true,
"note": "PNG thumbnail previews for avatar selector."
},
"vrms/backgrounds/": {
"source": "ensure-avatars",
"required": true,
"note": "PNG background images per avatar."
}
}
}