-
Notifications
You must be signed in to change notification settings - Fork 0
/
sky.config.patch
114 lines (114 loc) · 2.68 KB
/
sky.config.patch
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[
// Replace the array of night sky stars with a completely new one, using duplicates to define probability
{
"op": "replace",
"path": "/stars/list",
"value": [
"/sky/stars/ste_whiteL.png",
"/sky/stars/ste_whiteM.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_whiteS.png",
"/sky/stars/ste_blueL.png",
"/sky/stars/ste_blueM.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_blueS.png",
"/sky/stars/ste_violetL.png",
"/sky/stars/ste_violetM.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_violetS.png",
"/sky/stars/ste_purpleM.png",
"/sky/stars/ste_purpleM.png"
]
},
// Reduce the amount of stars visible in the sky
{
"op": "replace",
"path": "/stars/cellCount/0",
"value": 55
},
{
"op": "replace",
"path": "/stars/cellCount/1",
"value": 55
},
// Increase cell sizes to reduce the amount of nebulae visible in outer space
{
"op": "replace",
"path": "/spaceDebrisFields/0/cellSize",
"value": 800
},
{
"op": "replace",
"path": "/spaceDebrisFields/1/cellSize",
"value": 950
},
{
"op": "replace",
"path": "/spaceDebrisFields/2/cellSize",
"value": 1100
},
{
"op": "replace",
"path": "/spaceDebrisFields/3/cellSize",
"value": 4000
},
// Drastically reduce velocity of nebulae in outer space
{
"op": "replace",
"path": "/spaceDebrisFields/0/velocityRange",
"value": [-0.1, 0.2]
},
{
"op": "replace",
"path": "/spaceDebrisFields/1/velocityRange",
"value": [-0.1, 0.2]
},
{
"op": "replace",
"path": "/spaceDebrisFields/2/velocityRange",
"value": [-0.1, 0.2]
},
{
"op": "replace",
"path": "/spaceDebrisFields/3/velocityRange",
"value": [-0.1, 0.2]
},
{
"op": "replace",
"path": "/spaceDebrisFields/0/angularVelocityRange",
"value": [-0.25, 0.25]
},
{
"op": "replace",
"path": "/spaceDebrisFields/1/angularVelocityRange",
"value": [-0.25, 0.25]
},
{
"op": "replace",
"path": "/spaceDebrisFields/2/angularVelocityRange",
"value": [-0.25, 0.25]
},
{
"op": "replace",
"path": "/spaceDebrisFields/3/angularVelocityRange",
"value": [-0.25, 0.25]
},
// Allow for the second range to support up to two nebulae
{
"op": "replace",
"path": "/spaceDebrisFields/1/cellCountRange/1",
"value": 2
}
]