Merge branch 'master' of https://github.com/MillaBasset/cambridge
commit
ef966d8190
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
|
@ -27,6 +27,9 @@ function GameScene:new(game_mode, ruleset, inputs)
|
|||
DiscordRPC:update({
|
||||
details = self.game.rpc_details,
|
||||
state = self.game.name,
|
||||
--largeImageText = "Level "..self.game.level????
|
||||
largeImageKey = "ingame-0"
|
||||
--largeImageKey = ingame-<section>
|
||||
})
|
||||
end
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ function ConfigScene:new()
|
|||
self.highlight = 1
|
||||
|
||||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
details = "In settings",
|
||||
state = "Changing game settings",
|
||||
})
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ local menu_screens = {
|
|||
function ConfigScene:new()
|
||||
self.menu_state = 1
|
||||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
details = "In settings",
|
||||
state = "Changing input config",
|
||||
})
|
||||
end
|
||||
|
|
|
@ -35,7 +35,7 @@ function KeyConfigScene:new()
|
|||
self.new_input = {}
|
||||
|
||||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
details = "In settings",
|
||||
state = "Changing key config",
|
||||
})
|
||||
end
|
||||
|
|
|
@ -39,6 +39,7 @@ function ModeSelectScene:new()
|
|||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
state = "Choosing a mode",
|
||||
largeImageKey = "icon2"
|
||||
})
|
||||
end
|
||||
|
||||
|
|
|
@ -8,11 +8,20 @@ local menu_screens = {
|
|||
TuningScene
|
||||
}
|
||||
|
||||
local settingsidle = {
|
||||
"Tweaking some knobs",
|
||||
"Tuning up",
|
||||
"Adjusting options",
|
||||
"Setting up",
|
||||
"Setting the settings"
|
||||
}
|
||||
|
||||
function SettingsScene:new()
|
||||
self.menu_state = 1
|
||||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
state = "Changing settings",
|
||||
details = "In settings",
|
||||
state = settingsidle[math.random(#settingsidle)],
|
||||
largeImageKey = "settings",
|
||||
})
|
||||
end
|
||||
|
||||
|
|
|
@ -23,6 +23,10 @@ local mainmenuidle = {
|
|||
"Having a nap",
|
||||
"In menus",
|
||||
"Bottom text",
|
||||
"Trying to see all the funny rpc messages (maybe)",
|
||||
"Not not not playing",
|
||||
"AFK",
|
||||
"Preparing for their next game"
|
||||
}
|
||||
|
||||
function TitleScene:new()
|
||||
|
@ -35,6 +39,7 @@ function TitleScene:new()
|
|||
DiscordRPC:update({
|
||||
details = "In menus",
|
||||
state = mainmenuidle[math.random(#mainmenuidle)],
|
||||
largeImageKey = "icon2",
|
||||
})
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue