@pheem49/mint 1.5.0 → 1.5.2

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 (101) hide show
  1. package/README.md +35 -1
  2. package/main.js +28 -14
  3. package/mint-cli-logic.js +3 -119
  4. package/mint-cli.js +201 -500
  5. package/models/Shiroko_Model/Shiroko/Shiroko_Core/72d86db84cfa9730b894c241fd24c0db.png +0 -0
  6. package/models/Shiroko_Model/Shiroko/Shiroko_Core/items_pinned_to_model.json +14 -0
  7. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/221/206/347/214/253.exp3.json +40 -0
  8. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/221/206/347/214/253/347/234/274/347/217/240/346/221/207/346/231/203.exp3.json +15 -0
  9. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/233/264/350/243/231.exp3.json +10 -0
  10. package/models/Shiroko_Model/Shiroko/Shiroko_Core//346/213/215/347/205/247.exp3.json +50 -0
  11. package/models/Shiroko_Model/Shiroko/Shiroko_Core//346/213/277/347/254/224.exp3.json +10 -0
  12. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/202/271/344/270/200/344/270/213.exp3.json +15 -0
  13. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/214/253/345/222/252/346/273/244/351/225/234.exp3.json +10 -0
  14. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/234/274/351/225/234.exp3.json +10 -0
  15. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_00.png +0 -0
  16. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_01.png +0 -0
  17. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_02.png +0 -0
  18. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_03.png +0 -0
  19. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.cdi3.json +1498 -0
  20. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.moc3 +0 -0
  21. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.model3.json +47 -0
  22. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.physics3.json +6658 -0
  23. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.vtube.json +1299 -0
  24. package/models/Shiroko_Model/Shiroko//342/232/241/351/253/230/344/272/256/342/232/241/344/275/277/347/224/250/346/225/231/347/250/213/344/270/216/346/263/250/346/204/217/344/272/213/351/241/271.txt +23 -0
  25. package/package.json +40 -17
  26. package/src/AI_Brain/Gemini_API.js +147 -46
  27. package/src/AI_Brain/autonomous_brain.js +2 -1
  28. package/src/AI_Brain/memory_store.js +299 -3
  29. package/src/AI_Brain/proactive_engine.js +12 -2
  30. package/src/Automation_Layer/browser_automation.js +26 -24
  31. package/src/CLI/approval_handler.js +42 -0
  32. package/src/CLI/chat_router.js +18 -6
  33. package/src/CLI/chat_ui.js +583 -52
  34. package/src/CLI/cli_colors.js +32 -0
  35. package/src/CLI/cli_formatters.js +89 -0
  36. package/src/CLI/code_agent.js +369 -71
  37. package/src/CLI/image_input.js +90 -0
  38. package/src/CLI/intent_detectors.js +181 -0
  39. package/src/CLI/interactive_chat.js +479 -0
  40. package/src/CLI/list_features.js +3 -0
  41. package/src/CLI/onboarding.js +72 -15
  42. package/src/CLI/repo_summarizer.js +282 -0
  43. package/src/CLI/semantic_code_search.js +312 -0
  44. package/src/CLI/skill_manager.js +41 -0
  45. package/src/CLI/slash_command_handler.js +418 -0
  46. package/src/CLI/symbol_indexer.js +231 -0
  47. package/src/CLI/updater.js +6 -4
  48. package/src/Channels/discord_bridge.js +11 -13
  49. package/src/Channels/line_bridge.js +10 -10
  50. package/src/Channels/slack_bridge.js +7 -12
  51. package/src/Channels/telegram_bridge.js +6 -14
  52. package/src/Channels/whatsapp_bridge.js +11 -9
  53. package/src/System/action_executor.js +59 -10
  54. package/src/System/chat_history_manager.js +20 -12
  55. package/src/System/config_manager.js +31 -1
  56. package/src/System/granular_automation.js +122 -53
  57. package/src/System/optional_require.js +23 -0
  58. package/src/System/proactive_loop.js +19 -3
  59. package/src/System/safety_manager.js +108 -0
  60. package/src/System/sandbox_runner.js +182 -0
  61. package/src/System/system_automation.js +127 -81
  62. package/src/System/system_info.js +70 -0
  63. package/src/System/tool_registry.js +280 -0
  64. package/src/System/window_manager.js +4 -2
  65. package/src/UI/live2d_manager.js +566 -0
  66. package/src/UI/renderer.js +339 -21
  67. package/src/UI/settings.css +655 -420
  68. package/src/UI/settings.html +478 -432
  69. package/src/UI/settings.js +10 -8
  70. package/src/UI/styles.css +516 -31
  71. package/.codex +0 -0
  72. package/docs/assets/Agent_Mint.png +0 -0
  73. package/docs/assets/CLI_Screen.png +0 -0
  74. package/docs/assets/Settings.png +0 -0
  75. package/docs/assets/icon.png +0 -0
  76. package/docs/guide.html +0 -632
  77. package/docs/index.html +0 -133
  78. package/docs/style.css +0 -579
  79. package/index.html +0 -16
  80. package/src/UI/index.html +0 -126
  81. package/tech_news.txt +0 -3
  82. package/test_knowledge.txt +0 -3
  83. package/tests/action_executor_safety.test.js +0 -67
  84. package/tests/agent_orchestrator.test.js +0 -41
  85. package/tests/chat_router.test.js +0 -42
  86. package/tests/code_agent.test.js +0 -69
  87. package/tests/config_manager.test.js +0 -141
  88. package/tests/docker.test.js +0 -46
  89. package/tests/file_operations.test.js +0 -57
  90. package/tests/gmail.test.js +0 -135
  91. package/tests/gmail_auth.test.js +0 -129
  92. package/tests/google_calendar.test.js +0 -113
  93. package/tests/google_tts_urls.test.js +0 -24
  94. package/tests/memory_store.test.js +0 -185
  95. package/tests/notion.test.js +0 -121
  96. package/tests/provider_routing.test.js +0 -83
  97. package/tests/safety_manager.test.js +0 -40
  98. package/tests/spotify.test.js +0 -201
  99. package/tests/system_monitor.test.js +0 -37
  100. package/tests/updater.test.js +0 -32
  101. package/tests/workspace_manager.test.js +0 -56
