diff --git a/Source/Editor.lua b/Source/Editor.lua index 5fb4b17..edb013e 100644 --- a/Source/Editor.lua +++ b/Source/Editor.lua @@ -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 diff --git a/Source/Map.lua b/Source/Map.lua index 74dc7be..763f3f6 100644 --- a/Source/Map.lua +++ b/Source/Map.lua @@ -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) diff --git a/Source/Menu.lua b/Source/Menu.lua index c9fab0b..0c0ff6c 100644 --- a/Source/Menu.lua +++ b/Source/Menu.lua @@ -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) diff --git a/Source/Player.lua b/Source/Player.lua index 5b458e7..155a651 100644 --- a/Source/Player.lua +++ b/Source/Player.lua @@ -1,6 +1,6 @@ local velocity = {x=0,y=0} local lerpmnt = 0.5 -local grav = 0.2 +grav = 0.2 scale = 1 local dead = false diff --git a/Source/data/15. ESCAPE.json b/Source/data/15. ESCAPE.json index 0985e7b..e765f23 100644 --- a/Source/data/15. ESCAPE.json +++ b/Source/data/15. ESCAPE.json @@ -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 } ] } \ No newline at end of file diff --git a/Source/gfx/links.png b/Source/gfx/links.png new file mode 100644 index 0000000..a7f1971 Binary files /dev/null and b/Source/gfx/links.png differ diff --git a/Source/pdxinfo b/Source/pdxinfo index c8e95d8..9dd2f9d 100644 --- a/Source/pdxinfo +++ b/Source/pdxinfo @@ -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 \ No newline at end of file