forked from AmbientRun/Ambient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.json
114 lines (114 loc) · 3.06 KB
/
recipes.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"client": {
"cmd": "cargo run -p ambient"
},
"third-person-camera-release": {
"cmd": "cargo run --features profile --release -- run ./guest/rust/examples/basics/third_person_camera"
},
"third-person-camera": {
"cmd": "cargo run --features tracing -- run ./guest/rust/examples/basics/third_person_camera --no-proxy"
},
"minigolf": {
"cmd": "cargo run -- run ./guest/rust/examples/games/minigolf"
},
"tictactoe": {
"cmd": "cargo run -- run ./guest/rust/examples/games/tictactoe"
},
"fog": {
"cmd": "cargo run -- run ./guest/rust/examples/basics/fog/"
},
"skinmesh": {
"cmd": "cargo run -- run ./guest/rust/examples/basics/skinmesh"
},
"debug-third-person-camera": {
"cmd": "cargo build -p ambient --features tracing",
"components": {
"dap": {
"program": "./target/debug/ambient",
"adapter": "rust",
"justMyCode": true,
"args": [
"run",
"./guest/rust/examples/basics/third_person_camera",
"--no-proxy"
]
}
}
},
"debug-minigolf": {
"cmd": "cargo build -p ambient",
"components": {
"dap": {
"program": "./target/debug/ambient",
"adapter": "rust",
"args": [
"run",
"./guest/rust/examples/games/minigolf"
]
}
}
},
"debug-pbr": {
"cmd": "cargo build -p ambient_renderer --example pbr",
"components": {
"dap": {
"program": "./target/debug/examples/pbr",
"adapter": "rust"
}
}
},
"check-tests": {
"cmd": "cargo check --workspace --tests --examples"
},
"test": {
"cmd": "cargo nextest run --workspace"
},
"client-spatial": {
"cmd": [
"cargo",
"build",
"--message-format=json",
"--package",
"ambient_world_audio",
"--example",
"client_spatial",
"--"
],
"components": {
"cargo-dap": {}
}
},
"launch-chrome": {
"cmd": "./scripts/launch_chrome.sh"
},
"example-with-space": {
"cmd": [
"cargo",
"run",
"--features",
"tracing",
"--",
"run",
"--clean-build",
"./guest/rust/examples/breaking basics/with space"
],
"env": {
"RUST_LOG": "ambient_build=debug,ambient_std=trace,info"
}
},
"example-assets": {
"cmd": [
"cargo",
"run",
"--features",
"tracing",
"--",
"run",
"--clean-build",
"./guest/rust/examples/basics/asset_loading/"
],
"env": {
"RUST_LOG": "ambient_build=debug,ambient_std=trace,info"
}
}
}