add vr option menu for future
This commit is contained in:
parent
5a738f4a48
commit
71f13df0bb
1 changed files with 16 additions and 1 deletions
|
|
@ -123,6 +123,11 @@ export const guiOptionsScheme: {
|
|||
custom () {
|
||||
return <Button label='Advanced...' onClick={() => openOptionsMenu('advanced')} inScreen />
|
||||
},
|
||||
},
|
||||
{
|
||||
custom () {
|
||||
return <Button label='VR...' onClick={() => openOptionsMenu('VR')} inScreen />
|
||||
},
|
||||
}
|
||||
],
|
||||
interface: [
|
||||
|
|
@ -178,6 +183,16 @@ export const guiOptionsScheme: {
|
|||
{ volume: {} },
|
||||
// { ignoreSilentSwitch: {} },
|
||||
],
|
||||
VR: [
|
||||
{
|
||||
custom () {
|
||||
return <>
|
||||
<span style={{ fontSize: 9, display: 'flex', justifyContent: 'center', alignItems: 'center' }}>VR currently has basic support</span>
|
||||
<div />
|
||||
</>
|
||||
},
|
||||
}
|
||||
],
|
||||
advanced: [
|
||||
{
|
||||
custom () {
|
||||
|
|
@ -188,4 +203,4 @@ export const guiOptionsScheme: {
|
|||
}
|
||||
],
|
||||
}
|
||||
export type OptionsGroupType = 'main' | 'render' | 'interface' | 'controls' | 'sound' | 'advanced'
|
||||
export type OptionsGroupType = 'main' | 'render' | 'interface' | 'controls' | 'sound' | 'advanced' | 'VR'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue