-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathenums.js
More file actions
31 lines (25 loc) · 994 Bytes
/
enums.js
File metadata and controls
31 lines (25 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export const Keys = {
DISABLE_ON_BATTERY: "general-disable-on-battery",
VIDEO_PATH: "background-video-path",
SCALING_MODE: "background-video-scaling-mode",
USE_VIDEORATE: "background-video-use-videorate",
FRAMERATE: "background-video-framerate",
LOOPED: "background-video-looped",
FADE_IN_DURATION: "background-fade-in-duration",
BLUR_RADIUS: "background-video-blur-radius",
BLUR_BRIGHTNESS: "background-video-blur-brightness",
AUDIO_VOLUME: "background-audio-volume",
PROMPT_PAUSE: "prompt-pause-video",
PROMPT_GRAYSCALE: "prompt-grayscale",
PROMPT_CHANGE_BLUR: "prompt-change-blur",
PROMPT_BLUR_RADIUS: "prompt-blur-radius",
PROMPT_BLUR_BRIGHTNESS: "prompt-blur-brightness",
PROMPT_BLUR_ANIM_DURATION: "prompt-blur-anim-duration",
DEBUG_USE_COLOR_ACCURATE: "debug-use-color-accurate",
DEBUG_FORCE_FULLSCREEN: "debug-force-fullscreen",
};
export const ScalingMode = {
STRETCH: 0,
FIT: 1,
COVER: 2,
}