@vxnus/siduri 0.0.7 → 0.0.9

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 (91) hide show
  1. package/README.md +11 -1
  2. package/dist/builtin-manifests.js +12 -12
  3. package/dist/clean-machine-e2e.test.js +12 -12
  4. package/dist/configurators/behavior.d.ts +2 -0
  5. package/dist/configurators/behavior.js +36 -0
  6. package/dist/configurators/body.d.ts +2 -0
  7. package/dist/configurators/body.js +44 -0
  8. package/dist/configurators/brain.d.ts +6 -0
  9. package/dist/configurators/brain.js +80 -0
  10. package/dist/configurators/ear.d.ts +2 -0
  11. package/dist/configurators/ear.js +28 -0
  12. package/dist/configurators/hands.d.ts +2 -0
  13. package/dist/configurators/hands.js +27 -0
  14. package/dist/configurators/index.d.ts +23 -0
  15. package/dist/configurators/index.js +74 -0
  16. package/dist/configurators/knowledge.d.ts +6 -0
  17. package/dist/configurators/knowledge.js +100 -0
  18. package/dist/configurators/memory.d.ts +2 -0
  19. package/dist/configurators/memory.js +44 -0
  20. package/dist/configurators/observation.d.ts +2 -0
  21. package/dist/configurators/observation.js +12 -0
  22. package/dist/configurators/types.d.ts +12 -0
  23. package/dist/configurators/types.js +2 -0
  24. package/dist/configurators/vision.d.ts +2 -0
  25. package/dist/configurators/vision.js +39 -0
  26. package/dist/configurators/voice.d.ts +2 -0
  27. package/dist/configurators/voice.js +53 -0
  28. package/dist/configurators.test.d.ts +1 -0
  29. package/dist/configurators.test.js +275 -0
  30. package/dist/doctor-db.test.js +9 -3
  31. package/dist/generator.d.ts +2 -0
  32. package/dist/generator.js +289 -33
  33. package/dist/generator.test.js +20 -1
  34. package/dist/index.d.ts +16 -0
  35. package/dist/index.js +165 -54
  36. package/dist/providers/knowledge-hub.d.ts +37 -0
  37. package/dist/providers/knowledge-hub.js +141 -0
  38. package/dist/providers/openrouter.d.ts +32 -0
  39. package/dist/providers/openrouter.js +201 -0
  40. package/dist/release-check.js +12 -12
  41. package/dist/web-dist/404/index.html +1 -0
  42. package/dist/web-dist/404.html +1 -0
  43. package/dist/web-dist/__next.__PAGE__.txt +34 -0
  44. package/dist/web-dist/__next._full.txt +27 -0
  45. package/dist/web-dist/__next._tree.txt +3 -0
  46. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_buildManifest.js +11 -0
  47. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_clientMiddlewareManifest.js +1 -0
  48. package/dist/web-dist/_next/static/_zOqKpMPc6RDqk04fUScI/_ssgManifest.js +1 -0
  49. package/dist/web-dist/_next/static/chunks/0cz1d0mv5g_q7.js +1 -0
  50. package/dist/web-dist/_next/static/chunks/0uwih7sydv413.js +1 -0
  51. package/dist/web-dist/_next/static/chunks/1_yae15ffa5f6.js +1 -0
  52. package/dist/web-dist/_next/static/chunks/1hz3jco387c-k.js +1 -0
  53. package/dist/web-dist/_next/static/chunks/2bu5_paf4sm3x.css +1 -0
  54. package/dist/web-dist/_next/static/chunks/2kcqevsmv6kh2.js +31 -0
  55. package/dist/web-dist/_next/static/chunks/2s3d1bfr0l4b0.js +1 -0
  56. package/dist/web-dist/_next/static/chunks/32z87id9k6i2z.js +22 -0
  57. package/dist/web-dist/_next/static/chunks/39nefv-hczfy7.js +30 -0
  58. package/dist/web-dist/_next/static/chunks/3bx2gs3idjmo1.js +1 -0
  59. package/dist/web-dist/_next/static/chunks/turbopack-3eipe4c-imn5l.js +1 -0
  60. package/dist/web-dist/_next/static/media/favicon.2vob68tjqpejf.ico +0 -0
  61. package/dist/web-dist/_not-found/__next._full.txt +17 -0
  62. package/dist/web-dist/_not-found/__next._not-found.__PAGE__.txt +23 -0
  63. package/dist/web-dist/_not-found/__next._tree.txt +3 -0
  64. package/dist/web-dist/_not-found/index.html +1 -0
  65. package/dist/web-dist/_not-found/index.txt +17 -0
  66. package/dist/web-dist/chat/__next._full.txt +18 -0
  67. package/dist/web-dist/chat/__next._tree.txt +3 -0
  68. package/dist/web-dist/chat/__next.chat.__PAGE__.txt +24 -0
  69. package/dist/web-dist/chat/index.html +1 -0
  70. package/dist/web-dist/chat/index.txt +18 -0
  71. package/dist/web-dist/favicon.ico +0 -0
  72. package/dist/web-dist/index.html +1 -0
  73. package/dist/web-dist/index.txt +27 -0
  74. package/dist/web-dist/live2d/akaituno/akaituno.8192/texture_00.png +0 -0
  75. package/dist/web-dist/live2d/akaituno/akaituno.cdi3.json +296 -0
  76. package/dist/web-dist/live2d/akaituno/akaituno.moc3 +0 -0
  77. package/dist/web-dist/live2d/akaituno/akaituno.model3.json +42 -0
  78. package/dist/web-dist/live2d/akaituno/akaituno.physics3.json +839 -0
  79. package/dist/web-dist/live2d/akaituno/eye_color.exp3.json +12 -0
  80. package/dist/web-dist/live2d/akaituno/eyes_zetubou.exp3.json +12 -0
  81. package/dist/web-dist/live2d/akaituno/face_aozame.exp3.json +12 -0
  82. package/dist/web-dist/live2d/akaituno/hair_open.exp3.json +12 -0
  83. package/dist/web-dist/live2d/live2dcubismcore.min.js +9 -0
  84. package/dist/web-dist/operator/__next._full.txt +18 -0
  85. package/dist/web-dist/operator/__next._tree.txt +3 -0
  86. package/dist/web-dist/operator/__next.operator.__PAGE__.txt +24 -0
  87. package/dist/web-dist/operator/index.html +1 -0
  88. package/dist/web-dist/operator/index.txt +18 -0
  89. package/dist/web-template.d.ts +2 -0
  90. package/dist/web-template.js +547 -0
  91. package/package.json +7 -7
