Create Electron app

This commit is contained in:
Matthias Schiffer 2018-12-08 12:39:18 +01:00
parent 439dcf3917
commit b3950330e3
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
65 changed files with 3039 additions and 135 deletions

View file

@ -0,0 +1,3 @@
{
"sprite": "green_circle"
}

View file

@ -0,0 +1,10 @@
{
"sprite": "red_circle",
"collision": [
{
"type": "circle",
"center": [0, 0],
"radius": 0.46875
}
]
}

View file

@ -0,0 +1,3 @@
{
"sprite": "red_ellipse"
}

View file

@ -0,0 +1,23 @@
{
"sprite": "square",
"collision": [
{
"type": "polygon",
"vertices": [
[-0.46875, -0.46875],
[-0.46875, 0.46875],
[0.46875, 0.46875],
[0.46875, -0.46875]
]
}
],
"frames": 4,
"animation": {
"sequence": [
[500, 0],
[500, 1],
[500, 2],
[500, 3]
]
}
}

View file

@ -0,0 +1,12 @@
{
"sprite": "water",
"frames": 4,
"animation": {
"sequence": [
[500, 0],
[500, 1],
[500, 2],
[500, 3]
]
}
}