-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUltimateTicTacToe.build
58 lines (52 loc) · 1.18 KB
/
UltimateTicTacToe.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
{
"id": "ultimatetictactoe",
"title": "Ultimate Tic Tac Toe",
"description": "Tic Tac Toe but cooler.",
"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.twocansandstring.users.F1J7.uttt",
"vars": [
{ "name": "screen_width", "value": 600 },
{ "name": "screen_height", "value": 600 },
{ "name": "use_beta_endpoint", "value": false },
{ "name": "game_title", "value": "Ultimate Tic Tac Toe" },
{ "name": "initial_scene", "value": "MainScene" },
{ "name": "use_60_fps", "value": true },
{ "name": "enable_wasd", "value": true },
{ "name": "thumbnail", "value": "assets/thumbnail.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"
}
]
}