-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathasconfig.json
93 lines (93 loc) · 1.83 KB
/
asconfig.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
{
"application": "application.xml",
"config": "air",
"type": "app",
"compilerOptions": {
"verbose-stacktraces": true,
"advanced-telemetry": true,
"warnings": true,
"strict": true,
"use-direct-blit": true,
"source-path": ["src"],
"output": "bin/develop/R3Air.swf",
"library-path": ["libs/", "libs/assets/"],
"include-libraries": ["fonts/bin/"],
// Branding is left here for development contributions.
// The engine doesn't run unless they are filled out.
// The FFR branding is Copyright to Synthlight, you MUST modify before redistributing.
"define": [
{
"name": "CONFIG::debug",
"value": true
},
{
"name": "CONFIG::release",
"value": false
},
{
"name": "CONFIG::timeStamp",
"value": "\"9999-12-31\""
},
{
"name": "R3::HASH_STRING",
"value": "\"hashstring\""
},
{
"name": "R3::BRAND_NAME_LONG",
"value": "\"FlashFlashRevolution\""
},
{
"name": "R3::BRAND_NAME_SHORT",
"value": "\"FFR\""
},
{
"name": "R3::ROOT_URL",
"value": "\"www.flashflashrevolution.com\""
},
{
"name": "R3::VERSION",
"value": "\"0.0.0\""
},
{
"name": "R3::VERSION_PREFIX",
"value": "\"\""
},
{
"name": "R3::VERSION_SUFFIX",
"value": "\"D\""
}
],
"default-size": {
"width": 780,
"height": 480
},
"default-frame-rate": 60,
"default-background-color": "#000000",
"debug": true,
"omit-trace-statements": false,
"swf-version": 26,
"target-player": "26.0",
"locale": ["en_US"]
},
"files": ["src/Main.as"],
"airOptions": {
"windows": {
"target": "bundle",
"output": "dist/R^3GameDevelop"
},
"mac": {
"target": "bundle",
"output": "dist/r3Develop.app"
},
"files": [
{
"file": "data",
"path": "data"
},
{
"file": "changelog.txt",
"path": "changelog.txt"
}
]
}
}