-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathhydrate_project.json
52 lines (51 loc) · 1.18 KB
/
hydrate_project.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
{
"schema_def_paths": [
"rafx-assets/schema",
"rafx-plugins/schema"
],
"import_data_path": "demo-editor/data/import_data",
"build_data_path": "demo-editor/data/build_data",
"job_data_path": "demo-editor/data/job_data",
"id_based_asset_sources": [
{
"name": "vault",
"path": "demo-editor/data/assets_id_based"
}
],
"path_based_asset_sources": [
{
"name": "demo-assets",
"path": "demo/assets"
},
{
"name": "rafx-plugins",
"path": "rafx-plugins/assets"
},
{
"name": "assets-triangle-example",
"path": "rafx/examples/asset_triangle/assets"
},
{
"name": "renderer-triangle-example",
"path": "rafx/examples/renderer_triangle/assets"
}
],
"source_file_locations": [
],
"schema_codegen_jobs": [
{
"name": "rafx-assets",
"schema_path": "rafx-assets/schema",
"included_schema_paths": [],
"outfile": "rafx-assets/src/schema_codegen.rs"
},
{
"name": "rafx-plugins",
"schema_path": "rafx-plugins/schema",
"included_schema_paths": [
"rafx-assets/schema"
],
"outfile": "rafx-plugins/src/schema_codegen.rs"
}
]
}