-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
28 lines (28 loc) · 1.25 KB
/
config.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
[
{
"name": "Number Line",
"template":"phaser",
"run": [
"https://cdnjs.cloudflare.com/ajax/libs/phaser/2.4.6/phaser.min.js",
"https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.0/jquery.min.js",
"box2d-plugin-full.min.js",
"Boot.js",
"Preloader.js",
"Menu.js",
"Instructions.js",
"Run.js",
"problems.js"
],
"exp_id": "number_line",
"cognitive_atlas_task_id": [],
"contributors": [
"Jonathan Nicholas",
"Christian Battista",
"Vanessa Sochat"
],
"time":999,
"reference": "",
"publish":"True",
"deployment_variables": {"run":"//create the game and the game states\nvar game = new Phaser.Game(960, 600, Phaser.CANVAS, 'gameContainer')\nproblem_set='A'\ngame.state.add('Boot', Game.Boot)\ngame.state.add('Preloader', Game.Preloader)\ngame.state.add('Menu',Game.Menu)\ngame.state.add('Instructions', Game.Instructions)\ngame.state.add('Run', Game.Run)\n//Now start the Boot state.\ngame.state.start('Boot', true, false, problem_set)\n"}
}
]