This repository has been archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
default_launch.json
107 lines (107 loc) · 1.94 KB
/
default_launch.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
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
{
"template": "n1standard2_std40_r0500",
"world": {
"chunkEdgeLengthMeters": 50,
"snapshots": {
"snapshotWritePeriodSeconds": 0
},
"dimensions": {
"xMeters": 300,
"zMeters": 300
},
"legacy_flags": [
{
"name": "interest_queries_components_are_filtered_by_component_delivery",
"value": "false"
}
]
},
"load_balancing": {
"layer_configurations": [
{
"layer": "UnityGameLogic",
"rectangle_grid": {
"cols": 1,
"rows": 1
},
"options": {
"manual_worker_connection_only": true
}
},
{
"layer": "SimulatedPlayerCoordinator",
"rectangle_grid": {
"cols": 1,
"rows": 1
},
"options": {
"manual_worker_connection_only": true
}
}
]
},
"workers": [
{
"worker_type": "UnityGameLogic",
"flags": [
{
"name": "world_size",
"value": "4"
}
],
"permissions": [
{
"all": {}
}
]
},
{
"worker_type": "SimulatedPlayerCoordinator",
"flags": [
{
"name": "world_size",
"value": "4"
},
{
"name": "fps_simulated_players_per_coordinator",
"value": "2"
},
{
"name": "fps_simulated_players_creation_interval",
"value": "5"
}
],
"permissions": [
{
"all": {}
}
]
},
{
"worker_type": "UnityClient",
"flags": [
{
"name": "world_size",
"value": "4"
}
],
"permissions": [
{
"all": {}
}
]
},
{
"worker_type": "MobileClient",
"flags": [
{
"name": "world_size",
"value": "4"
}
],
"permissions": [{
"all": {}
}]
}
]
}