@hytopia.com/examples 1.0.12 → 1.0.13

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 (67) hide show
  1. package/frontiers-rpg-game/assets/icons/items/leather-boots.png +0 -0
  2. package/frontiers-rpg-game/assets/icons/items/leather-bracers.png +0 -0
  3. package/frontiers-rpg-game/assets/icons/items/leather-helmet.png +0 -0
  4. package/frontiers-rpg-game/assets/icons/items/leather-leggings.png +0 -0
  5. package/frontiers-rpg-game/assets/icons/items/leather-vest.png +0 -0
  6. package/frontiers-rpg-game/assets/icons/items/spiked-club.png +0 -0
  7. package/frontiers-rpg-game/assets/icons/skills/crafting.png +0 -0
  8. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/baseColor.png +0 -0
  9. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/mace-named-nodes.bin +0 -0
  10. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/mace-named-nodes.gltf +653 -0
  11. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/mace.bin +0 -0
  12. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/mace.gltf +135 -0
  13. package/frontiers-rpg-game/assets/models/weapons/.optimized/mace/mace.gltf.md5 +1 -0
  14. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/baseColor.png +0 -0
  15. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/spiked-club-named-nodes.bin +0 -0
  16. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/spiked-club-named-nodes.gltf +840 -0
  17. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/spiked-club.bin +0 -0
  18. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/spiked-club.gltf +141 -0
  19. package/frontiers-rpg-game/assets/models/weapons/.optimized/spiked-club/spiked-club.gltf.md5 +1 -0
  20. package/frontiers-rpg-game/assets/models/weapons/mace.gltf +1 -0
  21. package/frontiers-rpg-game/assets/ui/build.js +2 -0
  22. package/frontiers-rpg-game/assets/ui/index.html +1328 -64
  23. package/frontiers-rpg-game/assets/ui/menus/crafting.html +976 -0
  24. package/frontiers-rpg-game/assets/ui/menus/quests.html +70 -2
  25. package/frontiers-rpg-game/assets/ui/shared/item-stats.html +224 -0
  26. package/frontiers-rpg-game/assets/ui/shared/item-tooltips.html +72 -81
  27. package/frontiers-rpg-game/dev/persistence/player-player-1.json +121 -12
  28. package/frontiers-rpg-game/src/GamePlayer.ts +53 -0
  29. package/frontiers-rpg-game/src/GamePlayerEntity.ts +9 -2
  30. package/frontiers-rpg-game/src/config.ts +7 -0
  31. package/frontiers-rpg-game/src/entities/BaseCraftingEntity.ts +115 -0
  32. package/frontiers-rpg-game/src/entities/enemies/RatkinBruteEntity.ts +2 -0
  33. package/frontiers-rpg-game/src/entities/enemies/RatkinRangerEntity.ts +2 -0
  34. package/frontiers-rpg-game/src/entities/enemies/RatkinSpellcasterEntity.ts +2 -0
  35. package/frontiers-rpg-game/src/entities/enemies/RatkinWarriorEntity.ts +2 -0
  36. package/frontiers-rpg-game/src/entities/enemies/TaintedRatkinBruteEntity.ts +2 -0
  37. package/frontiers-rpg-game/src/entities/enemies/TaintedRatkinRangerEntity.ts +2 -1
  38. package/frontiers-rpg-game/src/entities/enemies/TaintedRatkinSpellcasterEntity.ts +2 -0
  39. package/frontiers-rpg-game/src/entities/enemies/TaintedRatkinWarriorEntity.ts +2 -0
  40. package/frontiers-rpg-game/src/entities/forageables/DecayingPileEntity.ts +2 -2
  41. package/frontiers-rpg-game/src/entities/forageables/RottenLogEntity.ts +2 -2
  42. package/frontiers-rpg-game/src/items/ItemClasses.ts +14 -2
  43. package/frontiers-rpg-game/src/items/materials/RawHideItem.ts +10 -0
  44. package/frontiers-rpg-game/src/items/weapons/DullSwordItem.ts +5 -4
  45. package/frontiers-rpg-game/src/items/weapons/IronDaggerItem.ts +1 -1
  46. package/frontiers-rpg-game/src/items/weapons/IronLongSwordItem.ts +5 -4
  47. package/frontiers-rpg-game/src/items/weapons/SpikedClubItem.ts +26 -0
  48. package/frontiers-rpg-game/src/items/weapons/TrainingSwordItem.ts +5 -4
  49. package/frontiers-rpg-game/src/items/wearables/LeatherBootsItem.ts +14 -0
  50. package/frontiers-rpg-game/src/items/wearables/LeatherBracersItem.ts +14 -0
  51. package/frontiers-rpg-game/src/items/wearables/LeatherHelmetItem.ts +14 -0
  52. package/frontiers-rpg-game/src/items/wearables/LeatherLeggingsItem.ts +14 -0
  53. package/frontiers-rpg-game/src/items/wearables/LeatherVestItem.ts +14 -0
  54. package/frontiers-rpg-game/src/quests/BaseQuest.ts +1 -2
  55. package/frontiers-rpg-game/src/quests/QuestClasses.ts +2 -0
  56. package/frontiers-rpg-game/src/quests/side/FungalForagingQuest.ts +1 -23
  57. package/frontiers-rpg-game/src/quests/side/HammersAndCraftingQuest.ts +139 -0
  58. package/frontiers-rpg-game/src/regions/stalkhaven/StalkhavenRegion.ts +2 -0
  59. package/frontiers-rpg-game/src/regions/stalkhaven/npcs/BlacksmithArdenEntity.ts +114 -0
  60. package/frontiers-rpg-game/src/systems/QuestLog.ts +2 -5
  61. package/package.json +1 -1
  62. package/frontiers-rpg-game/dev/persistence/player-player-2.json +0 -31
  63. package/frontiers-rpg-game/dev/persistence/player-player-3.json +0 -25
  64. package/frontiers-rpg-game/dev/persistence/player-player-4.json +0 -31
  65. package/frontiers-rpg-game/src/items/materials/MonsterHideItem.ts +0 -10
  66. /package/frontiers-rpg-game/assets/icons/items/{monster-hide.png → raw-hide.png} +0 -0
  67. /package/frontiers-rpg-game/assets/models/weapons/{club.gltf → spiked-club.gltf} +0 -0