@@ -0,0 +1,839 @@
1
+ {
2
+ "Version": 3,
3
+ "Meta": {
4
+ "PhysicsSettingCount": 10,
5
+ "TotalInputCount": 13,
6
+ "TotalOutputCount": 18,
7
+ "VertexCount": 25,
8
+ "Fps": 30,
9
+ "EffectiveForces": {
10
+ "Gravity": {
11
+ "X": 0,
12
+ "Y": -1
13
+ },
14
+ "Wind": {
15
+ "X": 0,
16
+ "Y": 0
17
+ }
18
+ },
19
+ "PhysicsDictionary": [
20
+ {
21
+ "Id": "PhysicsSetting1",
22
+ "Name": "前髪揺れ"
23
+ },
24
+ {
25
+ "Id": "PhysicsSetting2",
26
+ "Name": "もみあげX"
27
+ },
28
+ {
29
+ "Id": "PhysicsSetting3",
30
+ "Name": "もみあげY"
31
+ },
32
+ {
33
+ "Id": "PhysicsSetting4",
34
+ "Name": "イヤリング"
35
+ },
36
+ {
37
+ "Id": "PhysicsSetting5",
38
+ "Name": "フードのフリルX"
39
+ },
40
+ {
41
+ "Id": "PhysicsSetting6",
42
+ "Name": "フードのフリルY"
43
+ },
44
+ {
45
+ "Id": "PhysicsSetting7",
46
+ "Name": "フリルX"
47
+ },
48
+ {
49
+ "Id": "PhysicsSetting8",
50
+ "Name": "フリルY"
51
+ },
52
+ {
53
+ "Id": "PhysicsSetting9",
54
+ "Name": "瞳揺れ→"
55
+ },
56
+ {
57
+ "Id": "PhysicsSetting10",
58
+ "Name": "瞳揺れ←"
59
+ }
60
+ ]
61
+ },
62
+ "PhysicsSettings": [
63
+ {
64
+ "Id": "PhysicsSetting1",
65
+ "Input": [
66
+ {
67
+ "Source": {
68
+ "Target": "Parameter",
69
+ "Id": "ParamAngleX"
70
+ },
71
+ "Weight": 60,
72
+ "Type": "X",
73
+ "Reflect": false
74
+ },
75
+ {
76
+ "Source": {
77
+ "Target": "Parameter",
78
+ "Id": "ParamAngleZ"
79
+ },
80
+ "Weight": 60,
81
+ "Type": "Angle",
82
+ "Reflect": false
83
+ },
84
+ {
85
+ "Source": {
86
+ "Target": "Parameter",
87
+ "Id": "ParamBodyAngleX"
88
+ },
89
+ "Weight": 40,
90
+ "Type": "X",
91
+ "Reflect": false
92
+ },
93
+ {
94
+ "Source": {
95
+ "Target": "Parameter",
96
+ "Id": "ParamBodyAngleZ"
97
+ },
98
+ "Weight": 40,
99
+ "Type": "Angle",
100
+ "Reflect": false
101
+ }
102
+ ],
103
+ "Output": [
104
+ {
105
+ "Destination": {
106
+ "Target": "Parameter",
107
+ "Id": "ParamHairFront"
108
+ },
109
+ "VertexIndex": 1,
110
+ "Scale": 1.193,
111
+ "Weight": 100,
112
+ "Type": "Angle",
113
+ "Reflect": false
114
+ },
115
+ {
116
+ "Destination": {
117
+ "Target": "Parameter",
118
+ "Id": "ParamHairBack"
119
+ },
120
+ "VertexIndex": 1,
121
+ "Scale": 1,
122
+ "Weight": 100,
123
+ "Type": "Angle",
124
+ "Reflect": false
125
+ }
126
+ ],
127
+ "Vertices": [
128
+ {
129
+ "Position": {
130
+ "X": 0,
131
+ "Y": 0
132
+ },
133
+ "Mobility": 1,
134
+ "Delay": 1,
135
+ "Acceleration": 1,
136
+ "Radius": 0
137
+ },
138
+ {
139
+ "Position": {
140
+ "X": 0,
141
+ "Y": 3
142
+ },
143
+ "Mobility": 0.95,
144
+ "Delay": 0.9,
145
+ "Acceleration": 1.5,
146
+ "Radius": 3
147
+ }
148
+ ],
149
+ "Normalization": {
150
+ "Position": {
151
+ "Minimum": -10,
152
+ "Default": 0,
153
+ "Maximum": 10
154
+ },
155
+ "Angle": {
156
+ "Minimum": -10,
157
+ "Default": 0,
158
+ "Maximum": 10
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "Id": "PhysicsSetting2",
164
+ "Input": [
165
+ {
166
+ "Source": {
167
+ "Target": "Parameter",
168
+ "Id": "ParamAngleX"
169
+ },
170
+ "Weight": 100,
171
+ "Type": "X",
172
+ "Reflect": false
173
+ }
174
+ ],
175
+ "Output": [
176
+ {
177
+ "Destination": {
178
+ "Target": "Parameter",
179
+ "Id": "Param"
180
+ },
181
+ "VertexIndex": 1,
182
+ "Scale": 36.27,
183
+ "Weight": 100,
184
+ "Type": "Angle",
185
+ "Reflect": false
186
+ },
187
+ {
188
+ "Destination": {
189
+ "Target": "Parameter",
190
+ "Id": "Param2"
191
+ },
192
+ "VertexIndex": 2,
193
+ "Scale": 30.13,
194
+ "Weight": 100,
195
+ "Type": "Angle",
196
+ "Reflect": false
197
+ }
198
+ ],
199
+ "Vertices": [
200
+ {
201
+ "Position": {
202
+ "X": 0,
203
+ "Y": 0
204
+ },
205
+ "Mobility": 1,
206
+ "Delay": 1,
207
+ "Acceleration": 1,
208
+ "Radius": 0
209
+ },
210
+ {
211
+ "Position": {
212
+ "X": 0,
213
+ "Y": 10
214
+ },
215
+ "Mobility": 0.9,
216
+ "Delay": 0.8,
217
+ "Acceleration": 1.5,
218
+ "Radius": 10
219
+ },
220
+ {
221
+ "Position": {
222
+ "X": 0,
223
+ "Y": 18
224
+ },
225
+ "Mobility": 0.8,
226
+ "Delay": 0.8,
227
+ "Acceleration": 1.5,
228
+ "Radius": 8
229
+ }
230
+ ],
231
+ "Normalization": {
232
+ "Position": {
233
+ "Minimum": -10,
234
+ "Default": 0,
235
+ "Maximum": 10
236
+ },
237
+ "Angle": {
238
+ "Minimum": -10,
239
+ "Default": 0,
240
+ "Maximum": 10
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "Id": "PhysicsSetting3",
246
+ "Input": [
247
+ {
248
+ "Source": {
249
+ "Target": "Parameter",
250
+ "Id": "ParamAngleY"
251
+ },
252
+ "Weight": 100,
253
+ "Type": "X",
254
+ "Reflect": false
255
+ }
256
+ ],
257
+ "Output": [
258
+ {
259
+ "Destination": {
260
+ "Target": "Parameter",
261
+ "Id": "Param3"
262
+ },
263
+ "VertexIndex": 1,
264
+ "Scale": 37.637,
265
+ "Weight": 100,
266
+ "Type": "Angle",
267
+ "Reflect": false
268
+ },
269
+ {
270
+ "Destination": {
271
+ "Target": "Parameter",
272
+ "Id": "Param4"
273
+ },
274
+ "VertexIndex": 2,
275
+ "Scale": 31.009,
276
+ "Weight": 100,
277
+ "Type": "Angle",
278
+ "Reflect": false
279
+ }
280
+ ],
281
+ "Vertices": [
282
+ {
283
+ "Position": {
284
+ "X": 0,
285
+ "Y": 0
286
+ },
287
+ "Mobility": 1,
288
+ "Delay": 1,
289
+ "Acceleration": 1,
290
+ "Radius": 0
291
+ },
292
+ {
293
+ "Position": {
294
+ "X": 0,
295
+ "Y": 10
296
+ },
297
+ "Mobility": 0.9,
298
+ "Delay": 0.8,
299
+ "Acceleration": 1.5,
300
+ "Radius": 10
301
+ },
302
+ {
303
+ "Position": {
304
+ "X": 0,
305
+ "Y": 18
306
+ },
307
+ "Mobility": 0.8,
308
+ "Delay": 0.8,
309
+ "Acceleration": 1.5,
310
+ "Radius": 8
311
+ }
312
+ ],
313
+ "Normalization": {
314
+ "Position": {
315
+ "Minimum": -10,
316
+ "Default": 0,
317
+ "Maximum": 10
318
+ },
319
+ "Angle": {
320
+ "Minimum": -10,
321
+ "Default": 0,
322
+ "Maximum": 10
323
+ }
324
+ }
325
+ },
326
+ {
327
+ "Id": "PhysicsSetting4",
328
+ "Input": [
329
+ {
330
+ "Source": {
331
+ "Target": "Parameter",
332
+ "Id": "ParamAngleX"
333
+ },
334
+ "Weight": 100,
335
+ "Type": "X",
336
+ "Reflect": false
337
+ }
338
+ ],
339
+ "Output": [
340
+ {
341
+ "Destination": {
342
+ "Target": "Parameter",
343
+ "Id": "ParamHairSide"
344
+ },
345
+ "VertexIndex": 1,
346
+ "Scale": 1.425,
347
+ "Weight": 100,
348
+ "Type": "Angle",
349
+ "Reflect": false
350
+ },
351
+ {
352
+ "Destination": {
353
+ "Target": "Parameter",
354
+ "Id": "ParamHairSide2"
355
+ },
356
+ "VertexIndex": 2,
357
+ "Scale": 1.347,
358
+ "Weight": 100,
359
+ "Type": "Angle",
360
+ "Reflect": false
361
+ },
362
+ {
363
+ "Destination": {
364
+ "Target": "Parameter",
365
+ "Id": "ParamHairSide3"
366
+ },
367
+ "VertexIndex": 3,
368
+ "Scale": 1,
369
+ "Weight": 100,
370
+ "Type": "Angle",
371
+ "Reflect": false
372
+ },
373
+ {
374
+ "Destination": {
375
+ "Target": "Parameter",
376
+ "Id": "ParamHairSide4"
377
+ },
378
+ "VertexIndex": 4,
379
+ "Scale": 1,
380
+ "Weight": 100,
381
+ "Type": "Angle",
382
+ "Reflect": false
383
+ }
384
+ ],
385
+ "Vertices": [
386
+ {
387
+ "Position": {
388
+ "X": 0,
389
+ "Y": 0
390
+ },
391
+ "Mobility": 1,
392
+ "Delay": 1,
393
+ "Acceleration": 1,
394
+ "Radius": 0
395
+ },
396
+ {
397
+ "Position": {
398
+ "X": 0,
399
+ "Y": 3
400
+ },
401
+ "Mobility": 0.95,
402
+ "Delay": 0.9,
403
+ "Acceleration": 1.5,
404
+ "Radius": 3
405
+ },
406
+ {
407
+ "Position": {
408
+ "X": 0,
409
+ "Y": 6
410
+ },
411
+ "Mobility": 0.95,
412
+ "Delay": 0.9,
413
+ "Acceleration": 1.5,
414
+ "Radius": 3
415
+ },
416
+ {
417
+ "Position": {
418
+ "X": 0,
419
+ "Y": 9
420
+ },
421
+ "Mobility": 0.95,
422
+ "Delay": 0.9,
423
+ "Acceleration": 1.5,
424
+ "Radius": 3
425
+ },
426
+ {
427
+ "Position": {
428
+ "X": 0,
429
+ "Y": 12
430
+ },
431
+ "Mobility": 0.95,
432
+ "Delay": 0.9,
433
+ "Acceleration": 1.5,
434
+ "Radius": 3
435
+ }
436
+ ],
437
+ "Normalization": {
438
+ "Position": {
439
+ "Minimum": -10,
440
+ "Default": 0,
441
+ "Maximum": 10
442
+ },
443
+ "Angle": {
444
+ "Minimum": -10,
445
+ "Default": 0,
446
+ "Maximum": 10
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "Id": "PhysicsSetting5",
452
+ "Input": [
453
+ {
454
+ "Source": {
455
+ "Target": "Parameter",
456
+ "Id": "ParamAngleX"
457
+ },
458
+ "Weight": 100,
459
+ "Type": "X",
460
+ "Reflect": false
461
+ }
462
+ ],
463
+ "Output": [
464
+ {
465
+ "Destination": {
466
+ "Target": "Parameter",
467
+ "Id": "Param5"
468
+ },
469
+ "VertexIndex": 1,
470
+ "Scale": 46.152,
471
+ "Weight": 100,
472
+ "Type": "Angle",
473
+ "Reflect": false
474
+ }
475
+ ],
476
+ "Vertices": [
477
+ {
478
+ "Position": {
479
+ "X": 0,
480
+ "Y": 0
481
+ },
482
+ "Mobility": 1,
483
+ "Delay": 1,
484
+ "Acceleration": 1,
485
+ "Radius": 0
486
+ },
487
+ {
488
+ "Position": {
489
+ "X": 0,
490
+ "Y": 10
491
+ },
492
+ "Mobility": 0.95,
493
+ "Delay": 0.8,
494
+ "Acceleration": 1.5,
495
+ "Radius": 10
496
+ }
497
+ ],
498
+ "Normalization": {
499
+ "Position": {
500
+ "Minimum": -10,
501
+ "Default": 0,
502
+ "Maximum": 10
503
+ },
504
+ "Angle": {
505
+ "Minimum": -10,
506
+ "Default": 0,
507
+ "Maximum": 10
508
+ }
509
+ }
510
+ },
511
+ {
512
+ "Id": "PhysicsSetting6",
513
+ "Input": [
514
+ {
515
+ "Source": {
516
+ "Target": "Parameter",
517
+ "Id": "ParamAngleY"
518
+ },
519
+ "Weight": 100,
520
+ "Type": "X",
521
+ "Reflect": false
522
+ }
523
+ ],
524
+ "Output": [
525
+ {
526
+ "Destination": {
527
+ "Target": "Parameter",
528
+ "Id": "Param6"
529
+ },
530
+ "VertexIndex": 1,
531
+ "Scale": 50.448,
532
+ "Weight": 100,
533
+ "Type": "Angle",
534
+ "Reflect": false
535
+ }
536
+ ],
537
+ "Vertices": [
538
+ {
539
+ "Position": {
540
+ "X": 0,
541
+ "Y": 0
542
+ },
543
+ "Mobility": 1,
544
+ "Delay": 1,
545
+ "Acceleration": 1,
546
+ "Radius": 0
547
+ },
548
+ {
549
+ "Position": {
550
+ "X": 0,
551
+ "Y": 10
552
+ },
553
+ "Mobility": 0.95,
554
+ "Delay": 0.8,
555
+ "Acceleration": 1.5,
556
+ "Radius": 10
557
+ }
558
+ ],
559
+ "Normalization": {
560
+ "Position": {
561
+ "Minimum": -10,
562
+ "Default": 0,
563
+ "Maximum": 10
564
+ },
565
+ "Angle": {
566
+ "Minimum": -10,
567
+ "Default": 0,
568
+ "Maximum": 10
569
+ }
570
+ }
571
+ },
572
+ {
573
+ "Id": "PhysicsSetting7",
574
+ "Input": [
575
+ {
576
+ "Source": {
577
+ "Target": "Parameter",
578
+ "Id": "ParamAngleX"
579
+ },
580
+ "Weight": 100,
581
+ "Type": "X",
582
+ "Reflect": false
583
+ }
584
+ ],
585
+ "Output": [
586
+ {
587
+ "Destination": {
588
+ "Target": "Parameter",
589
+ "Id": "Param7"
590
+ },
591
+ "VertexIndex": 1,
592
+ "Scale": 39.123,
593
+ "Weight": 100,
594
+ "Type": "Angle",
595
+ "Reflect": false
596
+ }
597
+ ],
598
+ "Vertices": [
599
+ {
600
+ "Position": {
601
+ "X": 0,
602
+ "Y": 0
603
+ },
604
+ "Mobility": 1,
605
+ "Delay": 1,
606
+ "Acceleration": 1,
607
+ "Radius": 0
608
+ },
609
+ {
610
+ "Position": {
611
+ "X": 0,
612
+ "Y": 10
613
+ },
614
+ "Mobility": 0.95,
615
+ "Delay": 0.8,
616
+ "Acceleration": 1.5,
617
+ "Radius": 10
618
+ }
619
+ ],
620
+ "Normalization": {
621
+ "Position": {
622
+ "Minimum": -10,
623
+ "Default": 0,
624
+ "Maximum": 10
625
+ },
626
+ "Angle": {
627
+ "Minimum": -10,
628
+ "Default": 0,
629
+ "Maximum": 10
630
+ }
631
+ }
632
+ },
633
+ {
634
+ "Id": "PhysicsSetting8",
635
+ "Input": [
636
+ {
637
+ "Source": {
638
+ "Target": "Parameter",
639
+ "Id": "ParamAngleY"
640
+ },
641
+ "Weight": 100,
642
+ "Type": "X",
643
+ "Reflect": false
644
+ }
645
+ ],
646
+ "Output": [
647
+ {
648
+ "Destination": {
649
+ "Target": "Parameter",
650
+ "Id": "Param8"
651
+ },
652
+ "VertexIndex": 1,
653
+ "Scale": 39.123,
654
+ "Weight": 100,
655
+ "Type": "Angle",
656
+ "Reflect": false
657
+ }
658
+ ],
659
+ "Vertices": [
660
+ {
661
+ "Position": {
662
+ "X": 0,
663
+ "Y": 0
664
+ },
665
+ "Mobility": 1,
666
+ "Delay": 1,
667
+ "Acceleration": 1,
668
+ "Radius": 0
669
+ },
670
+ {
671
+ "Position": {
672
+ "X": 0,
673
+ "Y": 10
674
+ },
675
+ "Mobility": 0.95,
676
+ "Delay": 0.8,
677
+ "Acceleration": 1.5,
678
+ "Radius": 10
679
+ }
680
+ ],
681
+ "Normalization": {
682
+ "Position": {
683
+ "Minimum": -10,
684
+ "Default": 0,
685
+ "Maximum": 10
686
+ },
687
+ "Angle": {
688
+ "Minimum": -10,
689
+ "Default": 0,
690
+ "Maximum": 10
691
+ }
692
+ }
693
+ },
694
+ {
695
+ "Id": "PhysicsSetting9",
696
+ "Input": [
697
+ {
698
+ "Source": {
699
+ "Target": "Parameter",
700
+ "Id": "ParamEyeROpen"
701
+ },
702
+ "Weight": 100,
703
+ "Type": "X",
704
+ "Reflect": false
705
+ }
706
+ ],
707
+ "Output": [
708
+ {
709
+ "Destination": {
710
+ "Target": "Parameter",
711
+ "Id": "Param16"
712
+ },
713
+ "VertexIndex": 1,
714
+ "Scale": 1,
715
+ "Weight": 100,
716
+ "Type": "Angle",
717
+ "Reflect": false
718
+ },
719
+ {
720
+ "Destination": {
721
+ "Target": "Parameter",
722
+ "Id": "Param14"
723
+ },
724
+ "VertexIndex": 1,
725
+ "Scale": 1,
726
+ "Weight": 100,
727
+ "Type": "Angle",
728
+ "Reflect": false
729
+ }
730
+ ],
731
+ "Vertices": [
732
+ {
733
+ "Position": {
734
+ "X": 0,
735
+ "Y": 0
736
+ },
737
+ "Mobility": 1,
738
+ "Delay": 1,
739
+ "Acceleration": 1,
740
+ "Radius": 0
741
+ },
742
+ {
743
+ "Position": {
744
+ "X": 0,
745
+ "Y": 10
746
+ },
747
+ "Mobility": 0.95,
748
+ "Delay": 0.8,
749
+ "Acceleration": 1,
750
+ "Radius": 10
751
+ }
752
+ ],
753
+ "Normalization": {
754
+ "Position": {
755
+ "Minimum": -10,
756
+ "Default": 0,
757
+ "Maximum": 10
758
+ },
759
+ "Angle": {
760
+ "Minimum": -10,
761
+ "Default": 0,
762
+ "Maximum": 10
763
+ }
764
+ }
765
+ },
766
+ {
767
+ "Id": "PhysicsSetting10",
768
+ "Input": [
769
+ {
770
+ "Source": {
771
+ "Target": "Parameter",
772
+ "Id": "ParamEyeLOpen"
773
+ },
774
+ "Weight": 100,
775
+ "Type": "X",
776
+ "Reflect": false
777
+ }
778
+ ],
779
+ "Output": [
780
+ {
781
+ "Destination": {
782
+ "Target": "Parameter",
783
+ "Id": "Param15"
784
+ },
785
+ "VertexIndex": 1,
786
+ "Scale": 1,
787
+ "Weight": 100,
788
+ "Type": "Angle",
789
+ "Reflect": false
790
+ },
791
+ {
792
+ "Destination": {
793
+ "Target": "Parameter",
794
+ "Id": "Param13"
795
+ },
796
+ "VertexIndex": 1,
797
+ "Scale": 1,
798
+ "Weight": 100,
799
+ "Type": "Angle",
800
+ "Reflect": false
801
+ }
802
+ ],
803
+ "Vertices": [
804
+ {
805
+ "Position": {
806
+ "X": 0,
807
+ "Y": 0
808
+ },
809
+ "Mobility": 1,
810
+ "Delay": 1,
811
+ "Acceleration": 1,
812
+ "Radius": 0
813
+ },
814
+ {
815
+ "Position": {
816
+ "X": 0,
817
+ "Y": 10
818
+ },
819
+ "Mobility": 0.95,
820
+ "Delay": 0.8,
821
+ "Acceleration": 1,
822
+ "Radius": 10
823
+ }
824
+ ],
825
+ "Normalization": {
826
+ "Position": {
827
+ "Minimum": -10,
828
+ "Default": 0,
829
+ "Maximum": 10
830
+ },
831
+ "Angle": {
832
+ "Minimum": -10,
833
+ "Default": 0,
834
+ "Maximum": 10
835
+ }
836
+ }
837
+ }
838
+ ]
839
+ }