added song to editor, fixed invert text, update thankyous
This commit is contained in:
parent
681f4404df
commit
d7344ed04e
3 changed files with 8 additions and 7 deletions
|
@ -19,7 +19,7 @@ local pos1 = {x,y}
|
||||||
|
|
||||||
local editor = "main"
|
local editor = "main"
|
||||||
|
|
||||||
local editorSongs = {"song1","song2","song5", "song6", "song7", "song8", "song9", "song10"}
|
local editorSongs = {"song1","song2","song5", "song6", "song7", "song8", "song9", "song10", "song11"}
|
||||||
local selSong = "song2"
|
local selSong = "song2"
|
||||||
local songIndexSel = 10
|
local songIndexSel = 10
|
||||||
|
|
||||||
|
@ -208,7 +208,7 @@ function editUpdate()
|
||||||
if tileIndex > #editorSongs - 0.1 then tileIndex = 0 end
|
if tileIndex > #editorSongs - 0.1 then tileIndex = 0 end
|
||||||
if tileIndex < 0 then tileIndex = #editorSongs - 0.1 end
|
if tileIndex < 0 then tileIndex = #editorSongs - 0.1 end
|
||||||
|
|
||||||
curY = math.floor( tileIndex ) * 28 +7
|
curY = math.floor( tileIndex ) * 25 +7
|
||||||
|
|
||||||
if songIndexSel ~= math.floor(tileIndex) then
|
if songIndexSel ~= math.floor(tileIndex) then
|
||||||
songIndexSel = math.floor(tileIndex)
|
songIndexSel = math.floor(tileIndex)
|
||||||
|
@ -511,7 +511,7 @@ end
|
||||||
tileTable[8+ind]:draw(373,209)
|
tileTable[8+ind]:draw(373,209)
|
||||||
elseif editor == "music" then
|
elseif editor == "music" then
|
||||||
for i = 1, #editorSongs do
|
for i = 1, #editorSongs do
|
||||||
gfx.drawText(i,374,12+(28*(i-1)))
|
gfx.drawText(i,374,12+(25*(i-1)))
|
||||||
end
|
end
|
||||||
elseif editor == "pos2Saw" then
|
elseif editor == "pos2Saw" then
|
||||||
gfx.drawText("SELECT TARGET POSITION \nTRAVEL TIME: "..traveltime.."S",0,0)
|
gfx.drawText("SELECT TARGET POSITION \nTRAVEL TIME: "..traveltime.."S",0,0)
|
||||||
|
|
|
@ -93,8 +93,8 @@ function updateMenu()
|
||||||
if menuitems[1].name == "NO GRAVITY" then
|
if menuitems[1].name == "NO GRAVITY" then
|
||||||
local str = {[true]="TRUE",[false]="FALSE"}
|
local str = {[true]="TRUE",[false]="FALSE"}
|
||||||
page = -1
|
page = -1
|
||||||
|
|
||||||
gfx.drawText("INVERTED: ".."\nGRAVITY: "..getGrav(),0,0)
|
gfx.drawText("INVERTED: "..string.upper(tostring(playdate.display.getInverted())).."\nGRAVITY: "..getGrav(),0,0)
|
||||||
else
|
else
|
||||||
sidebar:draw(barposLerp,0)
|
sidebar:draw(barposLerp,0)
|
||||||
imgBytes:draw(logposLerp,0)
|
imgBytes:draw(logposLerp,0)
|
||||||
|
|
|
@ -4,6 +4,7 @@ Whitebrim - suggestions and discovering many bugs
|
||||||
Gant / Tiny Yellow Machine - playing the game on stream and being super supportive
|
Gant / Tiny Yellow Machine - playing the game on stream and being super supportive
|
||||||
TinyYellowMachine & Guv Bubbs - Hosting the Playdate Community Awards
|
TinyYellowMachine & Guv Bubbs - Hosting the Playdate Community Awards
|
||||||
My dad and mom - supporting me and passion
|
My dad and mom - supporting me and passion
|
||||||
all the people who donated to this project, even when they could have played it for free
|
All the amazing people who have supported this project for nearly 2 years now
|
||||||
|
Panic Inc. - creating the Playdate and making it so open for developers to use
|
||||||
You - playing my game
|
You - playing my game
|
||||||
You're all awesome
|
You're all awesome and I really appreciate all the support from everyone
|
Loading…
Reference in a new issue