Remove HRTF mode and keep emit proxy fix
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user