-
Notifications
You must be signed in to change notification settings - Fork 0
/
Notas.txt
68 lines (67 loc) · 2.34 KB
/
Notas.txt
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
Tengo que hacer un engine que reciba un JSON y que genere un juego.
http://phaser.io/examples/v2/sprites/child-sprites
parent.addChild
{
"scenes": {
"card": {
"autostart": true,
"children": {
"frTop": {
"type": "BitmapData",
"fillStyle": "#000",
"width": "100%",
"height": "12%",
"position": {
"my": "top left",
"at": "top left",
"of": "parent"
}
},
"frBody": {
"type": "Sprite",
"anchors": [
{
"my": "top left",
"at": "bottom left",
"of": "parent.frTop"
},
{
"my": "bottom right",
"at": "top right",
"of": "parent.frBottom"
}
]
"children": {
"background": {
"type": "Sprite",
"texture": "/cards/images/Luis-Suarez-uruguay-best-striker.jpg"
},
"video": {
"type": "DOM_Wrapper",
"youtube": "3zKoUda-WVA",
"width": "90%",
"height": "90%",
"sizeRatio": "1.778",
"position": {
"my": "middle center",
"at": "middle center",
"of": "parent"
}
}
}
},
"frBottom": {
"type": "BitmapData",
"fillStyle": "#000",
"width": "100%",
"height": "5%",
"position": {
"my": "bottom left",
"at": "bottom left",
"of": "parent"
}
}
}
}
}
}