hi again
parent
2fc763ae5d
commit
b28759e0c8
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
|
@ -8,11 +8,20 @@ local menu_screens = {
|
||||||
TuningScene
|
TuningScene
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local settingsidle = {
|
||||||
|
"Tweaking some knobs",
|
||||||
|
"Tuning up",
|
||||||
|
"Adjusting options",
|
||||||
|
"Setting up",
|
||||||
|
"Setting the settings"
|
||||||
|
}
|
||||||
|
|
||||||
function SettingsScene:new()
|
function SettingsScene:new()
|
||||||
self.menu_state = 1
|
self.menu_state = 1
|
||||||
DiscordRPC:update({
|
DiscordRPC:update({
|
||||||
details = "In menus",
|
details = "In settings",
|
||||||
state = "Changing settings",
|
state = settingsidle[math.random(#settingsidle)],
|
||||||
|
largeImageKey = "settings",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -62,4 +71,4 @@ function SettingsScene:onInputPress(e)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return SettingsScene
|
return SettingsScene
|
||||||
|
|
|
@ -23,6 +23,10 @@ local mainmenuidle = {
|
||||||
"Having a nap",
|
"Having a nap",
|
||||||
"In menus",
|
"In menus",
|
||||||
"Bottom text",
|
"Bottom text",
|
||||||
|
"Trying to see all the funny rpc messages (maybe)",
|
||||||
|
"Not not not playing",
|
||||||
|
"AFK",
|
||||||
|
"Preparing for their next game"
|
||||||
}
|
}
|
||||||
|
|
||||||
function TitleScene:new()
|
function TitleScene:new()
|
||||||
|
@ -35,6 +39,7 @@ function TitleScene:new()
|
||||||
DiscordRPC:update({
|
DiscordRPC:update({
|
||||||
details = "In menus",
|
details = "In menus",
|
||||||
state = mainmenuidle[math.random(#mainmenuidle)],
|
state = mainmenuidle[math.random(#mainmenuidle)],
|
||||||
|
largeImageKey = "icon2",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue