-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.js
54 lines (49 loc) · 1.39 KB
/
config.js
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* This is where you want to add your tips. They **MUST** be in this structure. You can
* have as many or little as you want. In each tooltip object, the `content` value also supports markdown
*
* A list of the markdown supported can be found on the docs
*/
export const LOADSCREEN_TIPS = [
{
title: "Bold Tip",
content: "**This is just a bold tip. WOW its all bold!**"
},
{
title: "Italics Tip",
content: "*Wew, now its all in italics*"
},
{
title: "Bold Italics",
content: "***Lets now combine the best of both worlds! Lets use bold italics***"
},
{
title: "Nice Tip 4",
content: "Find our discord here"
},
{
title: 'Markdown Render',
content: '**This is bold**. But this is not. [This is a link!](https://github.com/project-error/pe-basicloadscreen/#)'
}
];
// How long a tip is on screen before we automatically
// go to the next one (ms)
export const TIP_CHANGE_INTERVAL = 10000
// How long we stay on a background until we
// go to the next one (ms)
export const BACKGROUND_CHANGE_INTERVAL = 5000
// An array of image files that are available in the `bg` folder
export const BACKGROUND_IMAGES = [
"1.jpg",
"2.jpg",
"3.jpg",
"4.jpg",
"5.jpg",
"6.jpg",
"7.jpg",
"8.jpg"
]
// Whether we should enable the cursor for the loadscreen
export const ENABLE_CURSOR = false
// Enable github flavored markdown
export const ENABLE_GFM_MARKDOWN = false