rust-map-parser 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. rust_map_parser-0.1.0.dist-info/METADATA +538 -0
  2. rust_map_parser-0.1.0.dist-info/RECORD +110 -0
  3. rust_map_parser-0.1.0.dist-info/WHEEL +5 -0
  4. rust_map_parser-0.1.0.dist-info/licenses/LICENSE +21 -0
  5. rust_map_parser-0.1.0.dist-info/top_level.txt +1 -0
  6. rustmap/__init__.py +44 -0
  7. rustmap/config.py +236 -0
  8. rustmap/data/__init__.py +1 -0
  9. rustmap/data/monument_metadata.json +954 -0
  10. rustmap/data/no_build_zones.json +9543 -0
  11. rustmap/data/prefab_manifest.json +242637 -0
  12. rustmap/data/spawn_rules.json +3308 -0
  13. rustmap/data/tunnel_tiles/__init__.py +1 -0
  14. rustmap/data/tunnel_tiles/template_000__curve-nw-0.png +0 -0
  15. rustmap/data/tunnel_tiles/template_001__curve-nw-1.png +0 -0
  16. rustmap/data/tunnel_tiles/template_002__intersection-bb1-n.png +0 -0
  17. rustmap/data/tunnel_tiles/template_003__intersection-bb4-n.png +0 -0
  18. rustmap/data/tunnel_tiles/template_004__intersection-b5-n.png +0 -0
  19. rustmap/data/tunnel_tiles/template_005__intersection-b3-n.png +0 -0
  20. rustmap/data/tunnel_tiles/template_006__intersection-b2-n.png +0 -0
  21. rustmap/data/tunnel_tiles/template_007__intersection-bb2-n.png +0 -0
  22. rustmap/data/tunnel_tiles/template_008__intersection-b6-n.png +0 -0
  23. rustmap/data/tunnel_tiles/template_009__intersection-bb3-n.png +0 -0
  24. rustmap/data/tunnel_tiles/template_010__intersection-b4-n.png +0 -0
  25. rustmap/data/tunnel_tiles/template_011__intersection-bb6-n.png +0 -0
  26. rustmap/data/tunnel_tiles/template_012__intersection-n.png +0 -0
  27. rustmap/data/tunnel_tiles/template_013__intersection-b1-n.png +0 -0
  28. rustmap/data/tunnel_tiles/template_014__intersection-bb5-n.png +0 -0
  29. rustmap/data/tunnel_tiles/template_015__station-sn-0.png +0 -0
  30. rustmap/data/tunnel_tiles/template_016__straight-sn-3.png +0 -0
  31. rustmap/data/tunnel_tiles/template_017__straight-sn-2.png +0 -0
  32. rustmap/data/tunnel_tiles/template_018__station-sn-1.png +0 -0
  33. rustmap/data/tunnel_tiles/template_019__straight-sn-0.png +0 -0
  34. rustmap/data/tunnel_tiles/template_020__straight-sn-1.png +0 -0
  35. rustmap/data/tunnel_tiles/template_021__station-sn-3.png +0 -0
  36. rustmap/data/tunnel_tiles/template_022__straight-sn-4.png +0 -0
  37. rustmap/data/tunnel_tiles/template_023__station-sn-2.png +0 -0
  38. rustmap/data/tunnel_tiles/template_024__straight-sn-5.png +0 -0
  39. rustmap/data/tunnel_tiles/template_025__curve-ne-1.png +0 -0
  40. rustmap/data/tunnel_tiles/template_026__curve-ne-0.png +0 -0
  41. rustmap/data/tunnel_tiles/template_027__intersection.png +0 -0
  42. rustmap/data/tunnel_tiles/template_028__intersection-bb2-s.png +0 -0
  43. rustmap/data/tunnel_tiles/template_029__intersection-b2-s.png +0 -0
  44. rustmap/data/tunnel_tiles/template_030__intersection-b6-s.png +0 -0
  45. rustmap/data/tunnel_tiles/template_031__intersection-bb5-s.png +0 -0
  46. rustmap/data/tunnel_tiles/template_032__intersection-bb1-s.png +0 -0
  47. rustmap/data/tunnel_tiles/template_033__intersection-s.png +0 -0
  48. rustmap/data/tunnel_tiles/template_034__intersection-b1-s.png +0 -0
  49. rustmap/data/tunnel_tiles/template_035__intersection-bb6-s.png +0 -0
  50. rustmap/data/tunnel_tiles/template_036__intersection-b5-s.png +0 -0
  51. rustmap/data/tunnel_tiles/template_037__intersection-bb4-s.png +0 -0
  52. rustmap/data/tunnel_tiles/template_038__intersection-b3-s.png +0 -0
  53. rustmap/data/tunnel_tiles/template_039__intersection-bb3-s.png +0 -0
  54. rustmap/data/tunnel_tiles/template_040__intersection-b4-s.png +0 -0
  55. rustmap/data/tunnel_tiles/template_041__straight-we-3.png +0 -0
  56. rustmap/data/tunnel_tiles/template_042__station-we-1.png +0 -0
  57. rustmap/data/tunnel_tiles/template_043__straight-we-5.png +0 -0
  58. rustmap/data/tunnel_tiles/template_044__straight-we-4.png +0 -0
  59. rustmap/data/tunnel_tiles/template_045__station-we-2.png +0 -0
  60. rustmap/data/tunnel_tiles/template_046__station-we-3.png +0 -0
  61. rustmap/data/tunnel_tiles/template_047__station-we-0.png +0 -0
  62. rustmap/data/tunnel_tiles/template_048__straight-we-2.png +0 -0
  63. rustmap/data/tunnel_tiles/template_049__straight-we-1.png +0 -0
  64. rustmap/data/tunnel_tiles/template_050__straight-we-0.png +0 -0
  65. rustmap/data/tunnel_tiles/template_051__curve-se-0.png +0 -0
  66. rustmap/data/tunnel_tiles/template_052__curve-se-1.png +0 -0
  67. rustmap/data/tunnel_tiles/template_053__intersection-bb3-w.png +0 -0
  68. rustmap/data/tunnel_tiles/template_054__intersection-w.png +0 -0
  69. rustmap/data/tunnel_tiles/template_055__intersection-bb5-w.png +0 -0
  70. rustmap/data/tunnel_tiles/template_056__intersection-b5-w.png +0 -0
  71. rustmap/data/tunnel_tiles/template_057__intersection-b1-w.png +0 -0
  72. rustmap/data/tunnel_tiles/template_058__intersection-bb1-w.png +0 -0
  73. rustmap/data/tunnel_tiles/template_059__intersection-bb4-w.png +0 -0
  74. rustmap/data/tunnel_tiles/template_060__intersection-b4-w.png +0 -0
  75. rustmap/data/tunnel_tiles/template_061__intersection-b6-w.png +0 -0
  76. rustmap/data/tunnel_tiles/template_062__intersection-bb2-w.png +0 -0
  77. rustmap/data/tunnel_tiles/template_063__intersection-b3-w.png +0 -0
  78. rustmap/data/tunnel_tiles/template_064__intersection-b2-w.png +0 -0
  79. rustmap/data/tunnel_tiles/template_065__intersection-bb6-w.png +0 -0
  80. rustmap/data/tunnel_tiles/template_066__curve-sw-0.png +0 -0
  81. rustmap/data/tunnel_tiles/template_067__curve-sw-1.png +0 -0
  82. rustmap/data/tunnel_tiles/template_068__intersection-bb3-e.png +0 -0
  83. rustmap/data/tunnel_tiles/template_069__intersection-bb6-e.png +0 -0
  84. rustmap/data/tunnel_tiles/template_070__intersection-b4-e.png +0 -0
  85. rustmap/data/tunnel_tiles/template_071__intersection-b6-e.png +0 -0
  86. rustmap/data/tunnel_tiles/template_072__intersection-b5-e.png +0 -0
  87. rustmap/data/tunnel_tiles/template_073__intersection-b1-e.png +0 -0
  88. rustmap/data/tunnel_tiles/template_074__intersection-b3-e.png +0 -0
  89. rustmap/data/tunnel_tiles/template_075__intersection-bb2-e.png +0 -0
  90. rustmap/data/tunnel_tiles/template_076__intersection-e.png +0 -0
  91. rustmap/data/tunnel_tiles/template_077__intersection-bb1-e.png +0 -0
  92. rustmap/data/tunnel_tiles/template_078__intersection-bb4-e.png +0 -0
  93. rustmap/data/tunnel_tiles/template_079__intersection-b2-e.png +0 -0
  94. rustmap/data/tunnel_tiles/template_080__intersection-bb5-e.png +0 -0
  95. rustmap/data/tunnel_tiles/tiles.json +997 -0
  96. rustmap/exporter.py +409 -0
  97. rustmap/layers.py +323 -0
  98. rustmap/monument_assets.py +145 -0
  99. rustmap/monuments.py +226 -0
  100. rustmap/no_build.py +288 -0
  101. rustmap/no_build_assets.py +303 -0
  102. rustmap/parser.py +297 -0
  103. rustmap/png.py +18 -0
  104. rustmap/populations.py +361 -0
  105. rustmap/prefabs.py +281 -0
  106. rustmap/renderer.py +460 -0
  107. rustmap/resources.py +26 -0
  108. rustmap/tunnel_assets.py +398 -0
  109. rustmap/tunnels.py +417 -0
  110. rustmap/validation.py +106 -0
