-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisentangle.build
61 lines (55 loc) · 1.19 KB
/
Disentangle.build
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
{
"title": "Disentangle",
"id": "Disentangle",
"description": "Prove a graph is planar by construction.",
"icons": ["assets/icon32.png", "assets/icon256.png"],
"deps": [
"%TWOCANS_SDK%/TwoCansAlpha4"
],
"source": "source",
"compilerlocale": "en",
"output": "output/%TARGET_NAME%",
"delegate-main-to": "TwoCansAlpha4",
"image-sheets": [
{
"id": "twocans_everything",
"prefix": "*"
}
],
"guidseed": "com.jsharman.Disentangle,v1,%TARGET_NAME%",
"vars": [
{ "name": "game_title", "value": "Disentangle" },
{ "name": "initial_scene", "value": "TitleScene" },
{ "name": "screen_width", "value": 640 },
{ "name": "screen_height", "value": 480 },
{ "name": "use_60_fps", "value": true },
{ "name": "enable_wasd", "value": true },
{ "name": "thumbnail", "value": "assets/icon200.png" }
],
"targets": [
{
"name": "csharp",
"platform": "csharp-app"
},
{
"name": "java",
"platform": "java-app"
},
{
"name": "python",
"platform": "python-app"
},
{
"name": "ios",
"platform": "javascript-app-ios"
},
{
"name": "android",
"platform": "javascript-app-android"
},
{
"name": "javascript",
"platform": "javascript-app"
}
]
}