fixes
@@ -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"
|
||||
}
|
||||
],
|
||||
|
||||
|
Before Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 193 KiB |
@@ -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,4 +1,4 @@
|
||||
Breath = require('mechanics/Breath')
|
||||
Breath = require('mechanics/breath')
|
||||
|
||||
local POISON_RATE = 80
|
||||
|
||||
|
||||