-
Notifications
You must be signed in to change notification settings - Fork 0
/
portalpong.game.json
85 lines (85 loc) · 2.13 KB
/
portalpong.game.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
{
"title": "PortalPong",
"developer": "SIL3nCe",
"copyright": "©2020 SIL3nCe",
"license": "Open source under the GPL-3.0-only license https://www.gnu.org/licenses/gpl-3.0.html",
"packages": [],
"scripts": [
"GameplayStatic.pyxl"
],
"modes": [
"Play",
"Menu"
],
"docs": [
"todo.md"
],
"assets": {
"font": "quad://fonts/deja-8.font.json",
"astronaut": "quad://sprites/kenney-alien-yellow-16x32.sprite.json",
"RacketCollision": "quad://sounds/hit-01.sound.json",
"WallCollision": "quad://sounds/hit-03.sound.json",
"PointTaken": "quad://sounds/coin-07.sound.json",
"EnterPortal": "quad://sounds/jump-04.sound.json",
"fontbig": "quad://fonts/deja-15.font.json",
"testfont": "quad://fonts/octant-17.font.json",
"GameMusic": "quad://sounds/loop-chilltech.sound.json"
},
"version": 0,
"min_players": 1,
"max_players": 2,
"cooperative": false,
"competitive": true,
"achievements": false,
"highscores": false,
"description": "Pong with portals",
"constants": {
"text_color": {
"type": "rgb",
"value": {
"r": 0,
"g": 1,
"b": 0
}
},
"racket_size": {
"type": "number",
"value": 15
},
"racket_width": {
"type": "number",
"value": 5
},
"racket_speed": {
"type": "number",
"value": 3
},
"ball_size": {
"type": "number",
"value": 4
},
"max_score": {
"type": "number",
"value": 10
},
"p1Color": {
"type": "rgb",
"value": {
"r": 1,
"g": 0,
"b": 0
}
},
"p2Color": {
"type": "rgb",
"value": {
"r": 0.25,
"g": 0.8,
"b": 1
}
}
},
"y_up": false,
"start_mode": "Menu",
"screenshot_tag": "PortalPong"
}