feat: add new lce team cinematic intro

This commit is contained in:
KayJann
2026-06-02 01:41:48 +02:00
parent b76e0c305d
commit bd632e7e0b
13 changed files with 190 additions and 85 deletions
+13
View File
@@ -28,6 +28,8 @@ const SettingsView = memo(function SettingsView() {
setPerfBoost,
rpcEnabled,
setRpcEnabled,
startFullscreen,
setStartFullscreen,
legacyMode,
setLegacyMode,
mangohudEnabled,
@@ -100,6 +102,11 @@ const SettingsView = memo(function SettingsView() {
setRpcEnabled(!rpcEnabled);
};
const handleFullscreenToggle = () => {
playPressSound();
setStartFullscreen(!startFullscreen);
};
const handleLegacyToggle = () => {
playPressSound();
setLegacyMode(!legacyMode);
@@ -396,6 +403,12 @@ const SettingsView = memo(function SettingsView() {
},
});
} else if (currentSubMenu === "launcher") {
items.push({
id: "fullscreen",
label: `Start in Fullscreen: ${startFullscreen ? "ON" : "OFF"}`,
type: "button",
onClick: handleFullscreenToggle,
});
items.push({
id: "rpc",
label: `Discord RPC: ${rpcEnabled ? "ON" : "OFF"}`,