Remove HRTF mode and keep emit proxy fix

This commit is contained in:
Jage9
2026-03-09 13:10:49 -04:00
parent a34a9f7f42
commit b051a0a851
12 changed files with 122 additions and 594 deletions

View File

@@ -5,7 +5,6 @@ export type MainModeCommand =
| 'editNickname'
| 'toggleMute'
| 'toggleOutputMode'
| 'toggleSpatialMode'
| 'toggleLoopback'
| 'toggleVoiceLayer'
| 'toggleItemLayer'
@@ -46,7 +45,6 @@ export type MainModeCommand =
*/
export function resolveMainModeCommand(code: string, shiftKey: boolean): MainModeCommand | null {
if (code === 'KeyN') return shiftKey ? null : 'editNickname';
if (code === 'KeyH') return shiftKey ? null : 'toggleSpatialMode';
if (code === 'KeyM') return shiftKey ? 'toggleOutputMode' : 'toggleMute';
if (code === 'Digit1') return shiftKey ? 'toggleLoopback' : 'toggleVoiceLayer';
if (code === 'Digit2') return shiftKey ? null : 'toggleItemLayer';

View File

@@ -38,14 +38,6 @@ const MAIN_MODE_COMMANDS: MainModeCommandDescriptor[] = [
section: 'Audio',
isAvailable: () => true,
},
{
id: 'toggleSpatialMode',
label: 'Toggle classic or HRTF spatial audio',
shortcut: 'H',
tooltip: 'Switch between classic stereo panning and HRTF spatial audio.',
section: 'Audio',
isAvailable: () => true,
},
{
id: 'toggleOutputMode',
label: 'Toggle stereo or mono output',