@bitmagic/world-forger 0.1.1 → 0.1.3

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.
@@ -0,0 +1,1635 @@
1
+ export declare const gameDataSchema: {
2
+ readonly $schema: "http://json-schema.org/draft-07/schema#";
3
+ readonly $ref: "#/definitions/GameData";
4
+ readonly definitions: {
5
+ readonly GameData: {
6
+ readonly type: "object";
7
+ readonly properties: {
8
+ readonly gameId: {
9
+ readonly type: "string";
10
+ };
11
+ readonly gameGenre: {
12
+ readonly type: "string";
13
+ };
14
+ readonly characterUrl: {
15
+ readonly type: "string";
16
+ };
17
+ readonly gameName: {
18
+ readonly type: "string";
19
+ };
20
+ readonly gameDescription: {
21
+ readonly type: "string";
22
+ };
23
+ readonly thumbnailUrl: {
24
+ readonly type: "string";
25
+ };
26
+ readonly environmentObjectsGeneratedProcedurally: {
27
+ readonly type: "boolean";
28
+ };
29
+ readonly gameDimension: {
30
+ readonly type: "string";
31
+ readonly enum: readonly ["2d", "3d"];
32
+ };
33
+ readonly physicsMode: {
34
+ readonly type: "string";
35
+ readonly enum: readonly ["2d", "3d"];
36
+ };
37
+ readonly worldProfileData: {
38
+ readonly $ref: "#/definitions/WorldProfileData";
39
+ };
40
+ readonly assets: {
41
+ readonly type: "array";
42
+ readonly items: {
43
+ readonly $ref: "#/definitions/Asset";
44
+ };
45
+ };
46
+ readonly environmentObjects: {
47
+ readonly type: "array";
48
+ readonly items: {};
49
+ };
50
+ readonly mechanisms: {
51
+ readonly type: "array";
52
+ readonly items: {
53
+ readonly type: "object";
54
+ readonly additionalProperties: {};
55
+ };
56
+ };
57
+ };
58
+ };
59
+ readonly WorldProfileData: {
60
+ readonly type: "object";
61
+ readonly properties: {
62
+ readonly skyboxUrl: {
63
+ readonly type: "string";
64
+ };
65
+ readonly thumbnailUrlOverride: {
66
+ readonly type: "string";
67
+ };
68
+ readonly descriptionOverride: {
69
+ readonly type: "string";
70
+ };
71
+ readonly heightmapUrl: {
72
+ readonly type: "string";
73
+ };
74
+ readonly characterHeight: {
75
+ readonly type: "number";
76
+ };
77
+ readonly playerSpawnPosition: {
78
+ readonly $ref: "#/definitions/Vector3Like";
79
+ };
80
+ readonly playerSpawnRotationY: {
81
+ readonly type: "number";
82
+ };
83
+ readonly spawnPoints: {
84
+ readonly type: "array";
85
+ readonly items: {
86
+ readonly $ref: "#/definitions/SpawnPoint";
87
+ };
88
+ };
89
+ readonly worldSeed: {
90
+ readonly type: "number";
91
+ };
92
+ readonly useHighResCharacter: {
93
+ readonly type: "boolean";
94
+ };
95
+ readonly useBlockCharacter: {
96
+ readonly type: "boolean";
97
+ };
98
+ readonly characterUrl: {
99
+ readonly type: "string";
100
+ };
101
+ readonly characterModelRotationY: {
102
+ readonly type: "number";
103
+ };
104
+ readonly characterPoseVersion: {
105
+ readonly type: "number";
106
+ };
107
+ readonly playerMovement: {
108
+ readonly type: "object";
109
+ readonly properties: {
110
+ readonly mode: {
111
+ readonly type: "string";
112
+ readonly const: "ski";
113
+ };
114
+ readonly ski: {
115
+ readonly type: "object";
116
+ readonly additionalProperties: {
117
+ readonly type: readonly ["number", "boolean"];
118
+ };
119
+ };
120
+ };
121
+ readonly required: readonly ["mode"];
122
+ };
123
+ readonly persistentWorld: {
124
+ readonly type: "boolean";
125
+ };
126
+ readonly bloomConfig: {
127
+ readonly $ref: "#/definitions/BloomConfig";
128
+ };
129
+ readonly renderConfig: {
130
+ readonly $ref: "#/definitions/RenderConfig";
131
+ };
132
+ readonly fogConfig: {
133
+ readonly $ref: "#/definitions/FogConfig";
134
+ };
135
+ readonly lightingConfig: {
136
+ readonly $ref: "#/definitions/LightingConfig";
137
+ };
138
+ readonly dofConfig: {
139
+ readonly $ref: "#/definitions/DofConfig";
140
+ };
141
+ readonly aoConfig: {
142
+ readonly $ref: "#/definitions/AoConfig";
143
+ };
144
+ readonly groundCoverConfig: {
145
+ readonly $ref: "#/definitions/GroundCoverConfig";
146
+ };
147
+ readonly weatherConfig: {
148
+ readonly $ref: "#/definitions/WeatherConfig";
149
+ };
150
+ readonly animations: {
151
+ readonly type: "array";
152
+ readonly items: {
153
+ readonly $ref: "#/definitions/AnimationDefinition";
154
+ };
155
+ };
156
+ readonly baseAnimations: {
157
+ readonly type: "array";
158
+ readonly items: {
159
+ readonly $ref: "#/definitions/BaseAnimationDefinition";
160
+ };
161
+ };
162
+ readonly meleeWeaponAnimations: {
163
+ readonly type: "array";
164
+ readonly items: {
165
+ readonly $ref: "#/definitions/BaseAnimationDefinition";
166
+ };
167
+ };
168
+ readonly combat: {
169
+ readonly $ref: "#/definitions/CombatConfig";
170
+ };
171
+ readonly groundRenderingType: {
172
+ readonly type: "string";
173
+ readonly enum: readonly ["smooth", "polygonal"];
174
+ };
175
+ readonly groundPolygonSize: {
176
+ readonly type: "number";
177
+ };
178
+ readonly groundWorldSizeX: {
179
+ readonly type: "number";
180
+ };
181
+ readonly groundWorldSizeZ: {
182
+ readonly type: "number";
183
+ };
184
+ readonly groundYGranularity: {
185
+ readonly type: "number";
186
+ };
187
+ readonly terrain: {
188
+ readonly type: "object";
189
+ readonly properties: {
190
+ readonly shape: {
191
+ readonly type: "string";
192
+ readonly enum: readonly ["flat", "default"];
193
+ };
194
+ readonly groundBlockType: {
195
+ readonly type: "string";
196
+ };
197
+ };
198
+ };
199
+ readonly groundConfig: {
200
+ readonly type: "object";
201
+ readonly properties: {
202
+ readonly surfaceBlockType: {
203
+ readonly type: "string";
204
+ };
205
+ readonly subLayers: {
206
+ readonly type: "array";
207
+ readonly items: {
208
+ readonly type: "string";
209
+ };
210
+ };
211
+ };
212
+ };
213
+ readonly customBlockTypes: {
214
+ readonly type: "array";
215
+ readonly items: {
216
+ readonly $ref: "#/definitions/CustomBlockType";
217
+ };
218
+ };
219
+ readonly hotspots: {
220
+ readonly type: "array";
221
+ readonly items: {
222
+ readonly $ref: "#/definitions/Hotspot";
223
+ };
224
+ };
225
+ readonly voxelBlockSize: {
226
+ readonly type: "number";
227
+ };
228
+ readonly renderDistance: {
229
+ readonly type: "number";
230
+ };
231
+ readonly vegetationRenderDistance: {
232
+ readonly type: "number";
233
+ };
234
+ readonly cameraMode: {
235
+ readonly $ref: "#/definitions/CameraMode";
236
+ };
237
+ readonly topDownFitWorld: {
238
+ readonly type: "boolean";
239
+ };
240
+ readonly topDownFitWorldMargin: {
241
+ readonly type: "number";
242
+ };
243
+ readonly topDownFitWorldRegion: {
244
+ readonly $ref: "#/definitions/FitWorldRegion";
245
+ };
246
+ readonly topDownFitWorldBackground: {
247
+ readonly type: "string";
248
+ };
249
+ readonly hasPlayerCharacter: {
250
+ readonly type: "boolean";
251
+ };
252
+ readonly useFreeMouse: {
253
+ readonly type: "boolean";
254
+ };
255
+ readonly mobileOrientation: {
256
+ readonly type: "string";
257
+ readonly enum: readonly ["portrait", "landscape"];
258
+ };
259
+ readonly environmentObjectsGeneratedProcedurally: {
260
+ readonly type: "boolean";
261
+ };
262
+ readonly markers: {
263
+ readonly type: "array";
264
+ readonly items: {
265
+ readonly type: "object";
266
+ readonly properties: {
267
+ readonly id: {
268
+ readonly type: "string";
269
+ };
270
+ readonly name: {
271
+ readonly type: "string";
272
+ };
273
+ readonly color: {
274
+ readonly type: "string";
275
+ };
276
+ readonly position: {
277
+ readonly type: "object";
278
+ readonly properties: {
279
+ readonly x: {
280
+ readonly type: "number";
281
+ };
282
+ readonly y: {
283
+ readonly type: "number";
284
+ };
285
+ readonly z: {
286
+ readonly type: "number";
287
+ };
288
+ };
289
+ readonly required: readonly ["x", "y", "z"];
290
+ };
291
+ readonly rotation: {
292
+ readonly type: "object";
293
+ readonly properties: {
294
+ readonly x: {
295
+ readonly type: "number";
296
+ };
297
+ readonly y: {
298
+ readonly type: "number";
299
+ };
300
+ readonly z: {
301
+ readonly type: "number";
302
+ };
303
+ };
304
+ readonly required: readonly ["x", "y", "z"];
305
+ };
306
+ };
307
+ readonly required: readonly ["id", "name", "color", "position", "rotation"];
308
+ };
309
+ };
310
+ readonly voxelUrl: {
311
+ readonly type: "string";
312
+ };
313
+ readonly voxelTimestamp: {
314
+ readonly type: "number";
315
+ };
316
+ readonly levels: {
317
+ readonly type: "array";
318
+ readonly items: {
319
+ readonly $ref: "#/definitions/WorldLevel";
320
+ };
321
+ };
322
+ readonly startLevelId: {
323
+ readonly type: "string";
324
+ };
325
+ readonly floorMeshUrl: {
326
+ readonly type: "string";
327
+ };
328
+ readonly colliderUrl: {
329
+ readonly type: "string";
330
+ };
331
+ readonly walkableUrl: {
332
+ readonly type: "string";
333
+ };
334
+ readonly walkableFileSize: {
335
+ readonly type: "number";
336
+ };
337
+ readonly pvsUrl: {
338
+ readonly type: "string";
339
+ };
340
+ readonly pvsFileSize: {
341
+ readonly type: "number";
342
+ };
343
+ readonly cameraPathUrl: {
344
+ readonly type: "string";
345
+ };
346
+ readonly waterLevelY: {
347
+ readonly type: "number";
348
+ };
349
+ readonly hud: {
350
+ readonly type: "object";
351
+ readonly properties: {
352
+ readonly theme: {
353
+ readonly anyOf: readonly [{
354
+ readonly type: "string";
355
+ }, {
356
+ readonly type: "object";
357
+ readonly additionalProperties: {};
358
+ }];
359
+ };
360
+ readonly startScreen: {
361
+ readonly type: "object";
362
+ readonly properties: {
363
+ readonly imageUrl: {
364
+ readonly type: "string";
365
+ };
366
+ readonly title: {
367
+ readonly type: "string";
368
+ };
369
+ readonly playLabel: {
370
+ readonly type: "string";
371
+ };
372
+ readonly hideTitle: {
373
+ readonly type: "boolean";
374
+ };
375
+ readonly cardPlacement: {
376
+ readonly type: "string";
377
+ readonly enum: readonly ["center", "start", "end"];
378
+ };
379
+ };
380
+ };
381
+ };
382
+ };
383
+ readonly decalSystem: {
384
+ readonly type: "object";
385
+ readonly properties: {
386
+ readonly maxDecals: {
387
+ readonly type: "number";
388
+ };
389
+ readonly decalSize: {
390
+ readonly type: "number";
391
+ };
392
+ readonly defaultColor: {
393
+ readonly type: "number";
394
+ };
395
+ readonly enabled: {
396
+ readonly type: "boolean";
397
+ };
398
+ };
399
+ };
400
+ readonly characterConfig: {
401
+ readonly $ref: "#/definitions/CharacterConfig";
402
+ };
403
+ readonly combatConfig: {
404
+ readonly $ref: "#/definitions/DeathCombatConfig";
405
+ };
406
+ readonly runtimeAI: {
407
+ readonly $ref: "#/definitions/RuntimeAIConfig";
408
+ };
409
+ readonly networkSendRate: {
410
+ readonly type: "number";
411
+ };
412
+ readonly mapAssetId: {
413
+ readonly type: "string";
414
+ };
415
+ readonly unitAssets: {
416
+ readonly type: "object";
417
+ readonly additionalProperties: {
418
+ readonly type: "string";
419
+ };
420
+ };
421
+ readonly achievements: {
422
+ readonly type: "array";
423
+ readonly items: {
424
+ readonly $ref: "#/definitions/AchievementDefinition";
425
+ };
426
+ };
427
+ readonly doors: {
428
+ readonly type: "array";
429
+ readonly items: {
430
+ readonly $ref: "#/definitions/DoorDefinition";
431
+ };
432
+ };
433
+ readonly keyItems: {
434
+ readonly type: "array";
435
+ readonly items: {
436
+ readonly $ref: "#/definitions/KeyItemDefinition";
437
+ };
438
+ };
439
+ };
440
+ };
441
+ readonly Vector3Like: {
442
+ readonly type: "object";
443
+ readonly properties: {
444
+ readonly x: {
445
+ readonly type: "number";
446
+ };
447
+ readonly y: {
448
+ readonly type: "number";
449
+ };
450
+ readonly z: {
451
+ readonly type: "number";
452
+ };
453
+ };
454
+ readonly required: readonly ["x", "y", "z"];
455
+ };
456
+ readonly SpawnPoint: {
457
+ readonly type: "object";
458
+ readonly properties: {
459
+ readonly id: {
460
+ readonly type: "string";
461
+ };
462
+ readonly type: {
463
+ readonly type: "string";
464
+ };
465
+ readonly position: {
466
+ readonly $ref: "#/definitions/Vector3Like";
467
+ };
468
+ readonly rotationY: {
469
+ readonly type: "number";
470
+ };
471
+ readonly name: {
472
+ readonly type: "string";
473
+ };
474
+ readonly params: {
475
+ readonly type: "object";
476
+ readonly additionalProperties: {};
477
+ };
478
+ };
479
+ readonly required: readonly ["id", "type", "position", "rotationY"];
480
+ };
481
+ readonly BloomConfig: {
482
+ readonly type: "object";
483
+ readonly properties: {
484
+ readonly enabled: {
485
+ readonly type: "boolean";
486
+ };
487
+ readonly strength: {
488
+ readonly type: "number";
489
+ };
490
+ readonly radius: {
491
+ readonly type: "number";
492
+ };
493
+ readonly threshold: {
494
+ readonly type: "number";
495
+ };
496
+ };
497
+ readonly required: readonly ["enabled"];
498
+ };
499
+ readonly RenderConfig: {
500
+ readonly type: "object";
501
+ readonly properties: {
502
+ readonly toneMapping: {
503
+ readonly $ref: "#/definitions/ToneMappingMode";
504
+ };
505
+ readonly exposure: {
506
+ readonly type: "number";
507
+ };
508
+ readonly shadowDistance: {
509
+ readonly type: "number";
510
+ };
511
+ readonly vehicleFinish: {
512
+ readonly $ref: "#/definitions/VehicleFinishMode";
513
+ };
514
+ };
515
+ };
516
+ readonly ToneMappingMode: {
517
+ readonly type: "string";
518
+ readonly enum: readonly ["aces", "neutral", "reinhard", "linear", "cineon"];
519
+ };
520
+ readonly VehicleFinishMode: {
521
+ readonly type: "string";
522
+ readonly enum: readonly ["flat", "paint"];
523
+ };
524
+ readonly FogConfig: {
525
+ readonly type: "object";
526
+ readonly properties: {
527
+ readonly enabled: {
528
+ readonly type: "boolean";
529
+ };
530
+ readonly color: {
531
+ readonly type: "string";
532
+ };
533
+ readonly near: {
534
+ readonly type: "number";
535
+ };
536
+ readonly far: {
537
+ readonly type: "number";
538
+ };
539
+ };
540
+ };
541
+ readonly LightingConfig: {
542
+ readonly type: "object";
543
+ readonly properties: {
544
+ readonly sunIntensity: {
545
+ readonly type: "number";
546
+ };
547
+ readonly sunColor: {
548
+ readonly type: "string";
549
+ };
550
+ readonly environmentIntensity: {
551
+ readonly type: "number";
552
+ };
553
+ readonly skyboxIntensity: {
554
+ readonly type: "number";
555
+ };
556
+ readonly ambientFloor: {
557
+ readonly type: "number";
558
+ };
559
+ };
560
+ };
561
+ readonly DofConfig: {
562
+ readonly type: "object";
563
+ readonly properties: {
564
+ readonly enabled: {
565
+ readonly type: "boolean";
566
+ };
567
+ readonly focus: {
568
+ readonly type: "number";
569
+ };
570
+ readonly aperture: {
571
+ readonly type: "number";
572
+ };
573
+ readonly maxblur: {
574
+ readonly type: "number";
575
+ };
576
+ };
577
+ };
578
+ readonly AoConfig: {
579
+ readonly type: "object";
580
+ readonly properties: {
581
+ readonly enabled: {
582
+ readonly type: "boolean";
583
+ };
584
+ readonly intensity: {
585
+ readonly type: "number";
586
+ };
587
+ readonly radius: {
588
+ readonly type: "number";
589
+ };
590
+ readonly scale: {
591
+ readonly type: "number";
592
+ };
593
+ };
594
+ };
595
+ readonly GroundCoverConfig: {
596
+ readonly type: "object";
597
+ readonly properties: {
598
+ readonly density: {
599
+ readonly type: "number";
600
+ };
601
+ readonly scale: {
602
+ readonly type: "number";
603
+ };
604
+ readonly distance: {
605
+ readonly type: "number";
606
+ };
607
+ };
608
+ };
609
+ readonly WeatherConfig: {
610
+ readonly type: "object";
611
+ readonly properties: {
612
+ readonly precipitation: {
613
+ readonly type: "string";
614
+ readonly enum: readonly ["none", "rain"];
615
+ };
616
+ readonly intensity: {
617
+ readonly type: "number";
618
+ };
619
+ readonly wind: {
620
+ readonly type: "object";
621
+ readonly properties: {
622
+ readonly x: {
623
+ readonly type: "number";
624
+ };
625
+ readonly z: {
626
+ readonly type: "number";
627
+ };
628
+ };
629
+ readonly required: readonly ["x", "z"];
630
+ };
631
+ readonly wetness: {
632
+ readonly type: "number";
633
+ };
634
+ readonly puddles: {
635
+ readonly type: "number";
636
+ };
637
+ readonly reflections: {
638
+ readonly type: "string";
639
+ readonly enum: readonly ["ssr", "env"];
640
+ };
641
+ readonly reflectionStrength: {
642
+ readonly type: "number";
643
+ };
644
+ readonly reflectionHighlight: {
645
+ readonly type: "number";
646
+ };
647
+ readonly reflectionStreak: {
648
+ readonly type: "number";
649
+ };
650
+ readonly reflectionDistance: {
651
+ readonly type: "number";
652
+ };
653
+ readonly filmGloss: {
654
+ readonly type: "number";
655
+ };
656
+ readonly surfaceDarkening: {
657
+ readonly type: "number";
658
+ };
659
+ readonly envSheen: {
660
+ readonly type: "number";
661
+ };
662
+ readonly rippleStrength: {
663
+ readonly type: "number";
664
+ };
665
+ readonly spray: {
666
+ readonly type: "boolean";
667
+ };
668
+ readonly trailStrength: {
669
+ readonly type: "number";
670
+ };
671
+ };
672
+ };
673
+ readonly AnimationDefinition: {
674
+ readonly type: "object";
675
+ readonly properties: {
676
+ readonly animationUrl: {
677
+ readonly type: "string";
678
+ };
679
+ readonly motionId: {
680
+ readonly type: "string";
681
+ };
682
+ readonly prompt: {
683
+ readonly type: "string";
684
+ };
685
+ };
686
+ readonly required: readonly ["animationUrl", "motionId"];
687
+ };
688
+ readonly BaseAnimationDefinition: {
689
+ readonly type: "object";
690
+ readonly properties: {
691
+ readonly animationUrl: {
692
+ readonly type: "string";
693
+ };
694
+ readonly motionId: {
695
+ readonly type: "string";
696
+ };
697
+ readonly name: {
698
+ readonly type: "string";
699
+ };
700
+ readonly worksWithAttachedObjects: {
701
+ readonly type: "boolean";
702
+ };
703
+ readonly source: {
704
+ readonly type: "string";
705
+ readonly const: "mixamo";
706
+ };
707
+ readonly designSpeed: {
708
+ readonly type: "number";
709
+ };
710
+ };
711
+ readonly required: readonly ["animationUrl", "motionId", "name"];
712
+ };
713
+ readonly CombatConfig: {
714
+ readonly type: "object";
715
+ readonly properties: {
716
+ readonly customMoves: {
717
+ readonly type: "array";
718
+ readonly items: {
719
+ readonly $ref: "#/definitions/CustomAttackMove";
720
+ };
721
+ };
722
+ readonly useOnlyCustomMoves: {
723
+ readonly type: "boolean";
724
+ };
725
+ };
726
+ };
727
+ readonly CustomAttackMove: {
728
+ readonly type: "object";
729
+ readonly properties: {
730
+ readonly name: {
731
+ readonly type: "string";
732
+ };
733
+ readonly animationMotionId: {
734
+ readonly type: "string";
735
+ };
736
+ readonly type: {
737
+ readonly type: "string";
738
+ readonly enum: readonly ["punch", "kick", "attack"];
739
+ };
740
+ readonly side: {
741
+ readonly type: "string";
742
+ readonly enum: readonly ["left", "right"];
743
+ };
744
+ readonly damage: {
745
+ readonly type: "number";
746
+ };
747
+ readonly range: {
748
+ readonly type: "number";
749
+ };
750
+ readonly force: {
751
+ readonly type: "number";
752
+ };
753
+ readonly speed: {
754
+ readonly type: "number";
755
+ };
756
+ readonly interruptOnMovement: {
757
+ readonly type: "boolean";
758
+ };
759
+ readonly splitBodyOnRun: {
760
+ readonly type: "boolean";
761
+ };
762
+ readonly filterRootMotion: {
763
+ readonly type: "boolean";
764
+ };
765
+ };
766
+ readonly required: readonly ["name", "animationMotionId", "type"];
767
+ };
768
+ readonly CustomBlockType: {
769
+ readonly type: "object";
770
+ readonly properties: {
771
+ readonly name: {
772
+ readonly type: "string";
773
+ };
774
+ readonly displayName: {
775
+ readonly type: "string";
776
+ };
777
+ readonly description: {
778
+ readonly type: "string";
779
+ };
780
+ readonly textureUrl: {
781
+ readonly type: "string";
782
+ };
783
+ readonly sideTextureUrl: {
784
+ readonly type: readonly ["string", "null"];
785
+ };
786
+ readonly textureSize: {
787
+ readonly type: "number";
788
+ };
789
+ readonly isFluid: {
790
+ readonly type: "boolean";
791
+ };
792
+ readonly opacity: {
793
+ readonly type: "number";
794
+ };
795
+ readonly createdAt: {
796
+ readonly type: "string";
797
+ };
798
+ };
799
+ readonly required: readonly ["name", "textureUrl", "textureSize"];
800
+ };
801
+ readonly Hotspot: {
802
+ readonly anyOf: readonly [{
803
+ readonly $ref: "#/definitions/VillageHotspot";
804
+ }, {
805
+ readonly $ref: "#/definitions/TowerHotspot";
806
+ }, {
807
+ readonly $ref: "#/definitions/BuildingHotspot";
808
+ }];
809
+ };
810
+ readonly VillageHotspot: {
811
+ readonly type: "object";
812
+ readonly properties: {
813
+ readonly id: {
814
+ readonly type: "string";
815
+ };
816
+ readonly type: {
817
+ readonly type: "string";
818
+ readonly const: "village";
819
+ };
820
+ readonly center: {
821
+ readonly type: "object";
822
+ readonly properties: {
823
+ readonly x: {
824
+ readonly type: "number";
825
+ };
826
+ readonly z: {
827
+ readonly type: "number";
828
+ };
829
+ };
830
+ readonly required: readonly ["x", "z"];
831
+ };
832
+ readonly radius: {
833
+ readonly type: "number";
834
+ };
835
+ readonly buildingAssetIds: {
836
+ readonly type: "array";
837
+ readonly items: {
838
+ readonly type: "string";
839
+ };
840
+ };
841
+ readonly density: {
842
+ readonly type: "number";
843
+ };
844
+ readonly foundationBlockType: {
845
+ readonly type: "string";
846
+ };
847
+ };
848
+ readonly required: readonly ["id", "type", "center", "radius", "buildingAssetIds"];
849
+ };
850
+ readonly TowerHotspot: {
851
+ readonly type: "object";
852
+ readonly properties: {
853
+ readonly id: {
854
+ readonly type: "string";
855
+ };
856
+ readonly type: {
857
+ readonly type: "string";
858
+ readonly const: "tower";
859
+ };
860
+ readonly center: {
861
+ readonly type: "object";
862
+ readonly properties: {
863
+ readonly x: {
864
+ readonly type: "number";
865
+ };
866
+ readonly z: {
867
+ readonly type: "number";
868
+ };
869
+ };
870
+ readonly required: readonly ["x", "z"];
871
+ };
872
+ readonly assetId: {
873
+ readonly type: "string";
874
+ };
875
+ readonly foundationBlockType: {
876
+ readonly type: "string";
877
+ };
878
+ };
879
+ readonly required: readonly ["id", "type", "center", "assetId"];
880
+ };
881
+ readonly BuildingHotspot: {
882
+ readonly type: "object";
883
+ readonly properties: {
884
+ readonly id: {
885
+ readonly type: "string";
886
+ };
887
+ readonly type: {
888
+ readonly type: "string";
889
+ readonly const: "building";
890
+ };
891
+ readonly center: {
892
+ readonly type: "object";
893
+ readonly properties: {
894
+ readonly x: {
895
+ readonly type: "number";
896
+ };
897
+ readonly z: {
898
+ readonly type: "number";
899
+ };
900
+ };
901
+ readonly required: readonly ["x", "z"];
902
+ };
903
+ readonly size: {
904
+ readonly type: "object";
905
+ readonly properties: {
906
+ readonly x: {
907
+ readonly type: "number";
908
+ };
909
+ readonly z: {
910
+ readonly type: "number";
911
+ };
912
+ };
913
+ readonly required: readonly ["x", "z"];
914
+ };
915
+ readonly wallHeight: {
916
+ readonly type: "number";
917
+ };
918
+ readonly wallBlockType: {
919
+ readonly type: "string";
920
+ };
921
+ readonly roof: {
922
+ readonly type: "string";
923
+ readonly enum: readonly ["flat", "none"];
924
+ };
925
+ readonly roofBlockType: {
926
+ readonly type: "string";
927
+ };
928
+ readonly foundationBlockType: {
929
+ readonly type: "string";
930
+ };
931
+ readonly doors: {
932
+ readonly type: "array";
933
+ readonly items: {
934
+ readonly $ref: "#/definitions/BuildingOpening";
935
+ };
936
+ };
937
+ readonly windows: {
938
+ readonly type: "array";
939
+ readonly items: {
940
+ readonly type: "object";
941
+ readonly properties: {
942
+ readonly sillY: {
943
+ readonly type: "number";
944
+ };
945
+ readonly side: {
946
+ readonly type: "string";
947
+ readonly enum: readonly ["north", "south", "east", "west"];
948
+ };
949
+ readonly offset: {
950
+ readonly type: "number";
951
+ };
952
+ readonly width: {
953
+ readonly type: "number";
954
+ };
955
+ readonly height: {
956
+ readonly type: "number";
957
+ };
958
+ };
959
+ readonly required: readonly ["side"];
960
+ };
961
+ };
962
+ };
963
+ readonly required: readonly ["id", "type", "center", "size"];
964
+ };
965
+ readonly BuildingOpening: {
966
+ readonly type: "object";
967
+ readonly properties: {
968
+ readonly side: {
969
+ readonly type: "string";
970
+ readonly enum: readonly ["north", "south", "east", "west"];
971
+ };
972
+ readonly offset: {
973
+ readonly type: "number";
974
+ };
975
+ readonly width: {
976
+ readonly type: "number";
977
+ };
978
+ readonly height: {
979
+ readonly type: "number";
980
+ };
981
+ };
982
+ readonly required: readonly ["side"];
983
+ };
984
+ readonly CameraMode: {
985
+ readonly type: "string";
986
+ readonly enum: readonly ["first-person", "third-person", "top-down"];
987
+ };
988
+ readonly FitWorldRegion: {
989
+ readonly type: "object";
990
+ readonly properties: {
991
+ readonly left: {
992
+ readonly $ref: "#/definitions/FitWorldInset";
993
+ };
994
+ readonly right: {
995
+ readonly $ref: "#/definitions/FitWorldInset";
996
+ };
997
+ readonly top: {
998
+ readonly $ref: "#/definitions/FitWorldInset";
999
+ };
1000
+ readonly bottom: {
1001
+ readonly $ref: "#/definitions/FitWorldInset";
1002
+ };
1003
+ };
1004
+ };
1005
+ readonly FitWorldInset: {
1006
+ readonly type: "object";
1007
+ readonly properties: {
1008
+ readonly px: {
1009
+ readonly type: "number";
1010
+ };
1011
+ readonly fraction: {
1012
+ readonly type: "number";
1013
+ };
1014
+ };
1015
+ };
1016
+ readonly WorldLevel: {
1017
+ readonly type: "object";
1018
+ readonly properties: {
1019
+ readonly id: {
1020
+ readonly type: "string";
1021
+ };
1022
+ readonly name: {
1023
+ readonly type: "string";
1024
+ };
1025
+ readonly vwldAssetId: {
1026
+ readonly type: "string";
1027
+ };
1028
+ readonly spawnPoints: {
1029
+ readonly type: "array";
1030
+ readonly items: {
1031
+ readonly $ref: "#/definitions/SpawnPoint";
1032
+ };
1033
+ };
1034
+ readonly overrides: {
1035
+ readonly $ref: "#/definitions/WorldLevelOverrides";
1036
+ };
1037
+ };
1038
+ readonly required: readonly ["id", "name", "vwldAssetId"];
1039
+ };
1040
+ readonly WorldLevelOverrides: {
1041
+ readonly type: "object";
1042
+ readonly properties: {
1043
+ readonly skyboxUrl: {
1044
+ readonly type: "string";
1045
+ };
1046
+ readonly fogConfig: {
1047
+ readonly $ref: "#/definitions/FogConfig";
1048
+ };
1049
+ readonly lightingConfig: {
1050
+ readonly $ref: "#/definitions/LightingConfig";
1051
+ };
1052
+ readonly waterLevelY: {
1053
+ readonly type: "number";
1054
+ };
1055
+ readonly weatherConfig: {
1056
+ readonly $ref: "#/definitions/WeatherConfig";
1057
+ };
1058
+ };
1059
+ };
1060
+ readonly CharacterConfig: {
1061
+ readonly type: "object";
1062
+ readonly properties: {
1063
+ readonly height: {
1064
+ readonly type: "number";
1065
+ };
1066
+ readonly runSpeed: {
1067
+ readonly type: "number";
1068
+ };
1069
+ };
1070
+ };
1071
+ readonly DeathCombatConfig: {
1072
+ readonly type: "object";
1073
+ readonly properties: {
1074
+ readonly ragdollOnDeath: {
1075
+ readonly type: "boolean";
1076
+ };
1077
+ readonly ragdollJointLimits: {
1078
+ readonly type: "boolean";
1079
+ };
1080
+ readonly ragdollSelfCollision: {
1081
+ readonly type: "boolean";
1082
+ };
1083
+ };
1084
+ };
1085
+ readonly RuntimeAIConfig: {
1086
+ readonly type: "object";
1087
+ readonly properties: {
1088
+ readonly defaultSystemPrompt: {
1089
+ readonly type: "string";
1090
+ };
1091
+ readonly defaultTemperature: {
1092
+ readonly type: "number";
1093
+ };
1094
+ readonly defaultMaxTokens: {
1095
+ readonly type: "number";
1096
+ };
1097
+ readonly timeoutMs: {
1098
+ readonly type: "number";
1099
+ };
1100
+ readonly think: {
1101
+ readonly type: "boolean";
1102
+ };
1103
+ readonly stream: {
1104
+ readonly type: "boolean";
1105
+ };
1106
+ };
1107
+ };
1108
+ readonly AchievementDefinition: {
1109
+ readonly type: "object";
1110
+ readonly properties: {
1111
+ readonly achievementId: {
1112
+ readonly type: "string";
1113
+ };
1114
+ readonly name: {
1115
+ readonly type: "string";
1116
+ };
1117
+ readonly description: {
1118
+ readonly type: "string";
1119
+ };
1120
+ readonly imageUrl: {
1121
+ readonly type: readonly ["string", "null"];
1122
+ };
1123
+ readonly xp: {
1124
+ readonly type: "number";
1125
+ };
1126
+ readonly hidden: {
1127
+ readonly type: "boolean";
1128
+ };
1129
+ };
1130
+ readonly required: readonly ["achievementId", "name"];
1131
+ };
1132
+ readonly DoorDefinition: {
1133
+ readonly type: "object";
1134
+ readonly properties: {
1135
+ readonly id: {
1136
+ readonly type: "string";
1137
+ };
1138
+ readonly levelId: {
1139
+ readonly type: "string";
1140
+ };
1141
+ readonly position: {
1142
+ readonly $ref: "#/definitions/Vector3Like";
1143
+ };
1144
+ readonly rotationY: {
1145
+ readonly type: "number";
1146
+ };
1147
+ readonly width: {
1148
+ readonly type: "number";
1149
+ };
1150
+ readonly height: {
1151
+ readonly type: "number";
1152
+ };
1153
+ readonly thickness: {
1154
+ readonly type: "number";
1155
+ };
1156
+ readonly kind: {
1157
+ readonly type: "string";
1158
+ readonly enum: readonly ["plain", "locked"];
1159
+ };
1160
+ readonly keyId: {
1161
+ readonly type: "string";
1162
+ };
1163
+ readonly animation: {
1164
+ readonly type: "string";
1165
+ readonly enum: readonly ["hinge", "slide", "dissolve"];
1166
+ };
1167
+ readonly maxOpenAngleDeg: {
1168
+ readonly type: "number";
1169
+ };
1170
+ readonly assetId: {
1171
+ readonly type: "string";
1172
+ };
1173
+ readonly color: {
1174
+ readonly type: "string";
1175
+ };
1176
+ readonly autoOpenRadius: {
1177
+ readonly type: "number";
1178
+ };
1179
+ };
1180
+ readonly required: readonly ["id", "position", "rotationY", "width", "height", "thickness", "kind", "animation"];
1181
+ };
1182
+ readonly KeyItemDefinition: {
1183
+ readonly type: "object";
1184
+ readonly properties: {
1185
+ readonly id: {
1186
+ readonly type: "string";
1187
+ };
1188
+ readonly keyId: {
1189
+ readonly type: "string";
1190
+ };
1191
+ readonly levelId: {
1192
+ readonly type: "string";
1193
+ };
1194
+ readonly name: {
1195
+ readonly type: "string";
1196
+ };
1197
+ readonly position: {
1198
+ readonly $ref: "#/definitions/Vector3Like";
1199
+ };
1200
+ readonly assetId: {
1201
+ readonly type: "string";
1202
+ };
1203
+ readonly color: {
1204
+ readonly type: "string";
1205
+ };
1206
+ };
1207
+ readonly required: readonly ["id", "keyId", "name", "position"];
1208
+ };
1209
+ readonly Asset: {
1210
+ readonly type: "object";
1211
+ readonly properties: {
1212
+ readonly id: {
1213
+ readonly type: "string";
1214
+ };
1215
+ readonly name: {
1216
+ readonly type: "string";
1217
+ };
1218
+ readonly url: {
1219
+ readonly type: "string";
1220
+ };
1221
+ readonly type: {
1222
+ readonly type: "string";
1223
+ };
1224
+ readonly screenshotUrl: {
1225
+ readonly type: "string";
1226
+ };
1227
+ readonly size: {
1228
+ readonly type: "number";
1229
+ };
1230
+ readonly voxelSize: {
1231
+ readonly type: "number";
1232
+ };
1233
+ readonly opacityThreshold: {
1234
+ readonly type: "number";
1235
+ };
1236
+ readonly voxelizeMode: {
1237
+ readonly type: "string";
1238
+ readonly enum: readonly ["center", "coverage"];
1239
+ };
1240
+ readonly voxelizeSettings: {
1241
+ readonly type: "object";
1242
+ readonly properties: {
1243
+ readonly roundedEdges: {
1244
+ readonly type: "boolean";
1245
+ };
1246
+ };
1247
+ };
1248
+ readonly shadowCatcher: {
1249
+ readonly type: "boolean";
1250
+ };
1251
+ readonly shadowCatcherYOffset: {
1252
+ readonly type: "number";
1253
+ };
1254
+ readonly boundingBoxInMeters: {
1255
+ readonly type: "boolean";
1256
+ };
1257
+ readonly flattenTerrain: {
1258
+ readonly type: "boolean";
1259
+ };
1260
+ readonly flattenMargin: {
1261
+ readonly type: "number";
1262
+ };
1263
+ readonly collision: {
1264
+ readonly type: "boolean";
1265
+ };
1266
+ readonly colliderShape: {
1267
+ readonly type: "string";
1268
+ readonly enum: readonly ["box", "sphere"];
1269
+ };
1270
+ readonly light: {
1271
+ readonly $ref: "#/definitions/AssetLightEmitter";
1272
+ };
1273
+ readonly boundingBox: {
1274
+ readonly type: "object";
1275
+ readonly properties: {
1276
+ readonly minX: {
1277
+ readonly type: "number";
1278
+ };
1279
+ readonly minY: {
1280
+ readonly type: "number";
1281
+ };
1282
+ readonly minZ: {
1283
+ readonly type: "number";
1284
+ };
1285
+ readonly maxX: {
1286
+ readonly type: "number";
1287
+ };
1288
+ readonly maxY: {
1289
+ readonly type: "number";
1290
+ };
1291
+ readonly maxZ: {
1292
+ readonly type: "number";
1293
+ };
1294
+ };
1295
+ readonly required: readonly ["minX", "minY", "minZ", "maxX", "maxY", "maxZ"];
1296
+ };
1297
+ readonly voxelCount: {
1298
+ readonly type: "number";
1299
+ };
1300
+ readonly fitBox: {
1301
+ readonly type: "object";
1302
+ readonly properties: {
1303
+ readonly x: {
1304
+ readonly type: "number";
1305
+ };
1306
+ readonly z: {
1307
+ readonly type: "number";
1308
+ };
1309
+ readonly height: {
1310
+ readonly type: "number";
1311
+ };
1312
+ };
1313
+ readonly required: readonly ["x", "z", "height"];
1314
+ };
1315
+ readonly description: {
1316
+ readonly type: "string";
1317
+ };
1318
+ readonly placeholder: {
1319
+ readonly type: "boolean";
1320
+ };
1321
+ readonly sourceGlbUrl: {
1322
+ readonly type: "string";
1323
+ };
1324
+ readonly sourceModelUrl: {
1325
+ readonly type: "string";
1326
+ };
1327
+ readonly sourceVxlMasterUrl: {
1328
+ readonly type: "string";
1329
+ };
1330
+ readonly sourceVxlMasterResolution: {
1331
+ readonly type: "number";
1332
+ };
1333
+ readonly voxelEdited: {
1334
+ readonly type: "boolean";
1335
+ };
1336
+ readonly vxlUrl: {
1337
+ readonly type: "string";
1338
+ };
1339
+ readonly sourceGlbType: {
1340
+ readonly type: "string";
1341
+ };
1342
+ readonly targetHeight: {
1343
+ readonly type: "number";
1344
+ };
1345
+ readonly glbDimensions: {
1346
+ readonly type: "object";
1347
+ readonly properties: {
1348
+ readonly width: {
1349
+ readonly type: "number";
1350
+ };
1351
+ readonly height: {
1352
+ readonly type: "number";
1353
+ };
1354
+ readonly depth: {
1355
+ readonly type: "number";
1356
+ };
1357
+ };
1358
+ readonly required: readonly ["width", "height", "depth"];
1359
+ };
1360
+ readonly colliderUrl: {
1361
+ readonly type: "string";
1362
+ };
1363
+ readonly colliderType: {
1364
+ readonly type: "string";
1365
+ readonly enum: readonly ["mesh", "voxel"];
1366
+ };
1367
+ readonly vehicleFitment: {
1368
+ readonly $ref: "#/definitions/VehicleAssetFitment";
1369
+ };
1370
+ readonly splatCount: {
1371
+ readonly type: "number";
1372
+ };
1373
+ readonly denormScale: {
1374
+ readonly type: "number";
1375
+ };
1376
+ readonly centerY: {
1377
+ readonly type: "number";
1378
+ };
1379
+ readonly source: {
1380
+ readonly type: "string";
1381
+ readonly enum: readonly ["generated", "uploaded"];
1382
+ };
1383
+ readonly duration: {
1384
+ readonly type: "number";
1385
+ };
1386
+ readonly prompt: {
1387
+ readonly type: "string";
1388
+ };
1389
+ readonly cropBounds: {
1390
+ readonly type: "object";
1391
+ readonly properties: {
1392
+ readonly minX: {
1393
+ readonly type: "number";
1394
+ };
1395
+ readonly minY: {
1396
+ readonly type: "number";
1397
+ };
1398
+ readonly minZ: {
1399
+ readonly type: "number";
1400
+ };
1401
+ readonly maxX: {
1402
+ readonly type: "number";
1403
+ };
1404
+ readonly maxY: {
1405
+ readonly type: "number";
1406
+ };
1407
+ readonly maxZ: {
1408
+ readonly type: "number";
1409
+ };
1410
+ };
1411
+ readonly required: readonly ["minX", "minY", "minZ", "maxX", "maxY", "maxZ"];
1412
+ };
1413
+ readonly cleanupBounds: {
1414
+ readonly type: "object";
1415
+ readonly properties: {
1416
+ readonly minX: {
1417
+ readonly type: "number";
1418
+ };
1419
+ readonly minY: {
1420
+ readonly type: "number";
1421
+ };
1422
+ readonly minZ: {
1423
+ readonly type: "number";
1424
+ };
1425
+ readonly maxX: {
1426
+ readonly type: "number";
1427
+ };
1428
+ readonly maxY: {
1429
+ readonly type: "number";
1430
+ };
1431
+ readonly maxZ: {
1432
+ readonly type: "number";
1433
+ };
1434
+ };
1435
+ readonly required: readonly ["minX", "minY", "minZ", "maxX", "maxY", "maxZ"];
1436
+ };
1437
+ readonly navUrl: {
1438
+ readonly type: "string";
1439
+ };
1440
+ };
1441
+ readonly required: readonly ["id", "name", "url", "type"];
1442
+ };
1443
+ readonly AssetLightEmitter: {
1444
+ readonly type: "object";
1445
+ readonly properties: {
1446
+ readonly color: {
1447
+ readonly type: "string";
1448
+ };
1449
+ readonly intensity: {
1450
+ readonly type: "number";
1451
+ };
1452
+ readonly distance: {
1453
+ readonly type: "number";
1454
+ };
1455
+ readonly offset: {
1456
+ readonly $ref: "#/definitions/Vector3Like";
1457
+ };
1458
+ readonly flicker: {
1459
+ readonly type: "boolean";
1460
+ };
1461
+ };
1462
+ };
1463
+ readonly VehicleAssetFitment: {
1464
+ readonly type: "object";
1465
+ readonly properties: {
1466
+ readonly version: {
1467
+ readonly type: "number";
1468
+ readonly const: 1;
1469
+ };
1470
+ readonly platform: {
1471
+ readonly type: "object";
1472
+ readonly properties: {
1473
+ readonly width: {
1474
+ readonly type: "number";
1475
+ };
1476
+ readonly length: {
1477
+ readonly type: "number";
1478
+ };
1479
+ };
1480
+ readonly required: readonly ["width", "length"];
1481
+ };
1482
+ readonly axles: {
1483
+ readonly type: "array";
1484
+ readonly items: {
1485
+ readonly $ref: "#/definitions/VehicleFitmentAxle";
1486
+ };
1487
+ };
1488
+ readonly bodyBounds: {
1489
+ readonly type: "object";
1490
+ readonly properties: {
1491
+ readonly min: {
1492
+ readonly type: "array";
1493
+ readonly items: {
1494
+ readonly type: "number";
1495
+ };
1496
+ readonly minItems: 3;
1497
+ readonly maxItems: 3;
1498
+ };
1499
+ readonly max: {
1500
+ readonly type: "array";
1501
+ readonly items: {
1502
+ readonly type: "number";
1503
+ };
1504
+ readonly minItems: 3;
1505
+ readonly maxItems: 3;
1506
+ };
1507
+ };
1508
+ readonly required: readonly ["min", "max"];
1509
+ };
1510
+ readonly hasWheelNodes: {
1511
+ readonly type: "boolean";
1512
+ };
1513
+ readonly collisionBoxes: {
1514
+ readonly type: "array";
1515
+ readonly items: {
1516
+ readonly $ref: "#/definitions/VehicleFitmentBox";
1517
+ };
1518
+ };
1519
+ readonly mass: {
1520
+ readonly type: "number";
1521
+ };
1522
+ readonly handling: {
1523
+ readonly type: "object";
1524
+ readonly properties: {
1525
+ readonly topSpeed: {
1526
+ readonly type: "number";
1527
+ };
1528
+ readonly accelerationScale: {
1529
+ readonly type: "number";
1530
+ };
1531
+ readonly maxSteerAngle: {
1532
+ readonly type: "number";
1533
+ };
1534
+ readonly downforce: {
1535
+ readonly type: "number";
1536
+ };
1537
+ };
1538
+ };
1539
+ readonly preferredVoxelSizeM: {
1540
+ readonly type: "number";
1541
+ };
1542
+ readonly seat: {
1543
+ readonly type: "object";
1544
+ readonly properties: {
1545
+ readonly x: {
1546
+ readonly type: "number";
1547
+ };
1548
+ readonly y: {
1549
+ readonly type: "number";
1550
+ };
1551
+ readonly z: {
1552
+ readonly type: "number";
1553
+ };
1554
+ };
1555
+ readonly required: readonly ["x", "y", "z"];
1556
+ };
1557
+ };
1558
+ readonly required: readonly ["version", "platform", "axles", "bodyBounds", "hasWheelNodes", "collisionBoxes", "mass"];
1559
+ };
1560
+ readonly VehicleFitmentAxle: {
1561
+ readonly type: "object";
1562
+ readonly properties: {
1563
+ readonly z: {
1564
+ readonly type: "number";
1565
+ };
1566
+ readonly y: {
1567
+ readonly type: "number";
1568
+ };
1569
+ readonly radius: {
1570
+ readonly type: "number";
1571
+ };
1572
+ readonly width: {
1573
+ readonly type: "number";
1574
+ };
1575
+ readonly track: {
1576
+ readonly type: "number";
1577
+ };
1578
+ readonly steering: {
1579
+ readonly type: "boolean";
1580
+ };
1581
+ readonly driven: {
1582
+ readonly type: "boolean";
1583
+ };
1584
+ readonly dual: {
1585
+ readonly type: "boolean";
1586
+ };
1587
+ readonly wheelStyle: {
1588
+ readonly $ref: "#/definitions/BmWheelStyle";
1589
+ };
1590
+ };
1591
+ readonly required: readonly ["z", "y", "radius", "width", "track", "steering", "driven", "dual", "wheelStyle"];
1592
+ };
1593
+ readonly BmWheelStyle: {
1594
+ readonly type: "string";
1595
+ readonly enum: readonly ["steel", "alloy5", "alloy6", "lug", "moon", "classic"];
1596
+ };
1597
+ readonly VehicleFitmentBox: {
1598
+ readonly type: "object";
1599
+ readonly properties: {
1600
+ readonly position: {
1601
+ readonly type: "object";
1602
+ readonly properties: {
1603
+ readonly x: {
1604
+ readonly type: "number";
1605
+ };
1606
+ readonly y: {
1607
+ readonly type: "number";
1608
+ };
1609
+ readonly z: {
1610
+ readonly type: "number";
1611
+ };
1612
+ };
1613
+ readonly required: readonly ["x", "y", "z"];
1614
+ };
1615
+ readonly size: {
1616
+ readonly type: "object";
1617
+ readonly properties: {
1618
+ readonly x: {
1619
+ readonly type: "number";
1620
+ };
1621
+ readonly y: {
1622
+ readonly type: "number";
1623
+ };
1624
+ readonly z: {
1625
+ readonly type: "number";
1626
+ };
1627
+ };
1628
+ readonly required: readonly ["x", "y", "z"];
1629
+ };
1630
+ };
1631
+ readonly required: readonly ["position", "size"];
1632
+ };
1633
+ };
1634
+ };
1635
+ //# sourceMappingURL=game-data-schema.d.ts.map