mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-06 21:28:27 +02:00
6.0
This commit is contained in:
104
src/enums/pref-values.ts
Executable file
104
src/enums/pref-values.ts
Executable file
@@ -0,0 +1,104 @@
|
||||
export const enum UiSection {
|
||||
ALL_GAMES = 'all-games',
|
||||
FRIENDS = 'friends',
|
||||
MOST_POPULAR = 'most-popular',
|
||||
NATIVE_MKB = 'native-mkb',
|
||||
NEWS = 'news',
|
||||
TOUCH = 'touch',
|
||||
BOYG = 'byog',
|
||||
}
|
||||
|
||||
export const enum GameBarPosition {
|
||||
BOTTOM_LEFT = 'bottom-left',
|
||||
BOTTOM_RIGHT = 'bottom-right',
|
||||
OFF = 'off',
|
||||
};
|
||||
|
||||
export const enum UiLayout {
|
||||
TV = 'tv',
|
||||
NORMAL = 'normal',
|
||||
DEFAULT = 'default',
|
||||
}
|
||||
|
||||
export const enum LoadingScreenRocket {
|
||||
SHOW = 'show',
|
||||
HIDE = 'hide',
|
||||
HIDE_QUEUE = 'hide-queue',
|
||||
}
|
||||
|
||||
export const enum StreamResolution {
|
||||
DIM_720P = '720p',
|
||||
DIM_1080P = '1080p',
|
||||
DIM_1080P_HQ = '1080p-hq',
|
||||
AUTO = 'auto',
|
||||
}
|
||||
|
||||
export const enum CodecProfile {
|
||||
DEFAULT = 'default',
|
||||
LOW = 'low',
|
||||
NORMAL = 'normal',
|
||||
HIGH = 'high',
|
||||
};
|
||||
|
||||
export const enum TouchControllerMode {
|
||||
DEFAULT = 'default',
|
||||
ALL = 'all',
|
||||
OFF = 'off',
|
||||
}
|
||||
|
||||
export const enum TouchControllerStyleStandard {
|
||||
DEFAULT = 'default',
|
||||
WHITE = 'white',
|
||||
MUTED = 'muted',
|
||||
}
|
||||
|
||||
export const enum TouchControllerStyleCustom {
|
||||
DEFAULT = 'default',
|
||||
MUTED = 'muted',
|
||||
}
|
||||
|
||||
export const enum DeviceVibrationMode {
|
||||
ON = 'on',
|
||||
AUTO = 'auto',
|
||||
OFF = 'off',
|
||||
}
|
||||
|
||||
export const enum NativeMkbMode {
|
||||
DEFAULT = 'default',
|
||||
ON = 'on',
|
||||
OFF = 'off',
|
||||
}
|
||||
|
||||
export const enum StreamStat {
|
||||
PING = 'ping',
|
||||
JITTER = 'jit',
|
||||
FPS = 'fps',
|
||||
BITRATE = 'btr',
|
||||
DECODE_TIME = 'dt',
|
||||
PACKETS_LOST = 'pl',
|
||||
FRAMES_LOST = 'fl',
|
||||
DOWNLOAD = 'dl',
|
||||
UPLOAD = 'ul',
|
||||
PLAYTIME = 'play',
|
||||
BATTERY = 'batt',
|
||||
CLOCK = 'time',
|
||||
};
|
||||
|
||||
export const enum VideoRatio {
|
||||
'16:9' = '16:9',
|
||||
'18:9' = '18:9',
|
||||
'21:9' = '21:9',
|
||||
'16:10' = '16:10',
|
||||
'4:3' = '4:3',
|
||||
FILL = 'fill',
|
||||
}
|
||||
|
||||
export const enum StreamPlayerType {
|
||||
VIDEO = 'default',
|
||||
WEBGL2 = 'webgl2',
|
||||
}
|
||||
|
||||
export const enum StreamVideoProcessing {
|
||||
USM = 'usm',
|
||||
CAS = 'cas',
|
||||
}
|
Reference in New Issue
Block a user