@@ -0,0 +1,1498 @@
1
+ {
2
+ "Version": 3,
3
+ "Parameters": [
4
+ {
5
+ "Id": "Param54",
6
+ "GroupId": "ParamGroup19",
7
+ "Name": "猫猫贴纸"
8
+ },
9
+ {
10
+ "Id": "Param82",
11
+ "GroupId": "ParamGroup19",
12
+ "Name": "手柄"
13
+ },
14
+ {
15
+ "Id": "Param55",
16
+ "GroupId": "ParamGroup19",
17
+ "Name": "围裙"
18
+ },
19
+ {
20
+ "Id": "Param68",
21
+ "GroupId": "ParamGroup19",
22
+ "Name": "拿笔"
23
+ },
24
+ {
25
+ "Id": "Param91",
26
+ "GroupId": "ParamGroup19",
27
+ "Name": "脸红"
28
+ },
29
+ {
30
+ "Id": "Param92",
31
+ "GroupId": "ParamGroup19",
32
+ "Name": "生气"
33
+ },
34
+ {
35
+ "Id": "Param93",
36
+ "GroupId": "ParamGroup19",
37
+ "Name": "傻饼"
38
+ },
39
+ {
40
+ "Id": "Param94",
41
+ "GroupId": "ParamGroup19",
42
+ "Name": "眼珠摇晃开关"
43
+ },
44
+ {
45
+ "Id": "Param96",
46
+ "GroupId": "ParamGroup19",
47
+ "Name": "眼镜"
48
+ },
49
+ {
50
+ "Id": "Param76",
51
+ "GroupId": "ParamGroup20",
52
+ "Name": "点"
53
+ },
54
+ {
55
+ "Id": "Param77",
56
+ "GroupId": "ParamGroup20",
57
+ "Name": "x"
58
+ },
59
+ {
60
+ "Id": "Param78",
61
+ "GroupId": "ParamGroup20",
62
+ "Name": "y"
63
+ },
64
+ {
65
+ "Id": "Param83",
66
+ "GroupId": "ParamGroup21",
67
+ "Name": "红摇杆x"
68
+ },
69
+ {
70
+ "Id": "Param84",
71
+ "GroupId": "ParamGroup21",
72
+ "Name": "红按键1"
73
+ },
74
+ {
75
+ "Id": "Param85",
76
+ "GroupId": "ParamGroup21",
77
+ "Name": "红按键2"
78
+ },
79
+ {
80
+ "Id": "Param86",
81
+ "GroupId": "ParamGroup21",
82
+ "Name": "蓝遥感"
83
+ },
84
+ {
85
+ "Id": "Param87",
86
+ "GroupId": "ParamGroup21",
87
+ "Name": "蓝按键1"
88
+ },
89
+ {
90
+ "Id": "Param88",
91
+ "GroupId": "ParamGroup21",
92
+ "Name": "蓝按键2"
93
+ },
94
+ {
95
+ "Id": "ParamAngleX",
96
+ "GroupId": "",
97
+ "Name": "角度 X"
98
+ },
99
+ {
100
+ "Id": "ParamAngleY",
101
+ "GroupId": "",
102
+ "Name": "角度 Y"
103
+ },
104
+ {
105
+ "Id": "ParamAngleZ",
106
+ "GroupId": "",
107
+ "Name": "角度 Z"
108
+ },
109
+ {
110
+ "Id": "ParamEyeLOpen",
111
+ "GroupId": "",
112
+ "Name": "左眼 开闭"
113
+ },
114
+ {
115
+ "Id": "ParamEyeLSmile",
116
+ "GroupId": "",
117
+ "Name": "左眼 微笑"
118
+ },
119
+ {
120
+ "Id": "ParamEyeROpen",
121
+ "GroupId": "",
122
+ "Name": "右眼"
123
+ },
124
+ {
125
+ "Id": "ParamEyeRSmile",
126
+ "GroupId": "",
127
+ "Name": "右眼 微笑"
128
+ },
129
+ {
130
+ "Id": "ParamEyeBallX",
131
+ "GroupId": "",
132
+ "Name": "眼珠 X"
133
+ },
134
+ {
135
+ "Id": "ParamEyeBallY",
136
+ "GroupId": "",
137
+ "Name": "眼珠 Y"
138
+ },
139
+ {
140
+ "Id": "ParamBrowLForm",
141
+ "GroupId": "",
142
+ "Name": "左眉 変形"
143
+ },
144
+ {
145
+ "Id": "ParamBrowRForm",
146
+ "GroupId": "",
147
+ "Name": "右眉 変形"
148
+ },
149
+ {
150
+ "Id": "ParamMouthForm",
151
+ "GroupId": "",
152
+ "Name": "嘴 变形"
153
+ },
154
+ {
155
+ "Id": "ParamMouthOpenY",
156
+ "GroupId": "",
157
+ "Name": "嘴 张开和闭合"
158
+ },
159
+ {
160
+ "Id": "Param26",
161
+ "GroupId": "",
162
+ "Name": "嘴x"
163
+ },
164
+ {
165
+ "Id": "Param27",
166
+ "GroupId": "",
167
+ "Name": "嘟嘴"
168
+ },
169
+ {
170
+ "Id": "Param49",
171
+ "GroupId": "",
172
+ "Name": "身体x"
173
+ },
174
+ {
175
+ "Id": "Param50",
176
+ "GroupId": "",
177
+ "Name": "身体z"
178
+ },
179
+ {
180
+ "Id": "Param51",
181
+ "GroupId": "",
182
+ "Name": "身体y"
183
+ },
184
+ {
185
+ "Id": "ParamBreath",
186
+ "GroupId": "",
187
+ "Name": "呼吸"
188
+ },
189
+ {
190
+ "Id": "Param52",
191
+ "GroupId": "ParamGroup18",
192
+ "Name": "蝴蝶结"
193
+ },
194
+ {
195
+ "Id": "Param89",
196
+ "GroupId": "ParamGroup18",
197
+ "Name": "拿笔物理蝴蝶结"
198
+ },
199
+ {
200
+ "Id": "Param90",
201
+ "GroupId": "ParamGroup18",
202
+ "Name": "拿笔花边物理"
203
+ },
204
+ {
205
+ "Id": "Param53",
206
+ "GroupId": "ParamGroup18",
207
+ "Name": "奶x"
208
+ },
209
+ {
210
+ "Id": "Param56",
211
+ "GroupId": "ParamGroup18",
212
+ "Name": "奶y"
213
+ },
214
+ {
215
+ "Id": "Param57",
216
+ "GroupId": "ParamGroup18",
217
+ "Name": "小蝴蝶结"
218
+ },
219
+ {
220
+ "Id": "Param58",
221
+ "GroupId": "ParamGroup18",
222
+ "Name": "左手1"
223
+ },
224
+ {
225
+ "Id": "Param59",
226
+ "GroupId": "ParamGroup18",
227
+ "Name": "左手2"
228
+ },
229
+ {
230
+ "Id": "Param60",
231
+ "GroupId": "ParamGroup18",
232
+ "Name": "左手3"
233
+ },
234
+ {
235
+ "Id": "Param61",
236
+ "GroupId": "ParamGroup18",
237
+ "Name": "左袖子一段"
238
+ },
239
+ {
240
+ "Id": "Param62",
241
+ "GroupId": "ParamGroup18",
242
+ "Name": "左袖子二段"
243
+ },
244
+ {
245
+ "Id": "Param63",
246
+ "GroupId": "ParamGroup18",
247
+ "Name": "左袖子三段"
248
+ },
249
+ {
250
+ "Id": "Param64",
251
+ "GroupId": "ParamGroup18",
252
+ "Name": "左袖子四段"
253
+ },
254
+ {
255
+ "Id": "Param65",
256
+ "GroupId": "ParamGroup18",
257
+ "Name": "左袖子五段"
258
+ },
259
+ {
260
+ "Id": "Param66",
261
+ "GroupId": "ParamGroup18",
262
+ "Name": "蝴蝶结111"
263
+ },
264
+ {
265
+ "Id": "Param67",
266
+ "GroupId": "ParamGroup18",
267
+ "Name": "蝴蝶结22"
268
+ },
269
+ {
270
+ "Id": "Param69",
271
+ "GroupId": "ParamGroup18",
272
+ "Name": "右手1"
273
+ },
274
+ {
275
+ "Id": "Param70",
276
+ "GroupId": "ParamGroup18",
277
+ "Name": "右手2"
278
+ },
279
+ {
280
+ "Id": "Param71",
281
+ "GroupId": "ParamGroup18",
282
+ "Name": "一段"
283
+ },
284
+ {
285
+ "Id": "Param72",
286
+ "GroupId": "ParamGroup18",
287
+ "Name": "二段"
288
+ },
289
+ {
290
+ "Id": "Param73",
291
+ "GroupId": "ParamGroup18",
292
+ "Name": "三段"
293
+ },
294
+ {
295
+ "Id": "Param74",
296
+ "GroupId": "ParamGroup18",
297
+ "Name": "四段"
298
+ },
299
+ {
300
+ "Id": "Param75",
301
+ "GroupId": "ParamGroup18",
302
+ "Name": "五段"
303
+ },
304
+ {
305
+ "Id": "Param79",
306
+ "GroupId": "ParamGroup18",
307
+ "Name": "围裙一段"
308
+ },
309
+ {
310
+ "Id": "Param80",
311
+ "GroupId": "ParamGroup18",
312
+ "Name": "围裙二段"
313
+ },
314
+ {
315
+ "Id": "Param81",
316
+ "GroupId": "ParamGroup18",
317
+ "Name": "围裙y"
318
+ },
319
+ {
320
+ "Id": "Param95",
321
+ "GroupId": "ParamGroup18",
322
+ "Name": "眼珠摇晃"
323
+ },
324
+ {
325
+ "Id": "Param43",
326
+ "GroupId": "ParamGroup3",
327
+ "Name": "左耳1"
328
+ },
329
+ {
330
+ "Id": "Param44",
331
+ "GroupId": "ParamGroup3",
332
+ "Name": "左耳朵2"
333
+ },
334
+ {
335
+ "Id": "Param45",
336
+ "GroupId": "ParamGroup3",
337
+ "Name": "左耳朵3"
338
+ },
339
+ {
340
+ "Id": "Param47",
341
+ "GroupId": "ParamGroup3",
342
+ "Name": "耳朵4"
343
+ },
344
+ {
345
+ "Id": "Param48",
346
+ "GroupId": "ParamGroup3",
347
+ "Name": "耳朵5"
348
+ },
349
+ {
350
+ "Id": "Param46",
351
+ "GroupId": "ParamGroup3",
352
+ "Name": "耳朵6"
353
+ },
354
+ {
355
+ "Id": "Param",
356
+ "GroupId": "ParamGroup",
357
+ "Name": "眼眶"
358
+ },
359
+ {
360
+ "Id": "Param2",
361
+ "GroupId": "ParamGroup",
362
+ "Name": "眼珠"
363
+ },
364
+ {
365
+ "Id": "Param8",
366
+ "GroupId": "ParamGroup",
367
+ "Name": "眼珠a"
368
+ },
369
+ {
370
+ "Id": "Param3",
371
+ "GroupId": "ParamGroup",
372
+ "Name": "眼珠1"
373
+ },
374
+ {
375
+ "Id": "Param4",
376
+ "GroupId": "ParamGroup",
377
+ "Name": "瞳孔"
378
+ },
379
+ {
380
+ "Id": "Param5",
381
+ "GroupId": "ParamGroup",
382
+ "Name": "高光"
383
+ },
384
+ {
385
+ "Id": "Param6",
386
+ "GroupId": "ParamGroup",
387
+ "Name": "高光红"
388
+ },
389
+ {
390
+ "Id": "Param7",
391
+ "GroupId": "ParamGroup",
392
+ "Name": "高光大"
393
+ },
394
+ {
395
+ "Id": "Param9",
396
+ "GroupId": "ParamGroup",
397
+ "Name": "黑高光"
398
+ },
399
+ {
400
+ "Id": "Param21",
401
+ "GroupId": "ParamGroup",
402
+ "Name": "睫毛1"
403
+ },
404
+ {
405
+ "Id": "Param22",
406
+ "GroupId": "ParamGroup",
407
+ "Name": "睫毛2"
408
+ },
409
+ {
410
+ "Id": "Param10",
411
+ "GroupId": "ParamGroup",
412
+ "Name": "眼眶1"
413
+ },
414
+ {
415
+ "Id": "Param19",
416
+ "GroupId": "ParamGroup",
417
+ "Name": "眼珠1"
418
+ },
419
+ {
420
+ "Id": "Param20",
421
+ "GroupId": "ParamGroup",
422
+ "Name": "眼珠a1"
423
+ },
424
+ {
425
+ "Id": "Param25",
426
+ "GroupId": "ParamGroup",
427
+ "Name": "眼珠2"
428
+ },
429
+ {
430
+ "Id": "Param11",
431
+ "GroupId": "ParamGroup",
432
+ "Name": "瞳孔1"
433
+ },
434
+ {
435
+ "Id": "Param12",
436
+ "GroupId": "ParamGroup",
437
+ "Name": "高光1"
438
+ },
439
+ {
440
+ "Id": "Param13",
441
+ "GroupId": "ParamGroup",
442
+ "Name": "高光红1"
443
+ },
444
+ {
445
+ "Id": "Param14",
446
+ "GroupId": "ParamGroup",
447
+ "Name": "高光大1"
448
+ },
449
+ {
450
+ "Id": "Param15",
451
+ "GroupId": "ParamGroup",
452
+ "Name": "黑高光1"
453
+ },
454
+ {
455
+ "Id": "Param23",
456
+ "GroupId": "ParamGroup",
457
+ "Name": "睫毛3"
458
+ },
459
+ {
460
+ "Id": "Param24",
461
+ "GroupId": "ParamGroup",
462
+ "Name": "睫毛4"
463
+ },
464
+ {
465
+ "Id": "Param28",
466
+ "GroupId": "ParamGroup2",
467
+ "Name": "前发1"
468
+ },
469
+ {
470
+ "Id": "Param29",
471
+ "GroupId": "ParamGroup2",
472
+ "Name": "前发2"
473
+ },
474
+ {
475
+ "Id": "Param16",
476
+ "GroupId": "ParamGroup2",
477
+ "Name": "前发3"
478
+ },
479
+ {
480
+ "Id": "Param17",
481
+ "GroupId": "ParamGroup2",
482
+ "Name": "前侧左"
483
+ },
484
+ {
485
+ "Id": "Param18",
486
+ "GroupId": "ParamGroup2",
487
+ "Name": "前侧左2"
488
+ },
489
+ {
490
+ "Id": "Param30",
491
+ "GroupId": "ParamGroup2",
492
+ "Name": "前左侧3"
493
+ },
494
+ {
495
+ "Id": "Param31",
496
+ "GroupId": "ParamGroup2",
497
+ "Name": "前左侧4"
498
+ },
499
+ {
500
+ "Id": "Param32",
501
+ "GroupId": "ParamGroup2",
502
+ "Name": "前左侧5"
503
+ },
504
+ {
505
+ "Id": "Param33",
506
+ "GroupId": "ParamGroup2",
507
+ "Name": "侧发右1"
508
+ },
509
+ {
510
+ "Id": "Param34",
511
+ "GroupId": "ParamGroup2",
512
+ "Name": "侧发右2"
513
+ },
514
+ {
515
+ "Id": "Param35",
516
+ "GroupId": "ParamGroup2",
517
+ "Name": "侧发右3"
518
+ },
519
+ {
520
+ "Id": "Param36",
521
+ "GroupId": "ParamGroup2",
522
+ "Name": "侧发右4"
523
+ },
524
+ {
525
+ "Id": "Param37",
526
+ "GroupId": "ParamGroup2",
527
+ "Name": "鬓角1"
528
+ },
529
+ {
530
+ "Id": "Param38",
531
+ "GroupId": "ParamGroup2",
532
+ "Name": "鬓角2"
533
+ },
534
+ {
535
+ "Id": "Param39",
536
+ "GroupId": "ParamGroup2",
537
+ "Name": "鬓角3"
538
+ },
539
+ {
540
+ "Id": "Param40",
541
+ "GroupId": "ParamGroup2",
542
+ "Name": "鬓角4"
543
+ },
544
+ {
545
+ "Id": "Param41",
546
+ "GroupId": "ParamGroup2",
547
+ "Name": "鬓角5"
548
+ },
549
+ {
550
+ "Id": "Param42",
551
+ "GroupId": "ParamGroup2",
552
+ "Name": "鬓角6"
553
+ },
554
+ {
555
+ "Id": "Param_Angle_Rotation_1_ArtMesh104",
556
+ "GroupId": "ParamGroup4",
557
+ "Name": "[0]左辫子"
558
+ },
559
+ {
560
+ "Id": "Param_Angle_Rotation_2_ArtMesh104",
561
+ "GroupId": "ParamGroup4",
562
+ "Name": "[1]左辫子"
563
+ },
564
+ {
565
+ "Id": "Param_Angle_Rotation_3_ArtMesh104",
566
+ "GroupId": "ParamGroup4",
567
+ "Name": "[2]左辫子"
568
+ },
569
+ {
570
+ "Id": "Param_Angle_Rotation_4_ArtMesh104",
571
+ "GroupId": "ParamGroup4",
572
+ "Name": "[3]左辫子"
573
+ },
574
+ {
575
+ "Id": "Param_Angle_Rotation_5_ArtMesh104",
576
+ "GroupId": "ParamGroup4",
577
+ "Name": "[4]左辫子"
578
+ },
579
+ {
580
+ "Id": "Param_Angle_Rotation_6_ArtMesh104",
581
+ "GroupId": "ParamGroup4",
582
+ "Name": "[5]左辫子"
583
+ },
584
+ {
585
+ "Id": "Param_Angle_Rotation_7_ArtMesh104",
586
+ "GroupId": "ParamGroup4",
587
+ "Name": "[6]左辫子"
588
+ },
589
+ {
590
+ "Id": "Param_Angle_Rotation_8_ArtMesh104",
591
+ "GroupId": "ParamGroup4",
592
+ "Name": "[7]左辫子"
593
+ },
594
+ {
595
+ "Id": "Param_Angle_Rotation_9_ArtMesh104",
596
+ "GroupId": "ParamGroup4",
597
+ "Name": "[8]左辫子"
598
+ },
599
+ {
600
+ "Id": "Param_Angle_Rotation_1_ArtMesh105",
601
+ "GroupId": "ParamGroup5",
602
+ "Name": "[0]右辫子"
603
+ },
604
+ {
605
+ "Id": "Param_Angle_Rotation_2_ArtMesh105",
606
+ "GroupId": "ParamGroup5",
607
+ "Name": "[1]右辫子"
608
+ },
609
+ {
610
+ "Id": "Param_Angle_Rotation_3_ArtMesh105",
611
+ "GroupId": "ParamGroup5",
612
+ "Name": "[2]右辫子"
613
+ },
614
+ {
615
+ "Id": "Param_Angle_Rotation_4_ArtMesh105",
616
+ "GroupId": "ParamGroup5",
617
+ "Name": "[3]右辫子"
618
+ },
619
+ {
620
+ "Id": "Param_Angle_Rotation_5_ArtMesh105",
621
+ "GroupId": "ParamGroup5",
622
+ "Name": "[4]右辫子"
623
+ },
624
+ {
625
+ "Id": "Param_Angle_Rotation_6_ArtMesh105",
626
+ "GroupId": "ParamGroup5",
627
+ "Name": "[5]右辫子"
628
+ },
629
+ {
630
+ "Id": "Param_Angle_Rotation_7_ArtMesh105",
631
+ "GroupId": "ParamGroup5",
632
+ "Name": "[6]右辫子"
633
+ },
634
+ {
635
+ "Id": "Param_Angle_Rotation_8_ArtMesh105",
636
+ "GroupId": "ParamGroup5",
637
+ "Name": "[7]右辫子"
638
+ },
639
+ {
640
+ "Id": "Param_Angle_Rotation_9_ArtMesh105",
641
+ "GroupId": "ParamGroup5",
642
+ "Name": "[8]右辫子"
643
+ },
644
+ {
645
+ "Id": "Param_Angle_Rotation_1_ArtMesh43",
646
+ "GroupId": "ParamGroup6",
647
+ "Name": "[0]图层1"
648
+ },
649
+ {
650
+ "Id": "Param_Angle_Rotation_2_ArtMesh43",
651
+ "GroupId": "ParamGroup6",
652
+ "Name": "[1]图层1"
653
+ },
654
+ {
655
+ "Id": "Param_Angle_Rotation_3_ArtMesh43",
656
+ "GroupId": "ParamGroup6",
657
+ "Name": "[2]图层1"
658
+ },
659
+ {
660
+ "Id": "Param_Angle_Rotation_4_ArtMesh43",
661
+ "GroupId": "ParamGroup6",
662
+ "Name": "[3]图层1"
663
+ },
664
+ {
665
+ "Id": "Param_Angle_Rotation_5_ArtMesh43",
666
+ "GroupId": "ParamGroup6",
667
+ "Name": "[4]图层1"
668
+ },
669
+ {
670
+ "Id": "Param_Angle_Rotation_6_ArtMesh43",
671
+ "GroupId": "ParamGroup6",
672
+ "Name": "[5]图层1"
673
+ },
674
+ {
675
+ "Id": "Param_Angle_Rotation_7_ArtMesh43",
676
+ "GroupId": "ParamGroup6",
677
+ "Name": "[6]图层1"
678
+ },
679
+ {
680
+ "Id": "Param_Angle_Rotation_1_ArtMesh20",
681
+ "GroupId": "ParamGroup7",
682
+ "Name": "[0]图层1"
683
+ },
684
+ {
685
+ "Id": "Param_Angle_Rotation_2_ArtMesh20",
686
+ "GroupId": "ParamGroup7",
687
+ "Name": "[1]图层1"
688
+ },
689
+ {
690
+ "Id": "Param_Angle_Rotation_3_ArtMesh20",
691
+ "GroupId": "ParamGroup7",
692
+ "Name": "[2]图层1"
693
+ },
694
+ {
695
+ "Id": "Param_Angle_Rotation_4_ArtMesh20",
696
+ "GroupId": "ParamGroup7",
697
+ "Name": "[3]图层1"
698
+ },
699
+ {
700
+ "Id": "Param_Angle_Rotation_5_ArtMesh20",
701
+ "GroupId": "ParamGroup7",
702
+ "Name": "[4]图层1"
703
+ },
704
+ {
705
+ "Id": "Param_Angle_Rotation_6_ArtMesh20",
706
+ "GroupId": "ParamGroup7",
707
+ "Name": "[5]图层1"
708
+ },
709
+ {
710
+ "Id": "Param_Angle_Rotation_7_ArtMesh20",
711
+ "GroupId": "ParamGroup7",
712
+ "Name": "[6]图层1"
713
+ },
714
+ {
715
+ "Id": "Param_Angle_Rotation_1_ArtMesh22",
716
+ "GroupId": "ParamGroup8",
717
+ "Name": "[0]图层2"
718
+ },
719
+ {
720
+ "Id": "Param_Angle_Rotation_2_ArtMesh22",
721
+ "GroupId": "ParamGroup8",
722
+ "Name": "[1]图层2"
723
+ },
724
+ {
725
+ "Id": "Param_Angle_Rotation_3_ArtMesh22",
726
+ "GroupId": "ParamGroup8",
727
+ "Name": "[2]图层2"
728
+ },
729
+ {
730
+ "Id": "Param_Angle_Rotation_4_ArtMesh22",
731
+ "GroupId": "ParamGroup8",
732
+ "Name": "[3]图层2"
733
+ },
734
+ {
735
+ "Id": "Param_Angle_Rotation_5_ArtMesh22",
736
+ "GroupId": "ParamGroup8",
737
+ "Name": "[4]图层2"
738
+ },
739
+ {
740
+ "Id": "Param_Angle_Rotation_6_ArtMesh22",
741
+ "GroupId": "ParamGroup8",
742
+ "Name": "[5]图层2"
743
+ },
744
+ {
745
+ "Id": "Param_Angle_Rotation_7_ArtMesh22",
746
+ "GroupId": "ParamGroup8",
747
+ "Name": "[6]图层2"
748
+ },
749
+ {
750
+ "Id": "Param_Angle_Rotation_1_ArtMesh23",
751
+ "GroupId": "ParamGroup9",
752
+ "Name": "[0]图层3"
753
+ },
754
+ {
755
+ "Id": "Param_Angle_Rotation_2_ArtMesh23",
756
+ "GroupId": "ParamGroup9",
757
+ "Name": "[1]图层3"
758
+ },
759
+ {
760
+ "Id": "Param_Angle_Rotation_3_ArtMesh23",
761
+ "GroupId": "ParamGroup9",
762
+ "Name": "[2]图层3"
763
+ },
764
+ {
765
+ "Id": "Param_Angle_Rotation_4_ArtMesh23",
766
+ "GroupId": "ParamGroup9",
767
+ "Name": "[3]图层3"
768
+ },
769
+ {
770
+ "Id": "Param_Angle_Rotation_5_ArtMesh23",
771
+ "GroupId": "ParamGroup9",
772
+ "Name": "[4]图层3"
773
+ },
774
+ {
775
+ "Id": "Param_Angle_Rotation_6_ArtMesh23",
776
+ "GroupId": "ParamGroup9",
777
+ "Name": "[5]图层3"
778
+ },
779
+ {
780
+ "Id": "Param_Angle_Rotation_7_ArtMesh23",
781
+ "GroupId": "ParamGroup9",
782
+ "Name": "[6]图层3"
783
+ },
784
+ {
785
+ "Id": "Param_Angle_Rotation_1_ArtMesh26",
786
+ "GroupId": "ParamGroup10",
787
+ "Name": "[0]图层6"
788
+ },
789
+ {
790
+ "Id": "Param_Angle_Rotation_2_ArtMesh26",
791
+ "GroupId": "ParamGroup10",
792
+ "Name": "[1]图层6"
793
+ },
794
+ {
795
+ "Id": "Param_Angle_Rotation_3_ArtMesh26",
796
+ "GroupId": "ParamGroup10",
797
+ "Name": "[2]图层6"
798
+ },
799
+ {
800
+ "Id": "Param_Angle_Rotation_4_ArtMesh26",
801
+ "GroupId": "ParamGroup10",
802
+ "Name": "[3]图层6"
803
+ },
804
+ {
805
+ "Id": "Param_Angle_Rotation_5_ArtMesh26",
806
+ "GroupId": "ParamGroup10",
807
+ "Name": "[4]图层6"
808
+ },
809
+ {
810
+ "Id": "Param_Angle_Rotation_6_ArtMesh26",
811
+ "GroupId": "ParamGroup10",
812
+ "Name": "[5]图层6"
813
+ },
814
+ {
815
+ "Id": "Param_Angle_Rotation_7_ArtMesh26",
816
+ "GroupId": "ParamGroup10",
817
+ "Name": "[6]图层6"
818
+ },
819
+ {
820
+ "Id": "Param_Angle_Rotation_1_ArtMesh27",
821
+ "GroupId": "ParamGroup11",
822
+ "Name": "[0]图层7"
823
+ },
824
+ {
825
+ "Id": "Param_Angle_Rotation_2_ArtMesh27",
826
+ "GroupId": "ParamGroup11",
827
+ "Name": "[1]图层7"
828
+ },
829
+ {
830
+ "Id": "Param_Angle_Rotation_3_ArtMesh27",
831
+ "GroupId": "ParamGroup11",
832
+ "Name": "[2]图层7"
833
+ },
834
+ {
835
+ "Id": "Param_Angle_Rotation_4_ArtMesh27",
836
+ "GroupId": "ParamGroup11",
837
+ "Name": "[3]图层7"
838
+ },
839
+ {
840
+ "Id": "Param_Angle_Rotation_5_ArtMesh27",
841
+ "GroupId": "ParamGroup11",
842
+ "Name": "[4]图层7"
843
+ },
844
+ {
845
+ "Id": "Param_Angle_Rotation_6_ArtMesh27",
846
+ "GroupId": "ParamGroup11",
847
+ "Name": "[5]图层7"
848
+ },
849
+ {
850
+ "Id": "Param_Angle_Rotation_7_ArtMesh27",
851
+ "GroupId": "ParamGroup11",
852
+ "Name": "[6]图层7"
853
+ },
854
+ {
855
+ "Id": "Param_Angle_Rotation_1_ArtMesh31",
856
+ "GroupId": "ParamGroup12",
857
+ "Name": "[0]图层11"
858
+ },
859
+ {
860
+ "Id": "Param_Angle_Rotation_2_ArtMesh31",
861
+ "GroupId": "ParamGroup12",
862
+ "Name": "[1]图层11"
863
+ },
864
+ {
865
+ "Id": "Param_Angle_Rotation_3_ArtMesh31",
866
+ "GroupId": "ParamGroup12",
867
+ "Name": "[2]图层11"
868
+ },
869
+ {
870
+ "Id": "Param_Angle_Rotation_4_ArtMesh31",
871
+ "GroupId": "ParamGroup12",
872
+ "Name": "[3]图层11"
873
+ },
874
+ {
875
+ "Id": "Param_Angle_Rotation_5_ArtMesh31",
876
+ "GroupId": "ParamGroup12",
877
+ "Name": "[4]图层11"
878
+ },
879
+ {
880
+ "Id": "Param_Angle_Rotation_6_ArtMesh31",
881
+ "GroupId": "ParamGroup12",
882
+ "Name": "[5]图层11"
883
+ },
884
+ {
885
+ "Id": "Param_Angle_Rotation_7_ArtMesh31",
886
+ "GroupId": "ParamGroup12",
887
+ "Name": "[6]图层11"
888
+ },
889
+ {
890
+ "Id": "Param_Angle_Rotation_1_ArtMesh215",
891
+ "GroupId": "ParamGroup13",
892
+ "Name": "[0]图层418"
893
+ },
894
+ {
895
+ "Id": "Param_Angle_Rotation_2_ArtMesh215",
896
+ "GroupId": "ParamGroup13",
897
+ "Name": "[1]图层418"
898
+ },
899
+ {
900
+ "Id": "Param_Angle_Rotation_3_ArtMesh215",
901
+ "GroupId": "ParamGroup13",
902
+ "Name": "[2]图层418"
903
+ },
904
+ {
905
+ "Id": "Param_Angle_Rotation_4_ArtMesh215",
906
+ "GroupId": "ParamGroup13",
907
+ "Name": "[3]图层418"
908
+ },
909
+ {
910
+ "Id": "Param_Angle_Rotation_5_ArtMesh215",
911
+ "GroupId": "ParamGroup13",
912
+ "Name": "[4]图层418"
913
+ },
914
+ {
915
+ "Id": "Param_Angle_Rotation_6_ArtMesh215",
916
+ "GroupId": "ParamGroup13",
917
+ "Name": "[5]图层418"
918
+ },
919
+ {
920
+ "Id": "Param_Angle_Rotation_7_ArtMesh215",
921
+ "GroupId": "ParamGroup13",
922
+ "Name": "[6]图层418"
923
+ },
924
+ {
925
+ "Id": "Param_Angle_Rotation_8_ArtMesh215",
926
+ "GroupId": "ParamGroup13",
927
+ "Name": "[7]图层418"
928
+ },
929
+ {
930
+ "Id": "Param_Angle_Rotation_9_ArtMesh215",
931
+ "GroupId": "ParamGroup13",
932
+ "Name": "[8]图层418"
933
+ },
934
+ {
935
+ "Id": "Param_Angle_Rotation_1_ArtMesh216",
936
+ "GroupId": "ParamGroup14",
937
+ "Name": "[0]图层 164"
938
+ },
939
+ {
940
+ "Id": "Param_Angle_Rotation_2_ArtMesh216",
941
+ "GroupId": "ParamGroup14",
942
+ "Name": "[1]图层 164"
943
+ },
944
+ {
945
+ "Id": "Param_Angle_Rotation_3_ArtMesh216",
946
+ "GroupId": "ParamGroup14",
947
+ "Name": "[2]图层 164"
948
+ },
949
+ {
950
+ "Id": "Param_Angle_Rotation_4_ArtMesh216",
951
+ "GroupId": "ParamGroup14",
952
+ "Name": "[3]图层 164"
953
+ },
954
+ {
955
+ "Id": "Param_Angle_Rotation_5_ArtMesh216",
956
+ "GroupId": "ParamGroup14",
957
+ "Name": "[4]图层 164"
958
+ },
959
+ {
960
+ "Id": "Param_Angle_Rotation_6_ArtMesh216",
961
+ "GroupId": "ParamGroup14",
962
+ "Name": "[5]图层 164"
963
+ },
964
+ {
965
+ "Id": "Param_Angle_Rotation_7_ArtMesh216",
966
+ "GroupId": "ParamGroup14",
967
+ "Name": "[6]图层 164"
968
+ },
969
+ {
970
+ "Id": "Param_Angle_Rotation_8_ArtMesh216",
971
+ "GroupId": "ParamGroup14",
972
+ "Name": "[7]图层 164"
973
+ },
974
+ {
975
+ "Id": "Param_Angle_Rotation_9_ArtMesh216",
976
+ "GroupId": "ParamGroup14",
977
+ "Name": "[8]图层 164"
978
+ },
979
+ {
980
+ "Id": "Param_Angle_Rotation_1_ArtMesh213",
981
+ "GroupId": "ParamGroup15",
982
+ "Name": "[0]图层417"
983
+ },
984
+ {
985
+ "Id": "Param_Angle_Rotation_2_ArtMesh213",
986
+ "GroupId": "ParamGroup15",
987
+ "Name": "[1]图层417"
988
+ },
989
+ {
990
+ "Id": "Param_Angle_Rotation_3_ArtMesh213",
991
+ "GroupId": "ParamGroup15",
992
+ "Name": "[2]图层417"
993
+ },
994
+ {
995
+ "Id": "Param_Angle_Rotation_4_ArtMesh213",
996
+ "GroupId": "ParamGroup15",
997
+ "Name": "[3]图层417"
998
+ },
999
+ {
1000
+ "Id": "Param_Angle_Rotation_5_ArtMesh213",
1001
+ "GroupId": "ParamGroup15",
1002
+ "Name": "[4]图层417"
1003
+ },
1004
+ {
1005
+ "Id": "Param_Angle_Rotation_1_ArtMesh214",
1006
+ "GroupId": "ParamGroup16",
1007
+ "Name": "[0]图层 163"
1008
+ },
1009
+ {
1010
+ "Id": "Param_Angle_Rotation_2_ArtMesh214",
1011
+ "GroupId": "ParamGroup16",
1012
+ "Name": "[1]图层 163"
1013
+ },
1014
+ {
1015
+ "Id": "Param_Angle_Rotation_3_ArtMesh214",
1016
+ "GroupId": "ParamGroup16",
1017
+ "Name": "[2]图层 163"
1018
+ },
1019
+ {
1020
+ "Id": "Param_Angle_Rotation_4_ArtMesh214",
1021
+ "GroupId": "ParamGroup16",
1022
+ "Name": "[3]图层 163"
1023
+ },
1024
+ {
1025
+ "Id": "Param_Angle_Rotation_5_ArtMesh214",
1026
+ "GroupId": "ParamGroup16",
1027
+ "Name": "[4]图层 163"
1028
+ },
1029
+ {
1030
+ "Id": "Param_Angle_Rotation_1_ArtMesh217",
1031
+ "GroupId": "ParamGroup17",
1032
+ "Name": "[0]尾巴"
1033
+ },
1034
+ {
1035
+ "Id": "Param_Angle_Rotation_2_ArtMesh217",
1036
+ "GroupId": "ParamGroup17",
1037
+ "Name": "[1]尾巴"
1038
+ },
1039
+ {
1040
+ "Id": "Param_Angle_Rotation_3_ArtMesh217",
1041
+ "GroupId": "ParamGroup17",
1042
+ "Name": "[2]尾巴"
1043
+ },
1044
+ {
1045
+ "Id": "Param_Angle_Rotation_4_ArtMesh217",
1046
+ "GroupId": "ParamGroup17",
1047
+ "Name": "[3]尾巴"
1048
+ },
1049
+ {
1050
+ "Id": "Param_Angle_Rotation_5_ArtMesh217",
1051
+ "GroupId": "ParamGroup17",
1052
+ "Name": "[4]尾巴"
1053
+ },
1054
+ {
1055
+ "Id": "Param_Angle_Rotation_6_ArtMesh217",
1056
+ "GroupId": "ParamGroup17",
1057
+ "Name": "[5]尾巴"
1058
+ },
1059
+ {
1060
+ "Id": "Param_Angle_Rotation_7_ArtMesh217",
1061
+ "GroupId": "ParamGroup17",
1062
+ "Name": "[6]尾巴"
1063
+ },
1064
+ {
1065
+ "Id": "Param_Angle_Rotation_8_ArtMesh217",
1066
+ "GroupId": "ParamGroup17",
1067
+ "Name": "[7]尾巴"
1068
+ },
1069
+ {
1070
+ "Id": "Param_Angle_Rotation_9_ArtMesh217",
1071
+ "GroupId": "ParamGroup17",
1072
+ "Name": "[8]尾巴"
1073
+ }
1074
+ ],
1075
+ "ParameterGroups": [
1076
+ {
1077
+ "Id": "ParamGroup19",
1078
+ "GroupId": "",
1079
+ "Name": "按键"
1080
+ },
1081
+ {
1082
+ "Id": "ParamGroup20",
1083
+ "GroupId": "",
1084
+ "Name": "笔捕捉"
1085
+ },
1086
+ {
1087
+ "Id": "ParamGroup21",
1088
+ "GroupId": "",
1089
+ "Name": "手柄映射"
1090
+ },
1091
+ {
1092
+ "Id": "ParamGroup18",
1093
+ "GroupId": "",
1094
+ "Name": "身体物理"
1095
+ },
1096
+ {
1097
+ "Id": "ParamGroup3",
1098
+ "GroupId": "",
1099
+ "Name": "耳朵"
1100
+ },
1101
+ {
1102
+ "Id": "ParamGroup",
1103
+ "GroupId": "",
1104
+ "Name": "眼睛物理"
1105
+ },
1106
+ {
1107
+ "Id": "ParamGroup2",
1108
+ "GroupId": "",
1109
+ "Name": "头发"
1110
+ },
1111
+ {
1112
+ "Id": "ParamGroup4",
1113
+ "GroupId": "",
1114
+ "Name": "左辫子"
1115
+ },
1116
+ {
1117
+ "Id": "ParamGroup5",
1118
+ "GroupId": "",
1119
+ "Name": "右辫子"
1120
+ },
1121
+ {
1122
+ "Id": "ParamGroup6",
1123
+ "GroupId": "",
1124
+ "Name": "图层1"
1125
+ },
1126
+ {
1127
+ "Id": "ParamGroup7",
1128
+ "GroupId": "",
1129
+ "Name": "图层1"
1130
+ },
1131
+ {
1132
+ "Id": "ParamGroup8",
1133
+ "GroupId": "",
1134
+ "Name": "图层2"
1135
+ },
1136
+ {
1137
+ "Id": "ParamGroup9",
1138
+ "GroupId": "",
1139
+ "Name": "图层3"
1140
+ },
1141
+ {
1142
+ "Id": "ParamGroup10",
1143
+ "GroupId": "",
1144
+ "Name": "图层6"
1145
+ },
1146
+ {
1147
+ "Id": "ParamGroup11",
1148
+ "GroupId": "",
1149
+ "Name": "图层7"
1150
+ },
1151
+ {
1152
+ "Id": "ParamGroup12",
1153
+ "GroupId": "",
1154
+ "Name": "图层11"
1155
+ },
1156
+ {
1157
+ "Id": "ParamGroup13",
1158
+ "GroupId": "",
1159
+ "Name": "图层418"
1160
+ },
1161
+ {
1162
+ "Id": "ParamGroup14",
1163
+ "GroupId": "",
1164
+ "Name": "图层 164"
1165
+ },
1166
+ {
1167
+ "Id": "ParamGroup15",
1168
+ "GroupId": "",
1169
+ "Name": "图层417"
1170
+ },
1171
+ {
1172
+ "Id": "ParamGroup16",
1173
+ "GroupId": "",
1174
+ "Name": "图层 163"
1175
+ },
1176
+ {
1177
+ "Id": "ParamGroup17",
1178
+ "GroupId": "",
1179
+ "Name": "尾巴"
1180
+ }
1181
+ ],
1182
+ "Parts": [
1183
+ {
1184
+ "Id": "Part",
1185
+ "Name": "文件夹2"
1186
+ },
1187
+ {
1188
+ "Id": "Part17",
1189
+ "Name": "文件夹1"
1190
+ },
1191
+ {
1192
+ "Id": "Part40",
1193
+ "Name": "后发"
1194
+ },
1195
+ {
1196
+ "Id": "ArtMesh43_Skinning",
1197
+ "Name": "图层1(蒙皮)"
1198
+ },
1199
+ {
1200
+ "Id": "Part43",
1201
+ "Name": "图层1(旋转)"
1202
+ },
1203
+ {
1204
+ "Id": "ArtMesh20_Skinning",
1205
+ "Name": "图层1(蒙皮)"
1206
+ },
1207
+ {
1208
+ "Id": "Part44",
1209
+ "Name": "图层1(旋转)"
1210
+ },
1211
+ {
1212
+ "Id": "ArtMesh22_Skinning",
1213
+ "Name": "图层2(蒙皮)"
1214
+ },
1215
+ {
1216
+ "Id": "Part45",
1217
+ "Name": "图层2(旋转)"
1218
+ },
1219
+ {
1220
+ "Id": "ArtMesh23_Skinning",
1221
+ "Name": "图层3(蒙皮)"
1222
+ },
1223
+ {
1224
+ "Id": "Part48",
1225
+ "Name": "图层3(旋转)"
1226
+ },
1227
+ {
1228
+ "Id": "Part12",
1229
+ "Name": "部件42"
1230
+ },
1231
+ {
1232
+ "Id": "Part46",
1233
+ "Name": "帽子"
1234
+ },
1235
+ {
1236
+ "Id": "Part47",
1237
+ "Name": "帽子后组"
1238
+ },
1239
+ {
1240
+ "Id": "ArtMesh217_Skinning",
1241
+ "Name": "尾巴(蒙皮)"
1242
+ },
1243
+ {
1244
+ "Id": "Part56",
1245
+ "Name": "尾巴(旋转)"
1246
+ },
1247
+ {
1248
+ "Id": "PartSketch0",
1249
+ "Name": "[ 参考图 ]"
1250
+ },
1251
+ {
1252
+ "Id": "Part3",
1253
+ "Name": "遮盖"
1254
+ },
1255
+ {
1256
+ "Id": "Part2",
1257
+ "Name": "手柄手"
1258
+ },
1259
+ {
1260
+ "Id": "Part4",
1261
+ "Name": "文件夹50"
1262
+ },
1263
+ {
1264
+ "Id": "Part5",
1265
+ "Name": "头发阴影"
1266
+ },
1267
+ {
1268
+ "Id": "Part6",
1269
+ "Name": "五官"
1270
+ },
1271
+ {
1272
+ "Id": "Part13",
1273
+ "Name": "脸"
1274
+ },
1275
+ {
1276
+ "Id": "ArtMesh104_Skinning",
1277
+ "Name": "左辫子(蒙皮)"
1278
+ },
1279
+ {
1280
+ "Id": "Part41",
1281
+ "Name": "左辫子(旋转)"
1282
+ },
1283
+ {
1284
+ "Id": "ArtMesh105_Skinning",
1285
+ "Name": "右辫子(蒙皮)"
1286
+ },
1287
+ {
1288
+ "Id": "Part42",
1289
+ "Name": "右辫子(旋转)"
1290
+ },
1291
+ {
1292
+ "Id": "Part16",
1293
+ "Name": "耳朵"
1294
+ },
1295
+ {
1296
+ "Id": "Part18",
1297
+ "Name": "蝴蝶结"
1298
+ },
1299
+ {
1300
+ "Id": "Part19",
1301
+ "Name": "领子"
1302
+ },
1303
+ {
1304
+ "Id": "Part20",
1305
+ "Name": "脖子"
1306
+ },
1307
+ {
1308
+ "Id": "Part21",
1309
+ "Name": "右手袖子"
1310
+ },
1311
+ {
1312
+ "Id": "Part26",
1313
+ "Name": "拿笔右手"
1314
+ },
1315
+ {
1316
+ "Id": "Part31",
1317
+ "Name": "右腿蝴蝶结组"
1318
+ },
1319
+ {
1320
+ "Id": "Part28",
1321
+ "Name": "身体衣服"
1322
+ },
1323
+ {
1324
+ "Id": "Part32",
1325
+ "Name": "左腿蝴蝶结组"
1326
+ },
1327
+ {
1328
+ "Id": "Part33",
1329
+ "Name": "皮肤"
1330
+ },
1331
+ {
1332
+ "Id": "Part35",
1333
+ "Name": "右袖子蝴蝶结组 1"
1334
+ },
1335
+ {
1336
+ "Id": "Part36",
1337
+ "Name": "右袖子蝴蝶结组"
1338
+ },
1339
+ {
1340
+ "Id": "Part37",
1341
+ "Name": "左袖子"
1342
+ },
1343
+ {
1344
+ "Id": "Part39",
1345
+ "Name": "左手上臂"
1346
+ },
1347
+ {
1348
+ "Id": "ArtMesh26_Skinning",
1349
+ "Name": "图层6(蒙皮)"
1350
+ },
1351
+ {
1352
+ "Id": "Part49",
1353
+ "Name": "图层6(旋转)"
1354
+ },
1355
+ {
1356
+ "Id": "ArtMesh27_Skinning",
1357
+ "Name": "图层7(蒙皮)"
1358
+ },
1359
+ {
1360
+ "Id": "Part50",
1361
+ "Name": "图层7(旋转)"
1362
+ },
1363
+ {
1364
+ "Id": "ArtMesh31_Skinning",
1365
+ "Name": "图层11(蒙皮)"
1366
+ },
1367
+ {
1368
+ "Id": "Part51",
1369
+ "Name": "图层11(旋转)"
1370
+ },
1371
+ {
1372
+ "Id": "ArtMesh213_Skinning",
1373
+ "Name": "图层417(蒙皮)"
1374
+ },
1375
+ {
1376
+ "Id": "Part54",
1377
+ "Name": "图层417(旋转)"
1378
+ },
1379
+ {
1380
+ "Id": "ArtMesh214_Skinning",
1381
+ "Name": "图层 163(蒙皮)"
1382
+ },
1383
+ {
1384
+ "Id": "Part55",
1385
+ "Name": "图层 163(旋转)"
1386
+ },
1387
+ {
1388
+ "Id": "ArtMesh215_Skinning",
1389
+ "Name": "图层418(蒙皮)"
1390
+ },
1391
+ {
1392
+ "Id": "Part52",
1393
+ "Name": "图层418(旋转)"
1394
+ },
1395
+ {
1396
+ "Id": "ArtMesh216_Skinning",
1397
+ "Name": "图层 164(蒙皮)"
1398
+ },
1399
+ {
1400
+ "Id": "Part53",
1401
+ "Name": "图层 164(旋转)"
1402
+ },
1403
+ {
1404
+ "Id": "Part7",
1405
+ "Name": "鼻子 2"
1406
+ },
1407
+ {
1408
+ "Id": "Part8",
1409
+ "Name": "左眼 3"
1410
+ },
1411
+ {
1412
+ "Id": "Part14",
1413
+ "Name": "嘴巴"
1414
+ },
1415
+ {
1416
+ "Id": "Part22",
1417
+ "Name": "右袖子蝴蝶结组 1 2"
1418
+ },
1419
+ {
1420
+ "Id": "Part23",
1421
+ "Name": "右袖子蝴蝶结组 2"
1422
+ },
1423
+ {
1424
+ "Id": "Part24",
1425
+ "Name": "右袖子 2"
1426
+ },
1427
+ {
1428
+ "Id": "Part27",
1429
+ "Name": "右手"
1430
+ },
1431
+ {
1432
+ "Id": "Part29",
1433
+ "Name": "衣服蝴蝶结组右"
1434
+ },
1435
+ {
1436
+ "Id": "Part30",
1437
+ "Name": "衣服蝴蝶结组左"
1438
+ },
1439
+ {
1440
+ "Id": "Part34",
1441
+ "Name": "胸"
1442
+ },
1443
+ {
1444
+ "Id": "Part38",
1445
+ "Name": "左袖子3"
1446
+ },
1447
+ {
1448
+ "Id": "Part10",
1449
+ "Name": "眼上"
1450
+ },
1451
+ {
1452
+ "Id": "Part15",
1453
+ "Name": "文件夹52"
1454
+ },
1455
+ {
1456
+ "Id": "Part25",
1457
+ "Name": "右袖子"
1458
+ },
1459
+ {
1460
+ "Id": "Part9",
1461
+ "Name": "部件46"
1462
+ },
1463
+ {
1464
+ "Id": "Part11",
1465
+ "Name": "文件夹51"
1466
+ }
1467
+ ],
1468
+ "CombinedParameters": [
1469
+ [
1470
+ "Param77",
1471
+ "Param78"
1472
+ ],
1473
+ [
1474
+ "ParamAngleX",
1475
+ "ParamAngleY"
1476
+ ],
1477
+ [
1478
+ "ParamEyeBallX",
1479
+ "ParamEyeBallY"
1480
+ ],
1481
+ [
1482
+ "Param50",
1483
+ "Param51"
1484
+ ],
1485
+ [
1486
+ "Param53",
1487
+ "Param56"
1488
+ ],
1489
+ [
1490
+ "Param43",
1491
+ "Param44"
1492
+ ],
1493
+ [
1494
+ "Param47",
1495
+ "Param48"
1496
+ ]
1497
+ ]
1498
+ }