This commit is contained in:
2017-07-23 18:45:51 -04:00
parent 26014d7a27
commit 3b598378e3
27 changed files with 15 additions and 12 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ ios:
mv conf.lua conf.default.lua
mv conf.mobile.lua conf.lua
zip -r dist/supersphere2-ios.love assets vendor *.lua
zip -r dist/supersphere2-ios.love mechanics assets vendor *.lua
mv conf.lua conf.mobile.lua
mv conf.default.lua conf.lua
@@ -1,13 +1,15 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-61.png",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-60@2x-1.png",
"scale" : "3x"
},
{
@@ -43,13 +45,13 @@
{
"size" : "57x57",
"idiom" : "iphone",
"filename" : "Icon-57.png",
"filename" : "Icon-60@2x-2.png",
"scale" : "1x"
},
{
"size" : "57x57",
"idiom" : "iphone",
"filename" : "Icon-57@2x.png",
"filename" : "Icon-60@2x-3.png",
"scale" : "2x"
},
{
@@ -137,12 +139,13 @@
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "hmm.png",
"filename" : "Icon-83.5@2x-1.png",
"scale" : "2x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "iTunesArtwork.png",
"scale" : "1x"
}
],
Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.
+4 -4
View File
@@ -3,10 +3,10 @@ Signal = require('vendor/hump.signal')
Class = require('vendor/middleclass')
lue = require('vendor/lue')
Breath = require('mechanics/Breath')
Obstacle = require('mechanics/Obstacle')
Jump = require('mechanics/Jump')
Guy = require('mechanics/Guy')
Breath = require('mechanics/breath')
Obstacle = require('mechanics/obstacle')
Jump = require('mechanics/jump')
Guy = require('mechanics/guy')
BreathTimer = Timer.new()
GameTimer = Timer.new()
+1 -1
View File
@@ -1,4 +1,4 @@
Breath = require('mechanics/Breath')
Breath = require('mechanics/breath')
local POISON_RATE = 80