@@ -0,0 +1,997 @@
1
+ {
2
+ "schema_version": 5,
3
+ "identity": {
4
+ "schema_version": 5,
5
+ "rust_build_id": "24091435",
6
+ "bundles": {
7
+ "content": {
8
+ "size": 4412718160,
9
+ "mtime_ns": 1783536348287478600
10
+ },
11
+ "asset_scenes": {
12
+ "size": 1007244752,
13
+ "mtime_ns": 1783536348287478600
14
+ },
15
+ "maps": {
16
+ "size": 114147120,
17
+ "mtime_ns": 1783116536193229800
18
+ }
19
+ }
20
+ },
21
+ "template_count": 81,
22
+ "template_pixels_per_meter": 8.0,
23
+ "templates": [
24
+ {
25
+ "key": "template_000",
26
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-nw-0.prefab",
27
+ "mask_file": "template_000__curve-nw-0.png",
28
+ "mask_pixels_per_meter": 8.0,
29
+ "mask_left_x": -108.125,
30
+ "mask_top_z": 108.25,
31
+ "mask_shape": [
32
+ 934,
33
+ 933
34
+ ]
35
+ },
36
+ {
37
+ "key": "template_001",
38
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-nw-1.prefab",
39
+ "mask_file": "template_001__curve-nw-1.png",
40
+ "mask_pixels_per_meter": 8.0,
41
+ "mask_left_x": -108.25,
42
+ "mask_top_z": 108.25,
43
+ "mask_shape": [
44
+ 934,
45
+ 935
46
+ ]
47
+ },
48
+ {
49
+ "key": "template_002",
50
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb1-n.prefab",
51
+ "mask_file": "template_002__intersection-bb1-n.png",
52
+ "mask_pixels_per_meter": 8.0,
53
+ "mask_left_x": -108.25,
54
+ "mask_top_z": 288.25,
55
+ "mask_shape": [
56
+ 2375,
57
+ 1733
58
+ ]
59
+ },
60
+ {
61
+ "key": "template_003",
62
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb4-n.prefab",
63
+ "mask_file": "template_003__intersection-bb4-n.png",
64
+ "mask_pixels_per_meter": 8.0,
65
+ "mask_left_x": -108.25,
66
+ "mask_top_z": 396.125,
67
+ "mask_shape": [
68
+ 3238,
69
+ 1733
70
+ ]
71
+ },
72
+ {
73
+ "key": "template_004",
74
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b5-n.prefab",
75
+ "mask_file": "template_004__intersection-b5-n.png",
76
+ "mask_pixels_per_meter": 8.0,
77
+ "mask_left_x": -108.25,
78
+ "mask_top_z": 432.125,
79
+ "mask_shape": [
80
+ 3526,
81
+ 1733
82
+ ]
83
+ },
84
+ {
85
+ "key": "template_005",
86
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b3-n.prefab",
87
+ "mask_file": "template_005__intersection-b3-n.png",
88
+ "mask_pixels_per_meter": 8.0,
89
+ "mask_left_x": -108.25,
90
+ "mask_top_z": 360.125,
91
+ "mask_shape": [
92
+ 2950,
93
+ 1733
94
+ ]
95
+ },
96
+ {
97
+ "key": "template_006",
98
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b2-n.prefab",
99
+ "mask_file": "template_006__intersection-b2-n.png",
100
+ "mask_pixels_per_meter": 8.0,
101
+ "mask_left_x": -108.25,
102
+ "mask_top_z": 324.125,
103
+ "mask_shape": [
104
+ 2662,
105
+ 1733
106
+ ]
107
+ },
108
+ {
109
+ "key": "template_007",
110
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb2-n.prefab",
111
+ "mask_file": "template_007__intersection-bb2-n.png",
112
+ "mask_pixels_per_meter": 8.0,
113
+ "mask_left_x": -108.25,
114
+ "mask_top_z": 324.125,
115
+ "mask_shape": [
116
+ 2662,
117
+ 1733
118
+ ]
119
+ },
120
+ {
121
+ "key": "template_008",
122
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b6-n.prefab",
123
+ "mask_file": "template_008__intersection-b6-n.png",
124
+ "mask_pixels_per_meter": 8.0,
125
+ "mask_left_x": -108.25,
126
+ "mask_top_z": 468.125,
127
+ "mask_shape": [
128
+ 3814,
129
+ 1733
130
+ ]
131
+ },
132
+ {
133
+ "key": "template_009",
134
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb3-n.prefab",
135
+ "mask_file": "template_009__intersection-bb3-n.png",
136
+ "mask_pixels_per_meter": 8.0,
137
+ "mask_left_x": -108.25,
138
+ "mask_top_z": 360.125,
139
+ "mask_shape": [
140
+ 2950,
141
+ 1733
142
+ ]
143
+ },
144
+ {
145
+ "key": "template_010",
146
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b4-n.prefab",
147
+ "mask_file": "template_010__intersection-b4-n.png",
148
+ "mask_pixels_per_meter": 8.0,
149
+ "mask_left_x": -108.25,
150
+ "mask_top_z": 396.125,
151
+ "mask_shape": [
152
+ 3238,
153
+ 1733
154
+ ]
155
+ },
156
+ {
157
+ "key": "template_011",
158
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb6-n.prefab",
159
+ "mask_file": "template_011__intersection-bb6-n.png",
160
+ "mask_pixels_per_meter": 8.0,
161
+ "mask_left_x": -108.25,
162
+ "mask_top_z": 468.125,
163
+ "mask_shape": [
164
+ 3814,
165
+ 1733
166
+ ]
167
+ },
168
+ {
169
+ "key": "template_012",
170
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/intersection-n.prefab",
171
+ "mask_file": "template_012__intersection-n.png",
172
+ "mask_pixels_per_meter": 8.0,
173
+ "mask_left_x": -108.25,
174
+ "mask_top_z": 108.125,
175
+ "mask_shape": [
176
+ 934,
177
+ 1733
178
+ ]
179
+ },
180
+ {
181
+ "key": "template_013",
182
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b1-n.prefab",
183
+ "mask_file": "template_013__intersection-b1-n.png",
184
+ "mask_pixels_per_meter": 8.0,
185
+ "mask_left_x": -108.25,
186
+ "mask_top_z": 288.25,
187
+ "mask_shape": [
188
+ 2375,
189
+ 1733
190
+ ]
191
+ },
192
+ {
193
+ "key": "template_014",
194
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb5-n.prefab",
195
+ "mask_file": "template_014__intersection-bb5-n.png",
196
+ "mask_pixels_per_meter": 8.0,
197
+ "mask_left_x": -108.25,
198
+ "mask_top_z": 432.125,
199
+ "mask_shape": [
200
+ 3526,
201
+ 1733
202
+ ]
203
+ },
204
+ {
205
+ "key": "template_015",
206
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-sn-0.prefab",
207
+ "mask_file": "template_015__station-sn-0.png",
208
+ "mask_pixels_per_meter": 8.0,
209
+ "mask_left_x": -52.75,
210
+ "mask_top_z": 108.125,
211
+ "mask_shape": [
212
+ 1732,
213
+ 845
214
+ ]
215
+ },
216
+ {
217
+ "key": "template_016",
218
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-3.prefab",
219
+ "mask_file": "template_016__straight-sn-3.png",
220
+ "mask_pixels_per_meter": 8.0,
221
+ "mask_left_x": -8.375,
222
+ "mask_top_z": 108.25,
223
+ "mask_shape": [
224
+ 1733,
225
+ 136
226
+ ]
227
+ },
228
+ {
229
+ "key": "template_017",
230
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-2.prefab",
231
+ "mask_file": "template_017__straight-sn-2.png",
232
+ "mask_pixels_per_meter": 8.0,
233
+ "mask_left_x": -8.5,
234
+ "mask_top_z": 108.25,
235
+ "mask_shape": [
236
+ 1733,
237
+ 136
238
+ ]
239
+ },
240
+ {
241
+ "key": "template_018",
242
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-sn-1.prefab",
243
+ "mask_file": "template_018__station-sn-1.png",
244
+ "mask_pixels_per_meter": 8.0,
245
+ "mask_left_x": -52.75,
246
+ "mask_top_z": 108.25,
247
+ "mask_shape": [
248
+ 1732,
249
+ 845
250
+ ]
251
+ },
252
+ {
253
+ "key": "template_019",
254
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-0.prefab",
255
+ "mask_file": "template_019__straight-sn-0.png",
256
+ "mask_pixels_per_meter": 8.0,
257
+ "mask_left_x": -8.375,
258
+ "mask_top_z": 108.125,
259
+ "mask_shape": [
260
+ 1732,
261
+ 135
262
+ ]
263
+ },
264
+ {
265
+ "key": "template_020",
266
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-1.prefab",
267
+ "mask_file": "template_020__straight-sn-1.png",
268
+ "mask_pixels_per_meter": 8.0,
269
+ "mask_left_x": -8.375,
270
+ "mask_top_z": 108.25,
271
+ "mask_shape": [
272
+ 1732,
273
+ 135
274
+ ]
275
+ },
276
+ {
277
+ "key": "template_021",
278
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-sn-3.prefab",
279
+ "mask_file": "template_021__station-sn-3.png",
280
+ "mask_pixels_per_meter": 8.0,
281
+ "mask_left_x": -52.75,
282
+ "mask_top_z": 108.25,
283
+ "mask_shape": [
284
+ 1732,
285
+ 845
286
+ ]
287
+ },
288
+ {
289
+ "key": "template_022",
290
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-4.prefab",
291
+ "mask_file": "template_022__straight-sn-4.png",
292
+ "mask_pixels_per_meter": 8.0,
293
+ "mask_left_x": -22.625,
294
+ "mask_top_z": 108.25,
295
+ "mask_shape": [
296
+ 1733,
297
+ 364
298
+ ]
299
+ },
300
+ {
301
+ "key": "template_023",
302
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-sn-2.prefab",
303
+ "mask_file": "template_023__station-sn-2.png",
304
+ "mask_pixels_per_meter": 8.0,
305
+ "mask_left_x": -52.75,
306
+ "mask_top_z": 108.125,
307
+ "mask_shape": [
308
+ 1732,
309
+ 845
310
+ ]
311
+ },
312
+ {
313
+ "key": "template_024",
314
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-sn-5.prefab",
315
+ "mask_file": "template_024__straight-sn-5.png",
316
+ "mask_pixels_per_meter": 8.0,
317
+ "mask_left_x": -22.75,
318
+ "mask_top_z": 108.25,
319
+ "mask_shape": [
320
+ 1733,
321
+ 364
322
+ ]
323
+ },
324
+ {
325
+ "key": "template_025",
326
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-ne-1.prefab",
327
+ "mask_file": "template_025__curve-ne-1.png",
328
+ "mask_pixels_per_meter": 8.0,
329
+ "mask_left_x": -8.375,
330
+ "mask_top_z": 108.25,
331
+ "mask_shape": [
332
+ 934,
333
+ 934
334
+ ]
335
+ },
336
+ {
337
+ "key": "template_026",
338
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-ne-0.prefab",
339
+ "mask_file": "template_026__curve-ne-0.png",
340
+ "mask_pixels_per_meter": 8.0,
341
+ "mask_left_x": -8.375,
342
+ "mask_top_z": 108.125,
343
+ "mask_shape": [
344
+ 934,
345
+ 934
346
+ ]
347
+ },
348
+ {
349
+ "key": "template_027",
350
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/intersection.prefab",
351
+ "mask_file": "template_027__intersection.png",
352
+ "mask_pixels_per_meter": 8.0,
353
+ "mask_left_x": -108.25,
354
+ "mask_top_z": 108.25,
355
+ "mask_shape": [
356
+ 1733,
357
+ 1733
358
+ ]
359
+ },
360
+ {
361
+ "key": "template_028",
362
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb2-s.prefab",
363
+ "mask_file": "template_028__intersection-bb2-s.png",
364
+ "mask_pixels_per_meter": 8.0,
365
+ "mask_left_x": -108.25,
366
+ "mask_top_z": 8.5,
367
+ "mask_shape": [
368
+ 2662,
369
+ 1733
370
+ ]
371
+ },
372
+ {
373
+ "key": "template_029",
374
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b2-s.prefab",
375
+ "mask_file": "template_029__intersection-b2-s.png",
376
+ "mask_pixels_per_meter": 8.0,
377
+ "mask_left_x": -108.25,
378
+ "mask_top_z": 8.5,
379
+ "mask_shape": [
380
+ 2662,
381
+ 1733
382
+ ]
383
+ },
384
+ {
385
+ "key": "template_030",
386
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b6-s.prefab",
387
+ "mask_file": "template_030__intersection-b6-s.png",
388
+ "mask_pixels_per_meter": 8.0,
389
+ "mask_left_x": -108.25,
390
+ "mask_top_z": 8.5,
391
+ "mask_shape": [
392
+ 3814,
393
+ 1733
394
+ ]
395
+ },
396
+ {
397
+ "key": "template_031",
398
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb5-s.prefab",
399
+ "mask_file": "template_031__intersection-bb5-s.png",
400
+ "mask_pixels_per_meter": 8.0,
401
+ "mask_left_x": -108.25,
402
+ "mask_top_z": 8.5,
403
+ "mask_shape": [
404
+ 3526,
405
+ 1733
406
+ ]
407
+ },
408
+ {
409
+ "key": "template_032",
410
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb1-s.prefab",
411
+ "mask_file": "template_032__intersection-bb1-s.png",
412
+ "mask_pixels_per_meter": 8.0,
413
+ "mask_left_x": -108.25,
414
+ "mask_top_z": 8.5,
415
+ "mask_shape": [
416
+ 2375,
417
+ 1733
418
+ ]
419
+ },
420
+ {
421
+ "key": "template_033",
422
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/intersection-s.prefab",
423
+ "mask_file": "template_033__intersection-s.png",
424
+ "mask_pixels_per_meter": 8.0,
425
+ "mask_left_x": -108.25,
426
+ "mask_top_z": 8.5,
427
+ "mask_shape": [
428
+ 934,
429
+ 1733
430
+ ]
431
+ },
432
+ {
433
+ "key": "template_034",
434
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b1-s.prefab",
435
+ "mask_file": "template_034__intersection-b1-s.png",
436
+ "mask_pixels_per_meter": 8.0,
437
+ "mask_left_x": -108.25,
438
+ "mask_top_z": 8.5,
439
+ "mask_shape": [
440
+ 2375,
441
+ 1733
442
+ ]
443
+ },
444
+ {
445
+ "key": "template_035",
446
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb6-s.prefab",
447
+ "mask_file": "template_035__intersection-bb6-s.png",
448
+ "mask_pixels_per_meter": 8.0,
449
+ "mask_left_x": -108.25,
450
+ "mask_top_z": 8.5,
451
+ "mask_shape": [
452
+ 3814,
453
+ 1733
454
+ ]
455
+ },
456
+ {
457
+ "key": "template_036",
458
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b5-s.prefab",
459
+ "mask_file": "template_036__intersection-b5-s.png",
460
+ "mask_pixels_per_meter": 8.0,
461
+ "mask_left_x": -108.25,
462
+ "mask_top_z": 8.5,
463
+ "mask_shape": [
464
+ 3526,
465
+ 1733
466
+ ]
467
+ },
468
+ {
469
+ "key": "template_037",
470
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb4-s.prefab",
471
+ "mask_file": "template_037__intersection-bb4-s.png",
472
+ "mask_pixels_per_meter": 8.0,
473
+ "mask_left_x": -108.25,
474
+ "mask_top_z": 8.5,
475
+ "mask_shape": [
476
+ 3238,
477
+ 1733
478
+ ]
479
+ },
480
+ {
481
+ "key": "template_038",
482
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b3-s.prefab",
483
+ "mask_file": "template_038__intersection-b3-s.png",
484
+ "mask_pixels_per_meter": 8.0,
485
+ "mask_left_x": -108.25,
486
+ "mask_top_z": 8.5,
487
+ "mask_shape": [
488
+ 2950,
489
+ 1733
490
+ ]
491
+ },
492
+ {
493
+ "key": "template_039",
494
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb3-s.prefab",
495
+ "mask_file": "template_039__intersection-bb3-s.png",
496
+ "mask_pixels_per_meter": 8.0,
497
+ "mask_left_x": -108.25,
498
+ "mask_top_z": 8.5,
499
+ "mask_shape": [
500
+ 2950,
501
+ 1733
502
+ ]
503
+ },
504
+ {
505
+ "key": "template_040",
506
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b4-s.prefab",
507
+ "mask_file": "template_040__intersection-b4-s.png",
508
+ "mask_pixels_per_meter": 8.0,
509
+ "mask_left_x": -108.25,
510
+ "mask_top_z": 8.5,
511
+ "mask_shape": [
512
+ 3238,
513
+ 1733
514
+ ]
515
+ },
516
+ {
517
+ "key": "template_041",
518
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-3.prefab",
519
+ "mask_file": "template_041__straight-we-3.png",
520
+ "mask_pixels_per_meter": 8.0,
521
+ "mask_left_x": -108.25,
522
+ "mask_top_z": 8.5,
523
+ "mask_shape": [
524
+ 136,
525
+ 1733
526
+ ]
527
+ },
528
+ {
529
+ "key": "template_042",
530
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-we-1.prefab",
531
+ "mask_file": "template_042__station-we-1.png",
532
+ "mask_pixels_per_meter": 8.0,
533
+ "mask_left_x": -108.25,
534
+ "mask_top_z": 52.75,
535
+ "mask_shape": [
536
+ 845,
537
+ 1733
538
+ ]
539
+ },
540
+ {
541
+ "key": "template_043",
542
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-5.prefab",
543
+ "mask_file": "template_043__straight-we-5.png",
544
+ "mask_pixels_per_meter": 8.0,
545
+ "mask_left_x": -108.25,
546
+ "mask_top_z": 22.75,
547
+ "mask_shape": [
548
+ 365,
549
+ 1733
550
+ ]
551
+ },
552
+ {
553
+ "key": "template_044",
554
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-4.prefab",
555
+ "mask_file": "template_044__straight-we-4.png",
556
+ "mask_pixels_per_meter": 8.0,
557
+ "mask_left_x": -108.25,
558
+ "mask_top_z": 22.75,
559
+ "mask_shape": [
560
+ 364,
561
+ 1733
562
+ ]
563
+ },
564
+ {
565
+ "key": "template_045",
566
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-we-2.prefab",
567
+ "mask_file": "template_045__station-we-2.png",
568
+ "mask_pixels_per_meter": 8.0,
569
+ "mask_left_x": -108.25,
570
+ "mask_top_z": 52.75,
571
+ "mask_shape": [
572
+ 845,
573
+ 1732
574
+ ]
575
+ },
576
+ {
577
+ "key": "template_046",
578
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-we-3.prefab",
579
+ "mask_file": "template_046__station-we-3.png",
580
+ "mask_pixels_per_meter": 8.0,
581
+ "mask_left_x": -108.25,
582
+ "mask_top_z": 52.75,
583
+ "mask_shape": [
584
+ 845,
585
+ 1733
586
+ ]
587
+ },
588
+ {
589
+ "key": "template_047",
590
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-station/station-we-0.prefab",
591
+ "mask_file": "template_047__station-we-0.png",
592
+ "mask_pixels_per_meter": 8.0,
593
+ "mask_left_x": -108.25,
594
+ "mask_top_z": 52.75,
595
+ "mask_shape": [
596
+ 845,
597
+ 1732
598
+ ]
599
+ },
600
+ {
601
+ "key": "template_048",
602
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-2.prefab",
603
+ "mask_file": "template_048__straight-we-2.png",
604
+ "mask_pixels_per_meter": 8.0,
605
+ "mask_left_x": -108.25,
606
+ "mask_top_z": 8.5,
607
+ "mask_shape": [
608
+ 137,
609
+ 1733
610
+ ]
611
+ },
612
+ {
613
+ "key": "template_049",
614
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-1.prefab",
615
+ "mask_file": "template_049__straight-we-1.png",
616
+ "mask_pixels_per_meter": 8.0,
617
+ "mask_left_x": -108.25,
618
+ "mask_top_z": 8.5,
619
+ "mask_shape": [
620
+ 137,
621
+ 1733
622
+ ]
623
+ },
624
+ {
625
+ "key": "template_050",
626
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/straight-we-0.prefab",
627
+ "mask_file": "template_050__straight-we-0.png",
628
+ "mask_pixels_per_meter": 8.0,
629
+ "mask_left_x": -108.25,
630
+ "mask_top_z": 8.5,
631
+ "mask_shape": [
632
+ 137,
633
+ 1733
634
+ ]
635
+ },
636
+ {
637
+ "key": "template_051",
638
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-se-0.prefab",
639
+ "mask_file": "template_051__curve-se-0.png",
640
+ "mask_pixels_per_meter": 8.0,
641
+ "mask_left_x": -8.375,
642
+ "mask_top_z": 8.375,
643
+ "mask_shape": [
644
+ 934,
645
+ 933
646
+ ]
647
+ },
648
+ {
649
+ "key": "template_052",
650
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-se-1.prefab",
651
+ "mask_file": "template_052__curve-se-1.png",
652
+ "mask_pixels_per_meter": 8.0,
653
+ "mask_left_x": -8.5,
654
+ "mask_top_z": 8.375,
655
+ "mask_shape": [
656
+ 934,
657
+ 935
658
+ ]
659
+ },
660
+ {
661
+ "key": "template_053",
662
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb3-w.prefab",
663
+ "mask_file": "template_053__intersection-bb3-w.png",
664
+ "mask_pixels_per_meter": 8.0,
665
+ "mask_left_x": -360.25,
666
+ "mask_top_z": 108.25,
667
+ "mask_shape": [
668
+ 1733,
669
+ 2951
670
+ ]
671
+ },
672
+ {
673
+ "key": "template_054",
674
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/intersection-w.prefab",
675
+ "mask_file": "template_054__intersection-w.png",
676
+ "mask_pixels_per_meter": 8.0,
677
+ "mask_left_x": -108.125,
678
+ "mask_top_z": 108.25,
679
+ "mask_shape": [
680
+ 1733,
681
+ 934
682
+ ]
683
+ },
684
+ {
685
+ "key": "template_055",
686
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb5-w.prefab",
687
+ "mask_file": "template_055__intersection-bb5-w.png",
688
+ "mask_pixels_per_meter": 8.0,
689
+ "mask_left_x": -432.25,
690
+ "mask_top_z": 108.25,
691
+ "mask_shape": [
692
+ 1733,
693
+ 3527
694
+ ]
695
+ },
696
+ {
697
+ "key": "template_056",
698
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b5-w.prefab",
699
+ "mask_file": "template_056__intersection-b5-w.png",
700
+ "mask_pixels_per_meter": 8.0,
701
+ "mask_left_x": -432.25,
702
+ "mask_top_z": 108.25,
703
+ "mask_shape": [
704
+ 1733,
705
+ 3527
706
+ ]
707
+ },
708
+ {
709
+ "key": "template_057",
710
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b1-w.prefab",
711
+ "mask_file": "template_057__intersection-b1-w.png",
712
+ "mask_pixels_per_meter": 8.0,
713
+ "mask_left_x": -288.25,
714
+ "mask_top_z": 108.25,
715
+ "mask_shape": [
716
+ 1733,
717
+ 2375
718
+ ]
719
+ },
720
+ {
721
+ "key": "template_058",
722
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb1-w.prefab",
723
+ "mask_file": "template_058__intersection-bb1-w.png",
724
+ "mask_pixels_per_meter": 8.0,
725
+ "mask_left_x": -288.25,
726
+ "mask_top_z": 108.25,
727
+ "mask_shape": [
728
+ 1733,
729
+ 2375
730
+ ]
731
+ },
732
+ {
733
+ "key": "template_059",
734
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb4-w.prefab",
735
+ "mask_file": "template_059__intersection-bb4-w.png",
736
+ "mask_pixels_per_meter": 8.0,
737
+ "mask_left_x": -396.25,
738
+ "mask_top_z": 108.25,
739
+ "mask_shape": [
740
+ 1733,
741
+ 3239
742
+ ]
743
+ },
744
+ {
745
+ "key": "template_060",
746
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b4-w.prefab",
747
+ "mask_file": "template_060__intersection-b4-w.png",
748
+ "mask_pixels_per_meter": 8.0,
749
+ "mask_left_x": -396.25,
750
+ "mask_top_z": 108.25,
751
+ "mask_shape": [
752
+ 1733,
753
+ 3239
754
+ ]
755
+ },
756
+ {
757
+ "key": "template_061",
758
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b6-w.prefab",
759
+ "mask_file": "template_061__intersection-b6-w.png",
760
+ "mask_pixels_per_meter": 8.0,
761
+ "mask_left_x": -468.25,
762
+ "mask_top_z": 108.25,
763
+ "mask_shape": [
764
+ 1733,
765
+ 3815
766
+ ]
767
+ },
768
+ {
769
+ "key": "template_062",
770
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb2-w.prefab",
771
+ "mask_file": "template_062__intersection-bb2-w.png",
772
+ "mask_pixels_per_meter": 8.0,
773
+ "mask_left_x": -324.25,
774
+ "mask_top_z": 108.25,
775
+ "mask_shape": [
776
+ 1733,
777
+ 2663
778
+ ]
779
+ },
780
+ {
781
+ "key": "template_063",
782
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b3-w.prefab",
783
+ "mask_file": "template_063__intersection-b3-w.png",
784
+ "mask_pixels_per_meter": 8.0,
785
+ "mask_left_x": -360.25,
786
+ "mask_top_z": 108.25,
787
+ "mask_shape": [
788
+ 1733,
789
+ 2951
790
+ ]
791
+ },
792
+ {
793
+ "key": "template_064",
794
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b2-w.prefab",
795
+ "mask_file": "template_064__intersection-b2-w.png",
796
+ "mask_pixels_per_meter": 8.0,
797
+ "mask_left_x": -324.25,
798
+ "mask_top_z": 108.25,
799
+ "mask_shape": [
800
+ 1733,
801
+ 2663
802
+ ]
803
+ },
804
+ {
805
+ "key": "template_065",
806
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb6-w.prefab",
807
+ "mask_file": "template_065__intersection-bb6-w.png",
808
+ "mask_pixels_per_meter": 8.0,
809
+ "mask_left_x": -468.25,
810
+ "mask_top_z": 108.25,
811
+ "mask_shape": [
812
+ 1733,
813
+ 3815
814
+ ]
815
+ },
816
+ {
817
+ "key": "template_066",
818
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-sw-0.prefab",
819
+ "mask_file": "template_066__curve-sw-0.png",
820
+ "mask_pixels_per_meter": 8.0,
821
+ "mask_left_x": -108.25,
822
+ "mask_top_z": 8.5,
823
+ "mask_shape": [
824
+ 934,
825
+ 934
826
+ ]
827
+ },
828
+ {
829
+ "key": "template_067",
830
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/curve-sw-1.prefab",
831
+ "mask_file": "template_067__curve-sw-1.png",
832
+ "mask_pixels_per_meter": 8.0,
833
+ "mask_left_x": -108.25,
834
+ "mask_top_z": 8.375,
835
+ "mask_shape": [
836
+ 934,
837
+ 934
838
+ ]
839
+ },
840
+ {
841
+ "key": "template_068",
842
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb3-e.prefab",
843
+ "mask_file": "template_068__intersection-bb3-e.png",
844
+ "mask_pixels_per_meter": 8.0,
845
+ "mask_left_x": -8.5,
846
+ "mask_top_z": 108.25,
847
+ "mask_shape": [
848
+ 1733,
849
+ 2951
850
+ ]
851
+ },
852
+ {
853
+ "key": "template_069",
854
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb6-e.prefab",
855
+ "mask_file": "template_069__intersection-bb6-e.png",
856
+ "mask_pixels_per_meter": 8.0,
857
+ "mask_left_x": -8.5,
858
+ "mask_top_z": 108.25,
859
+ "mask_shape": [
860
+ 1733,
861
+ 3815
862
+ ]
863
+ },
864
+ {
865
+ "key": "template_070",
866
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b4-e.prefab",
867
+ "mask_file": "template_070__intersection-b4-e.png",
868
+ "mask_pixels_per_meter": 8.0,
869
+ "mask_left_x": -8.5,
870
+ "mask_top_z": 108.25,
871
+ "mask_shape": [
872
+ 1733,
873
+ 3239
874
+ ]
875
+ },
876
+ {
877
+ "key": "template_071",
878
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b6-e.prefab",
879
+ "mask_file": "template_071__intersection-b6-e.png",
880
+ "mask_pixels_per_meter": 8.0,
881
+ "mask_left_x": -8.5,
882
+ "mask_top_z": 108.25,
883
+ "mask_shape": [
884
+ 1733,
885
+ 3815
886
+ ]
887
+ },
888
+ {
889
+ "key": "template_072",
890
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b5-e.prefab",
891
+ "mask_file": "template_072__intersection-b5-e.png",
892
+ "mask_pixels_per_meter": 8.0,
893
+ "mask_left_x": -8.5,
894
+ "mask_top_z": 108.25,
895
+ "mask_shape": [
896
+ 1733,
897
+ 3527
898
+ ]
899
+ },
900
+ {
901
+ "key": "template_073",
902
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b1-e.prefab",
903
+ "mask_file": "template_073__intersection-b1-e.png",
904
+ "mask_pixels_per_meter": 8.0,
905
+ "mask_left_x": -8.5,
906
+ "mask_top_z": 108.25,
907
+ "mask_shape": [
908
+ 1733,
909
+ 2375
910
+ ]
911
+ },
912
+ {
913
+ "key": "template_074",
914
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b3-e.prefab",
915
+ "mask_file": "template_074__intersection-b3-e.png",
916
+ "mask_pixels_per_meter": 8.0,
917
+ "mask_left_x": -8.5,
918
+ "mask_top_z": 108.25,
919
+ "mask_shape": [
920
+ 1733,
921
+ 2951
922
+ ]
923
+ },
924
+ {
925
+ "key": "template_075",
926
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb2-e.prefab",
927
+ "mask_file": "template_075__intersection-bb2-e.png",
928
+ "mask_pixels_per_meter": 8.0,
929
+ "mask_left_x": -8.5,
930
+ "mask_top_z": 108.25,
931
+ "mask_shape": [
932
+ 1733,
933
+ 2663
934
+ ]
935
+ },
936
+ {
937
+ "key": "template_076",
938
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel/intersection-e.prefab",
939
+ "mask_file": "template_076__intersection-e.png",
940
+ "mask_pixels_per_meter": 8.0,
941
+ "mask_left_x": -8.5,
942
+ "mask_top_z": 108.25,
943
+ "mask_shape": [
944
+ 1733,
945
+ 934
946
+ ]
947
+ },
948
+ {
949
+ "key": "template_077",
950
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb1-e.prefab",
951
+ "mask_file": "template_077__intersection-bb1-e.png",
952
+ "mask_pixels_per_meter": 8.0,
953
+ "mask_left_x": -8.5,
954
+ "mask_top_z": 108.25,
955
+ "mask_shape": [
956
+ 1733,
957
+ 2375
958
+ ]
959
+ },
960
+ {
961
+ "key": "template_078",
962
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb4-e.prefab",
963
+ "mask_file": "template_078__intersection-bb4-e.png",
964
+ "mask_pixels_per_meter": 8.0,
965
+ "mask_left_x": -8.5,
966
+ "mask_top_z": 108.25,
967
+ "mask_shape": [
968
+ 1733,
969
+ 3239
970
+ ]
971
+ },
972
+ {
973
+ "key": "template_079",
974
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-b2-e.prefab",
975
+ "mask_file": "template_079__intersection-b2-e.png",
976
+ "mask_pixels_per_meter": 8.0,
977
+ "mask_left_x": -8.5,
978
+ "mask_top_z": 108.25,
979
+ "mask_shape": [
980
+ 1733,
981
+ 2663
982
+ ]
983
+ },
984
+ {
985
+ "key": "template_080",
986
+ "prefab_path": "assets/bundled/prefabs/autospawn/tunnel-upwards/intersection-bb5-e.prefab",
987
+ "mask_file": "template_080__intersection-bb5-e.png",
988
+ "mask_pixels_per_meter": 8.0,
989
+ "mask_left_x": -8.5,
990
+ "mask_top_z": 108.25,
991
+ "mask_shape": [
992
+ 1733,
993
+ 3527
994
+ ]
995
+ }
996
+ ]
997
+ }