@@ -0,0 +1,840 @@
1
+ {
2
+ "asset": {
3
+ "generator": "glTF-Transform v4.1.3",
4
+ "version": "2.0"
5
+ },
6
+ "accessors": [
7
+ {
8
+ "type": "SCALAR",
9
+ "componentType": 5123,
10
+ "count": 36,
11
+ "bufferView": 0,
12
+ "byteOffset": 0
13
+ },
14
+ {
15
+ "type": "VEC3",
16
+ "componentType": 5126,
17
+ "count": 24,
18
+ "max": [
19
+ 0.09375,
20
+ 0.09375,
21
+ 0.09375
22
+ ],
23
+ "min": [
24
+ -0.09375,
25
+ -0.09375,
26
+ -0.09375
27
+ ],
28
+ "bufferView": 1,
29
+ "byteOffset": 0
30
+ },
31
+ {
32
+ "type": "VEC3",
33
+ "componentType": 5126,
34
+ "count": 24,
35
+ "bufferView": 1,
36
+ "byteOffset": 12
37
+ },
38
+ {
39
+ "type": "VEC2",
40
+ "componentType": 5126,
41
+ "count": 24,
42
+ "bufferView": 1,
43
+ "byteOffset": 24
44
+ },
45
+ {
46
+ "type": "VEC3",
47
+ "componentType": 5126,
48
+ "count": 24,
49
+ "max": [
50
+ 0.125,
51
+ 0.4375,
52
+ 0.125
53
+ ],
54
+ "min": [
55
+ -5.551115123125783e-17,
56
+ -0.125,
57
+ 0
58
+ ],
59
+ "bufferView": 2,
60
+ "byteOffset": 0
61
+ },
62
+ {
63
+ "type": "VEC2",
64
+ "componentType": 5126,
65
+ "count": 24,
66
+ "bufferView": 2,
67
+ "byteOffset": 12
68
+ },
69
+ {
70
+ "type": "VEC3",
71
+ "componentType": 5126,
72
+ "count": 24,
73
+ "max": [
74
+ 0.15625,
75
+ 1.125,
76
+ 0.15625
77
+ ],
78
+ "min": [
79
+ -0.03125,
80
+ -0.125,
81
+ -0.03125
82
+ ],
83
+ "bufferView": 3,
84
+ "byteOffset": 0
85
+ },
86
+ {
87
+ "type": "VEC2",
88
+ "componentType": 5126,
89
+ "count": 24,
90
+ "bufferView": 3,
91
+ "byteOffset": 12
92
+ },
93
+ {
94
+ "type": "VEC3",
95
+ "componentType": 5126,
96
+ "count": 24,
97
+ "max": [
98
+ 0.0625,
99
+ 0.0625,
100
+ 0.0625
101
+ ],
102
+ "min": [
103
+ -0.0625,
104
+ -0.0625,
105
+ -0.0625
106
+ ],
107
+ "bufferView": 4,
108
+ "byteOffset": 0
109
+ },
110
+ {
111
+ "type": "VEC2",
112
+ "componentType": 5126,
113
+ "count": 24,
114
+ "bufferView": 4,
115
+ "byteOffset": 12
116
+ },
117
+ {
118
+ "type": "VEC2",
119
+ "componentType": 5126,
120
+ "count": 24,
121
+ "bufferView": 5,
122
+ "byteOffset": 0
123
+ },
124
+ {
125
+ "type": "VEC2",
126
+ "componentType": 5126,
127
+ "count": 24,
128
+ "bufferView": 6,
129
+ "byteOffset": 0
130
+ },
131
+ {
132
+ "type": "VEC2",
133
+ "componentType": 5126,
134
+ "count": 24,
135
+ "bufferView": 7,
136
+ "byteOffset": 0
137
+ },
138
+ {
139
+ "type": "VEC2",
140
+ "componentType": 5126,
141
+ "count": 24,
142
+ "bufferView": 8,
143
+ "byteOffset": 0
144
+ },
145
+ {
146
+ "type": "VEC2",
147
+ "componentType": 5126,
148
+ "count": 24,
149
+ "bufferView": 9,
150
+ "byteOffset": 0
151
+ },
152
+ {
153
+ "type": "VEC2",
154
+ "componentType": 5126,
155
+ "count": 24,
156
+ "bufferView": 10,
157
+ "byteOffset": 0
158
+ },
159
+ {
160
+ "type": "VEC2",
161
+ "componentType": 5126,
162
+ "count": 24,
163
+ "bufferView": 11,
164
+ "byteOffset": 0
165
+ },
166
+ {
167
+ "type": "VEC2",
168
+ "componentType": 5126,
169
+ "count": 24,
170
+ "bufferView": 12,
171
+ "byteOffset": 0
172
+ },
173
+ {
174
+ "type": "VEC2",
175
+ "componentType": 5126,
176
+ "count": 24,
177
+ "bufferView": 13,
178
+ "byteOffset": 0
179
+ },
180
+ {
181
+ "type": "VEC2",
182
+ "componentType": 5126,
183
+ "count": 24,
184
+ "bufferView": 14,
185
+ "byteOffset": 0
186
+ },
187
+ {
188
+ "type": "VEC2",
189
+ "componentType": 5126,
190
+ "count": 24,
191
+ "bufferView": 15,
192
+ "byteOffset": 0
193
+ },
194
+ {
195
+ "type": "VEC2",
196
+ "componentType": 5126,
197
+ "count": 24,
198
+ "bufferView": 16,
199
+ "byteOffset": 0
200
+ }
201
+ ],
202
+ "bufferViews": [
203
+ {
204
+ "buffer": 0,
205
+ "byteOffset": 0,
206
+ "byteLength": 72,
207
+ "target": 34963
208
+ },
209
+ {
210
+ "buffer": 0,
211
+ "byteOffset": 72,
212
+ "byteLength": 768,
213
+ "byteStride": 32,
214
+ "target": 34962
215
+ },
216
+ {
217
+ "buffer": 0,
218
+ "byteOffset": 840,
219
+ "byteLength": 480,
220
+ "byteStride": 20,
221
+ "target": 34962
222
+ },
223
+ {
224
+ "buffer": 0,
225
+ "byteOffset": 1320,
226
+ "byteLength": 480,
227
+ "byteStride": 20,
228
+ "target": 34962
229
+ },
230
+ {
231
+ "buffer": 0,
232
+ "byteOffset": 1800,
233
+ "byteLength": 480,
234
+ "byteStride": 20,
235
+ "target": 34962
236
+ },
237
+ {
238
+ "buffer": 0,
239
+ "byteOffset": 2280,
240
+ "byteLength": 192,
241
+ "byteStride": 8,
242
+ "target": 34962
243
+ },
244
+ {
245
+ "buffer": 0,
246
+ "byteOffset": 2472,
247
+ "byteLength": 192,
248
+ "byteStride": 8,
249
+ "target": 34962
250
+ },
251
+ {
252
+ "buffer": 0,
253
+ "byteOffset": 2664,
254
+ "byteLength": 192,
255
+ "byteStride": 8,
256
+ "target": 34962
257
+ },
258
+ {
259
+ "buffer": 0,
260
+ "byteOffset": 2856,
261
+ "byteLength": 192,
262
+ "byteStride": 8,
263
+ "target": 34962
264
+ },
265
+ {
266
+ "buffer": 0,
267
+ "byteOffset": 3048,
268
+ "byteLength": 192,
269
+ "byteStride": 8,
270
+ "target": 34962
271
+ },
272
+ {
273
+ "buffer": 0,
274
+ "byteOffset": 3240,
275
+ "byteLength": 192,
276
+ "byteStride": 8,
277
+ "target": 34962
278
+ },
279
+ {
280
+ "buffer": 0,
281
+ "byteOffset": 3432,
282
+ "byteLength": 192,
283
+ "byteStride": 8,
284
+ "target": 34962
285
+ },
286
+ {
287
+ "buffer": 0,
288
+ "byteOffset": 3624,
289
+ "byteLength": 192,
290
+ "byteStride": 8,
291
+ "target": 34962
292
+ },
293
+ {
294
+ "buffer": 0,
295
+ "byteOffset": 3816,
296
+ "byteLength": 192,
297
+ "byteStride": 8,
298
+ "target": 34962
299
+ },
300
+ {
301
+ "buffer": 0,
302
+ "byteOffset": 4008,
303
+ "byteLength": 192,
304
+ "byteStride": 8,
305
+ "target": 34962
306
+ },
307
+ {
308
+ "buffer": 0,
309
+ "byteOffset": 4200,
310
+ "byteLength": 192,
311
+ "byteStride": 8,
312
+ "target": 34962
313
+ },
314
+ {
315
+ "buffer": 0,
316
+ "byteOffset": 4392,
317
+ "byteLength": 192,
318
+ "byteStride": 8,
319
+ "target": 34962
320
+ }
321
+ ],
322
+ "samplers": [
323
+ {
324
+ "magFilter": 9728,
325
+ "minFilter": 9728,
326
+ "wrapS": 33071,
327
+ "wrapT": 33071
328
+ }
329
+ ],
330
+ "textures": [
331
+ {
332
+ "source": 0,
333
+ "sampler": 0
334
+ }
335
+ ],
336
+ "images": [
337
+ {
338
+ "mimeType": "image/png",
339
+ "uri": "baseColor.png"
340
+ }
341
+ ],
342
+ "buffers": [
343
+ {
344
+ "uri": "spiked-club-named-nodes.bin",
345
+ "byteLength": 4584
346
+ }
347
+ ],
348
+ "materials": [
349
+ {
350
+ "alphaMode": "MASK",
351
+ "alphaCutoff": 0.05,
352
+ "pbrMetallicRoughness": {
353
+ "metallicFactor": 0,
354
+ "baseColorTexture": {
355
+ "index": 0
356
+ }
357
+ }
358
+ }
359
+ ],
360
+ "meshes": [
361
+ {
362
+ "primitives": [
363
+ {
364
+ "attributes": {
365
+ "POSITION": 1,
366
+ "NORMAL": 2,
367
+ "TEXCOORD_0": 3
368
+ },
369
+ "mode": 4,
370
+ "material": 0,
371
+ "indices": 0
372
+ }
373
+ ]
374
+ },
375
+ {
376
+ "primitives": [
377
+ {
378
+ "attributes": {
379
+ "POSITION": 4,
380
+ "TEXCOORD_0": 5,
381
+ "NORMAL": 2
382
+ },
383
+ "mode": 4,
384
+ "material": 0,
385
+ "indices": 0
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "primitives": [
391
+ {
392
+ "attributes": {
393
+ "POSITION": 6,
394
+ "TEXCOORD_0": 7,
395
+ "NORMAL": 2
396
+ },
397
+ "mode": 4,
398
+ "material": 0,
399
+ "indices": 0
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "primitives": [
405
+ {
406
+ "attributes": {
407
+ "POSITION": 8,
408
+ "TEXCOORD_0": 9,
409
+ "NORMAL": 2
410
+ },
411
+ "mode": 4,
412
+ "material": 0,
413
+ "indices": 0
414
+ }
415
+ ]
416
+ },
417
+ {
418
+ "primitives": [
419
+ {
420
+ "attributes": {
421
+ "TEXCOORD_0": 10,
422
+ "POSITION": 8,
423
+ "NORMAL": 2
424
+ },
425
+ "mode": 4,
426
+ "material": 0,
427
+ "indices": 0
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "primitives": [
433
+ {
434
+ "attributes": {
435
+ "TEXCOORD_0": 11,
436
+ "POSITION": 8,
437
+ "NORMAL": 2
438
+ },
439
+ "mode": 4,
440
+ "material": 0,
441
+ "indices": 0
442
+ }
443
+ ]
444
+ },
445
+ {
446
+ "primitives": [
447
+ {
448
+ "attributes": {
449
+ "TEXCOORD_0": 12,
450
+ "POSITION": 8,
451
+ "NORMAL": 2
452
+ },
453
+ "mode": 4,
454
+ "material": 0,
455
+ "indices": 0
456
+ }
457
+ ]
458
+ },
459
+ {
460
+ "primitives": [
461
+ {
462
+ "attributes": {
463
+ "TEXCOORD_0": 13,
464
+ "POSITION": 8,
465
+ "NORMAL": 2
466
+ },
467
+ "mode": 4,
468
+ "material": 0,
469
+ "indices": 0
470
+ }
471
+ ]
472
+ },
473
+ {
474
+ "primitives": [
475
+ {
476
+ "attributes": {
477
+ "TEXCOORD_0": 14,
478
+ "POSITION": 8,
479
+ "NORMAL": 2
480
+ },
481
+ "mode": 4,
482
+ "material": 0,
483
+ "indices": 0
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "primitives": [
489
+ {
490
+ "attributes": {
491
+ "TEXCOORD_0": 15,
492
+ "POSITION": 8,
493
+ "NORMAL": 2
494
+ },
495
+ "mode": 4,
496
+ "material": 0,
497
+ "indices": 0
498
+ }
499
+ ]
500
+ },
501
+ {
502
+ "primitives": [
503
+ {
504
+ "attributes": {
505
+ "TEXCOORD_0": 16,
506
+ "POSITION": 8,
507
+ "NORMAL": 2
508
+ },
509
+ "mode": 4,
510
+ "material": 0,
511
+ "indices": 0
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "primitives": [
517
+ {
518
+ "attributes": {
519
+ "TEXCOORD_0": 17,
520
+ "POSITION": 8,
521
+ "NORMAL": 2
522
+ },
523
+ "mode": 4,
524
+ "material": 0,
525
+ "indices": 0
526
+ }
527
+ ]
528
+ },
529
+ {
530
+ "primitives": [
531
+ {
532
+ "attributes": {
533
+ "TEXCOORD_0": 18,
534
+ "POSITION": 8,
535
+ "NORMAL": 2
536
+ },
537
+ "mode": 4,
538
+ "material": 0,
539
+ "indices": 0
540
+ }
541
+ ]
542
+ },
543
+ {
544
+ "primitives": [
545
+ {
546
+ "attributes": {
547
+ "TEXCOORD_0": 19,
548
+ "POSITION": 8,
549
+ "NORMAL": 2
550
+ },
551
+ "mode": 4,
552
+ "material": 0,
553
+ "indices": 0
554
+ }
555
+ ]
556
+ },
557
+ {
558
+ "primitives": [
559
+ {
560
+ "attributes": {
561
+ "TEXCOORD_0": 20,
562
+ "POSITION": 8,
563
+ "NORMAL": 2
564
+ },
565
+ "mode": 4,
566
+ "material": 0,
567
+ "indices": 0
568
+ }
569
+ ]
570
+ },
571
+ {
572
+ "primitives": [
573
+ {
574
+ "attributes": {
575
+ "TEXCOORD_0": 21,
576
+ "POSITION": 8,
577
+ "NORMAL": 2
578
+ },
579
+ "mode": 4,
580
+ "material": 0,
581
+ "indices": 0
582
+ }
583
+ ]
584
+ }
585
+ ],
586
+ "nodes": [
587
+ {
588
+ "name": "cube",
589
+ "translation": [
590
+ 0.49952625,
591
+ -0.609375,
592
+ 0.5
593
+ ],
594
+ "rotation": [
595
+ 0,
596
+ 0,
597
+ 0.3826834323650898,
598
+ 0.9238795325112867
599
+ ],
600
+ "mesh": 0
601
+ },
602
+ {
603
+ "name": "cube",
604
+ "translation": [
605
+ 0.43702625,
606
+ -0.46875,
607
+ 0.4375
608
+ ],
609
+ "mesh": 1
610
+ },
611
+ {
612
+ "name": "cube",
613
+ "translation": [
614
+ 0.43702625,
615
+ 0.09375,
616
+ 0.4375
617
+ ],
618
+ "mesh": 2
619
+ },
620
+ {
621
+ "name": "cube",
622
+ "translation": [
623
+ 0.49952625,
624
+ 1.21875,
625
+ 0.5
626
+ ],
627
+ "rotation": [
628
+ 0,
629
+ 0,
630
+ 0.3826834323650898,
631
+ 0.9238795325112867
632
+ ],
633
+ "mesh": 3
634
+ },
635
+ {
636
+ "name": "cube",
637
+ "translation": [
638
+ 0.49952625,
639
+ 0.34375,
640
+ 0.4375
641
+ ],
642
+ "rotation": [
643
+ -0.3826834323650898,
644
+ 0,
645
+ 0,
646
+ 0.9238795325112867
647
+ ],
648
+ "mesh": 4
649
+ },
650
+ {
651
+ "name": "cube",
652
+ "translation": [
653
+ 0.43797375,
654
+ 0.15625,
655
+ 0.5
656
+ ],
657
+ "rotation": [
658
+ 0,
659
+ 0,
660
+ -0.3826834323650898,
661
+ 0.9238795325112867
662
+ ],
663
+ "mesh": 5
664
+ },
665
+ {
666
+ "name": "cube",
667
+ "translation": [
668
+ 0.56202625,
669
+ 0.15625,
670
+ 0.5
671
+ ],
672
+ "rotation": [
673
+ 0,
674
+ 0,
675
+ 0.3826834323650898,
676
+ 0.9238795325112867
677
+ ],
678
+ "mesh": 6
679
+ },
680
+ {
681
+ "name": "cube",
682
+ "translation": [
683
+ 0.56202625,
684
+ 0.53125,
685
+ 0.5
686
+ ],
687
+ "rotation": [
688
+ 0,
689
+ 0,
690
+ 0.3826834323650898,
691
+ 0.9238795325112867
692
+ ],
693
+ "mesh": 7
694
+ },
695
+ {
696
+ "name": "cube",
697
+ "translation": [
698
+ 0.56202625,
699
+ 0.90625,
700
+ 0.5
701
+ ],
702
+ "rotation": [
703
+ 0,
704
+ 0,
705
+ 0.3826834323650898,
706
+ 0.9238795325112867
707
+ ],
708
+ "mesh": 8
709
+ },
710
+ {
711
+ "name": "cube",
712
+ "translation": [
713
+ 0.43797375,
714
+ 0.53125,
715
+ 0.5
716
+ ],
717
+ "rotation": [
718
+ 0,
719
+ 0,
720
+ -0.3826834323650898,
721
+ 0.9238795325112867
722
+ ],
723
+ "mesh": 9
724
+ },
725
+ {
726
+ "name": "cube",
727
+ "translation": [
728
+ 0.43797375,
729
+ 0.90625,
730
+ 0.5
731
+ ],
732
+ "rotation": [
733
+ 0,
734
+ 0,
735
+ -0.3826834323650898,
736
+ 0.9238795325112867
737
+ ],
738
+ "mesh": 10
739
+ },
740
+ {
741
+ "name": "cube",
742
+ "translation": [
743
+ 0.49952625,
744
+ 0.71875,
745
+ 0.4375
746
+ ],
747
+ "rotation": [
748
+ -0.3826834323650898,
749
+ 0,
750
+ 0,
751
+ 0.9238795325112867
752
+ ],
753
+ "mesh": 11
754
+ },
755
+ {
756
+ "name": "cube",
757
+ "translation": [
758
+ 0.49952625,
759
+ 1.09375,
760
+ 0.4375
761
+ ],
762
+ "rotation": [
763
+ -0.3826834323650898,
764
+ 0,
765
+ 0,
766
+ 0.9238795325112867
767
+ ],
768
+ "mesh": 12
769
+ },
770
+ {
771
+ "name": "cube",
772
+ "translation": [
773
+ 0.49952625,
774
+ 0.34375,
775
+ 0.5625
776
+ ],
777
+ "rotation": [
778
+ 0.3826834323650898,
779
+ 0,
780
+ 0,
781
+ 0.9238795325112867
782
+ ],
783
+ "mesh": 13
784
+ },
785
+ {
786
+ "name": "cube",
787
+ "translation": [
788
+ 0.49952625,
789
+ 0.71875,
790
+ 0.5625
791
+ ],
792
+ "rotation": [
793
+ 0.3826834323650898,
794
+ 0,
795
+ 0,
796
+ 0.9238795325112867
797
+ ],
798
+ "mesh": 14
799
+ },
800
+ {
801
+ "name": "cube",
802
+ "translation": [
803
+ 0.49952625,
804
+ 1.09375,
805
+ 0.5625
806
+ ],
807
+ "rotation": [
808
+ 0.3826834323650898,
809
+ 0,
810
+ 0,
811
+ 0.9238795325112867
812
+ ],
813
+ "mesh": 15
814
+ }
815
+ ],
816
+ "scenes": [
817
+ {
818
+ "name": "blockbench_export",
819
+ "nodes": [
820
+ 0,
821
+ 1,
822
+ 2,
823
+ 3,
824
+ 4,
825
+ 5,
826
+ 6,
827
+ 7,
828
+ 8,
829
+ 9,
830
+ 10,
831
+ 11,
832
+ 12,
833
+ 13,
834
+ 14,
835
+ 15
836
+ ]
837
+ }
838
+ ],
839
+ "scene": 0
840
+ }