1.0.2
This commit is contained in:
parent
1821095a89
commit
ea39499a43
7 changed files with 10 additions and 19 deletions
|
@ -207,7 +207,7 @@ function editUpdate()
|
|||
songIndexSel = math.floor(tileIndex)
|
||||
song:stop()
|
||||
song:load("sfx/"..editorSongs[songIndexSel+1])
|
||||
song:play()
|
||||
song:play(0)
|
||||
end
|
||||
elseif editor == "pos2Saw" then
|
||||
traveltime += change * 0.002
|
||||
|
|
|
@ -49,6 +49,7 @@ function addMap(_file, rs)
|
|||
if level.saws then loadBlades(level.saws) end
|
||||
if level.rotators then loadSpins(level.rotators) end
|
||||
if level.fuel then loadFuel(level.fuel) end
|
||||
grav = level.grav or 0.2
|
||||
if level.next then next = level.next end
|
||||
if level.tutorial then tutorial = level.tutorial end
|
||||
addPlayer(level.rocket.x+14,level.rocket.y+15, level.bigrocket.x+32, level.bigrocket.y+32)
|
||||
|
|
|
@ -18,7 +18,7 @@ page = 0
|
|||
|
||||
local imgCursor = gfx.image.new("gfx/cursor")
|
||||
local imgBytes = gfx.image.new("gfx/bytes")
|
||||
local imgQRs = gfx.image.new("gfx/aboutme")
|
||||
local imgQRs = gfx.image.new("gfx/links")
|
||||
assert(imgCursor)
|
||||
assert(imgBytes)
|
||||
assert(imgQRs)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
local velocity = {x=0,y=0}
|
||||
local lerpmnt <const> = 0.5
|
||||
local grav <const> = 0.2
|
||||
grav = 0.2
|
||||
scale = 1
|
||||
local dead = false
|
||||
|
||||
|
|
|
@ -349,11 +349,6 @@
|
|||
"t":2,
|
||||
"x":97,
|
||||
"y":104
|
||||
},
|
||||
{
|
||||
"t":3,
|
||||
"x":101,
|
||||
"y":104
|
||||
},
|
||||
{
|
||||
"t":3,
|
||||
|
@ -3299,16 +3294,6 @@
|
|||
"t":5,
|
||||
"x":121,
|
||||
"y":104
|
||||
},
|
||||
{
|
||||
"t":5,
|
||||
"x":116,
|
||||
"y":98
|
||||
},
|
||||
{
|
||||
"t":5,
|
||||
"x":117,
|
||||
"y":98
|
||||
},
|
||||
{
|
||||
"t":7,
|
||||
|
@ -3529,6 +3514,11 @@
|
|||
"t":9,
|
||||
"x":99,
|
||||
"y":125
|
||||
},
|
||||
{
|
||||
"t":4,
|
||||
"x":102,
|
||||
"y":104
|
||||
}
|
||||
]
|
||||
}
|
BIN
Source/gfx/links.png
Normal file
BIN
Source/gfx/links.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
|
@ -3,6 +3,6 @@ author=PossiblyAxolotl
|
|||
description=Help a crew of rockets collect energy to get back home!
|
||||
bundleID=com.PossiblyAxolotl.RocketBytes
|
||||
launchSoundPath=launcher/rocketing
|
||||
version=1.0.0
|
||||
version=1.0.2
|
||||
buildNumber=1
|
||||
imagePath=launcher
|
Loading…
Reference in a new issue