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
|
{
"level1": {
"background": {
"image": "resources/space1.bmp"
},
"playerstart": {
"x": 0,
"y": 0,
},
"objects": {
"earth": {
"type": "planet",
"x": 0,
"y": 0,
"scale": 1,
"gravity": 9.8,
"image": "resources/earth.bmp"
},
"moon": {
"type": "planet",
"x": 500,
"y": 0,
"scale": 1,
"gravity": 3,
"image": "resources/moon.bmp"
}
}
}
}
|