forked from Triplelexx/UnrealStarterProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanual.json
61 lines (61 loc) · 1.22 KB
/
manual.json
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
{
"template": "small",
"world": {
"dimensions": {
"x_meters": 5000,
"z_meters": 5000
},
"chunk_edge_length_meters": 100,
"streaming_query_interval": 4,
"legacy_flags": [
{
"name": "streaming_query_refresh",
"value": "true"
},
{
"name": "streaming_query_diff",
"value": "true"
}
],
"snapshots": {
"snapshot_write_period_seconds": 0
}
},
"workers": [
{
"worker_type": "UnrealWorker",
"flags" : [],
"load_balancing": {
"dynamic_loadbalancer": {
"worker_scaler_config": {
"constant_config": {
"num_workers": 0
}
},
"worker_placer_config": {
"random_params": {}
},
"loadbalancer_config": {
"min_range_meters": 500.0,
"max_range_meters": 1000.0,
"speed_meters_per_second": 100.0,
"expansion_time_millis": 60000
}
}
},
"permissions": [
{
"all": {}
}
]
},
{
"worker_type": "UnrealClient",
"permissions": [
{
"all": {}
}
]
}
]
}