Compare commits

..

No commits in common. "8dc59a562e928d2ed1999f18358a3d4203fd19e8" and "a7ee1d786180c209b785368ffb2ebb7e8c38aac5" have entirely different histories.

4 changed files with 12 additions and 3 deletions

View File

@ -22,8 +22,9 @@ sounds = {
go = love.audio.newSource("res/se/go.wav", "static"), go = love.audio.newSource("res/se/go.wav", "static"),
irs = love.audio.newSource("res/se/irs.wav", "static"), irs = love.audio.newSource("res/se/irs.wav", "static"),
ihs = love.audio.newSource("res/se/ihs.wav", "static"), ihs = love.audio.newSource("res/se/ihs.wav", "static"),
-- a secret sound! -- secret sounds!
welcome = love.audio.newSource("res/se/welcomeToCambridge.wav", "static"), welcome = love.audio.newSource("res/se/welcomeToCambridge.wav", "static"),
mystery = love.audio.newSource("res/se/mystery.wav", "static"),
} }
function playSE(sound, subsound) function playSE(sound, subsound)

BIN
res/se/mystery.wav Normal file

Binary file not shown.

View File

@ -53,7 +53,7 @@ function CreditsScene:render()
love.graphics.print("Oshisaure\nJoe Zeng", 320, 590 - offset) love.graphics.print("Oshisaure\nJoe Zeng", 320, 590 - offset)
love.graphics.print("Mizu\nMarkGamed\nHailey", 320, 680 - offset) love.graphics.print("Mizu\nMarkGamed\nHailey", 320, 680 - offset)
love.graphics.print( love.graphics.print(
"2Tie - TGMsim\nAxel Fox - Multimino\nDr Ocelot - Tetra Legends\n" .. "Alexey Pajitnov - Tetris\n2Tie - TGMsim\nAxel Fox - Multimino\nDr Ocelot - Tetra Legends\n" ..
"Electra - ZTrix\nFelicity/nightmareci/kdex - Shiromino\n" .. "Electra - ZTrix\nFelicity/nightmareci/kdex - Shiromino\n" ..
"Mine - Tetra Online\nMrZ - Techmino\nosk - TETR.IO\n" .. "Mine - Tetra Online\nMrZ - Techmino\nosk - TETR.IO\n" ..
"Phoenix Flare - Master of Blocks\nRayRay26 - Spirit Drop\n" .. "Phoenix Flare - Master of Blocks\nRayRay26 - Spirit Drop\n" ..

View File

@ -103,6 +103,14 @@ function TitleScene:onInputPress(e)
elseif e.input == "up" or e.scancode == "up" then elseif e.input == "up" or e.scancode == "up" then
self:changeOption(-1) self:changeOption(-1)
playSE("cursor") playSE("cursor")
elseif e.scancode == "kp5" then
DiscordRPC:update({
details = "Pressed the cool button",
state = "You found the cool easter egg!",
largeImageKey = "transbridge",
})
playSE("mystery")
--now you've just spoiled the fun for yourself.
elseif e.input == "down" or e.scancode == "down" then elseif e.input == "down" or e.scancode == "down" then
self:changeOption(1) self:changeOption(1)
playSE("cursor") playSE("cursor")