1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
|
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
OcclusionCullingSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
m_SceneGUID: 00000000000000000000000000000000
m_OcclusionCullingData: {fileID: 0}
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serializedVersion: 9
m_Fog: 0
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
m_FogMode: 3
m_FogDensity: 0.01
m_LinearFogStart: 0
m_LinearFogEnd: 300
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
m_AmbientIntensity: 1
m_AmbientMode: 0
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
m_SkyboxMaterial: {fileID: 2100000, guid: f2e167c150d2a724c8f73f6d72e517a6, type: 2}
m_HaloStrength: 0.5
m_FlareStrength: 1
m_FlareFadeSpeed: 3
m_HaloTexture: {fileID: 0}
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
m_DefaultReflectionMode: 0
m_DefaultReflectionResolution: 128
m_ReflectionBounces: 1
m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 705507994}
m_IndirectSpecularColor: {r: 0.08146864, g: 0.069511056, b: 0.096921295, a: 1}
m_UseRadianceAmbientProbe: 0
--- !u!157 &3
LightmapSettings:
m_ObjectHideFlags: 0
serializedVersion: 11
m_GIWorkflowMode: 1
m_GISettings:
serializedVersion: 2
m_BounceScale: 1
m_IndirectOutputScale: 1
m_AlbedoBoost: 1
m_EnvironmentLightingMode: 0
m_EnableBakedLightmaps: 1
m_EnableRealtimeLightmaps: 0
m_LightmapEditorSettings:
serializedVersion: 12
m_Resolution: 2
m_BakeResolution: 40
m_AtlasSize: 1024
m_AO: 0
m_AOMaxDistance: 1
m_CompAOExponent: 1
m_CompAOExponentDirect: 0
m_ExtractAmbientOcclusion: 0
m_Padding: 2
m_LightmapParameters: {fileID: 0}
m_LightmapsBakeMode: 1
m_TextureCompression: 1
m_FinalGather: 0
m_FinalGatherFiltering: 1
m_FinalGatherRayCount: 256
m_ReflectionCompression: 2
m_MixedBakeMode: 2
m_BakeBackend: 1
m_PVRSampling: 1
m_PVRDirectSampleCount: 32
m_PVRSampleCount: 500
m_PVRBounces: 2
m_PVREnvironmentSampleCount: 500
m_PVREnvironmentReferencePointCount: 2048
m_PVRFilteringMode: 2
m_PVRDenoiserTypeDirect: 0
m_PVRDenoiserTypeIndirect: 0
m_PVRDenoiserTypeAO: 0
m_PVRFilterTypeDirect: 0
m_PVRFilterTypeIndirect: 0
m_PVRFilterTypeAO: 0
m_PVREnvironmentMIS: 0
m_PVRCulling: 1
m_PVRFilteringGaussRadiusDirect: 1
m_PVRFilteringGaussRadiusIndirect: 5
m_PVRFilteringGaussRadiusAO: 2
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
m_PVRFilteringAtrousPositionSigmaIndirect: 2
m_PVRFilteringAtrousPositionSigmaAO: 1
m_ExportTrainingData: 0
m_TrainingDataDestination: TrainingData
m_LightProbeSampleCountMultiplier: 4
m_LightingDataAsset: {fileID: 0}
m_UseShadowmask: 1
--- !u!196 &4
NavMeshSettings:
serializedVersion: 2
m_ObjectHideFlags: 0
m_BuildSettings:
serializedVersion: 2
agentTypeID: 0
agentRadius: 0.5
agentHeight: 2
agentSlope: 45
agentClimb: 0.4
ledgeDropHeight: 0
maxJumpAcrossDistance: 0
minRegionArea: 2
manualCellSize: 0
cellSize: 0.16666667
manualTileSize: 0
tileSize: 256
accuratePlacement: 0
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
--- !u!1 &705507993
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 705507995}
- component: {fileID: 705507994}
m_Layer: 0
m_Name: Directional Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!108 &705507994
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 705507993}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Intensity: 1.58
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 2
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 2
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 1
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!4 &705507995
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 705507993}
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
m_LocalPosition: {x: 0, y: 3, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
--- !u!1 &963194225
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 963194228}
- component: {fileID: 963194227}
- component: {fileID: 963194226}
m_Layer: 0
m_Name: Main Camera
m_TagString: MainCamera
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!81 &963194226
AudioListener:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 963194225}
m_Enabled: 1
--- !u!20 &963194227
Camera:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 963194225}
m_Enabled: 1
serializedVersion: 2
m_ClearFlags: 1
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
m_projectionMatrixMode: 1
m_GateFitMode: 2
m_FOVAxisMode: 0
m_SensorSize: {x: 36, y: 24}
m_LensShift: {x: 0, y: 0}
m_FocalLength: 50
m_NormalizedViewPortRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
near clip plane: 0.3
far clip plane: 1000
field of view: 60
orthographic: 0
orthographic size: 5
m_Depth: -1
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingPath: -1
m_TargetTexture: {fileID: 0}
m_TargetDisplay: 0
m_TargetEye: 3
m_HDR: 1
m_AllowMSAA: 1
m_AllowDynamicResolution: 0
m_ForceIntoRT: 0
m_OcclusionCulling: 1
m_StereoConvergence: 10
m_StereoSeparation: 0.022
--- !u!4 &963194228
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 963194225}
m_LocalRotation: {x: -0, y: 1, z: -0, w: 0.0000006258487}
m_LocalPosition: {x: -0, y: 1.709, z: 0.63}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 180.00002, z: 0}
--- !u!1001 &1209945245
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_RootOrder
value: 4
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalScale.x
value: 1.5
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalScale.y
value: 1.5
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalScale.z
value: 1.5
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -6179190358841612906, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.w
value: 0.9999997
objectReference: {fileID: 0}
- target: {fileID: -6179190358841612906, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.x
value: 0.0007654872
objectReference: {fileID: 0}
- target: {fileID: -6179190358841612906, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.y
value: -3.03883e-14
objectReference: {fileID: 0}
- target: {fileID: -6179190358841612906, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.z
value: -2.3261894e-17
objectReference: {fileID: 0}
- target: {fileID: 635547659545568360, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Name
value: NaroOPT
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_RootBone
value:
objectReference: {fileID: 1209945248}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_UpdateWhenOffscreen
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.size
value: 8
objectReference: {fileID: 0}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[0]
value:
objectReference: {fileID: 2100000, guid: a3527a92ee6dcf445ab94a9194b4f97b, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[1]
value:
objectReference: {fileID: 2100000, guid: ed1df8ebc6370f04aa75022ff1298938, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[2]
value:
objectReference: {fileID: 2100000, guid: 8d62122d1358586469ba04987b148e19, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[3]
value:
objectReference: {fileID: 2100000, guid: 50dcef4ad485b6640b5b4ab724edd969, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[4]
value:
objectReference: {fileID: 2100000, guid: 91ed5059f49748e49b33860655706f92, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[5]
value:
objectReference: {fileID: 2100000, guid: 4c285101f1597cc4fab2a98074cc0856, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[6]
value:
objectReference: {fileID: 2100000, guid: 15786b1ff203564459c268b445792011, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_Materials.Array.data[7]
value:
objectReference: {fileID: 2100000, guid: c677a0d4dcfef754293969a69fee8135, type: 2}
- target: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_BlendShapeWeights.Array.size
value: 45
objectReference: {fileID: 0}
- target: {fileID: 3013048657999152016, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.w
value: 0.9999997
objectReference: {fileID: 0}
- target: {fileID: 3013048657999152016, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.x
value: 0.0007654872
objectReference: {fileID: 0}
- target: {fileID: 3013048657999152016, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.y
value: -3.03883e-14
objectReference: {fileID: 0}
- target: {fileID: 3013048657999152016, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
propertyPath: m_LocalRotation.z
value: -2.3261894e-17
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b, type: 3}
--- !u!1 &1209945246 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
m_PrefabInstance: {fileID: 1209945245}
m_PrefabAsset: {fileID: 0}
--- !u!137 &1209945247 stripped
SkinnedMeshRenderer:
m_CorrespondingSourceObject: {fileID: 1630794972795428178, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
m_PrefabInstance: {fileID: 1209945245}
m_PrefabAsset: {fileID: 0}
--- !u!4 &1209945248 stripped
Transform:
m_CorrespondingSourceObject: {fileID: -5898512531190216489, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
m_PrefabInstance: {fileID: 1209945245}
m_PrefabAsset: {fileID: 0}
--- !u!114 &1209945249
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1209945246}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: -1427037861, guid: 4ecd63eff847044b68db9453ce219299, type: 3}
m_Name:
m_EditorClassIdentifier:
launchedFromSDKPipeline: 0
completedSDKPipeline: 0
blueprintId: avtr_d118b5cc-917a-4da0-be54-9eeef1f54ae2
contentType: 0
assetBundleUnityVersion:
fallbackStatus: 3
--- !u!114 &1209945250
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1209945246}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 542108242, guid: 67cc4cb7839cd3741b63733d5adf0442, type: 3}
m_Name:
m_EditorClassIdentifier:
Name:
ViewPosition: {x: 0, y: 1.87, z: 0.08}
Animations: 0
ScaleIPD: 1
lipSync: 3
lipSyncJawBone: {fileID: 0}
lipSyncJawClosed: {x: 0, y: 0, z: 0, w: 1}
lipSyncJawOpen: {x: 0, y: 0, z: 0, w: 1}
VisemeSkinnedMesh: {fileID: 1209945247}
MouthOpenBlendShapeName: Facial_Blends.Jaw_Down
VisemeBlendShapes:
- vrc.v_sil
- vrc.v_pp
- vrc.v_ff
- vrc.v_th
- vrc.v_dd
- vrc.v_kk
- vrc.v_ch
- vrc.v_ss
- vrc.v_nn
- vrc.v_rr
- vrc.v_aa
- vrc.v_e
- vrc.v_ih
- vrc.v_oh
- vrc.v_ou
unityVersion: 2019.4.31f1
portraitCameraPositionOffset: {x: 0, y: 0, z: 0}
portraitCameraRotationOffset: {x: 0, y: 1, z: 0, w: -0.00000004371139}
customExpressions: 0
expressionsMenu: {fileID: 0}
expressionParameters: {fileID: 0}
enableEyeLook: 1
customEyeLookSettings:
eyeMovement:
confidence: 1
excitement: 0
leftEye: {fileID: 1209945252}
rightEye: {fileID: 1209945251}
eyesLookingStraight:
linked: 1
left: {x: 0, y: 0, z: 0, w: 1}
right: {x: 0, y: 0, z: 0, w: 1}
eyesLookingUp:
linked: 1
left: {x: -0.014921936, y: 0, z: 0, w: 0.99988866}
right: {x: -0.014921936, y: 0, z: 0, w: 0.99988866}
eyesLookingDown:
linked: 1
left: {x: 0.022775196, y: 0, z: 0, w: 0.9997406}
right: {x: 0.022775196, y: 0, z: 0, w: 0.9997406}
eyesLookingLeft:
linked: 1
left: {x: 0, y: -0.020157166, z: 0, w: 0.9997968}
right: {x: 0, y: -0.020157166, z: 0, w: 0.9997968}
eyesLookingRight:
linked: 1
left: {x: 0, y: 0.018150555, z: 0, w: 0.99983525}
right: {x: 0, y: 0.018150555, z: 0, w: 0.99983525}
eyelidType: 2
upperLeftEyelid: {fileID: 0}
upperRightEyelid: {fileID: 0}
lowerLeftEyelid: {fileID: 0}
lowerRightEyelid: {fileID: 0}
eyelidsDefault:
upper:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
lower:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
eyelidsClosed:
upper:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
lower:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
eyelidsLookingUp:
upper:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
lower:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
eyelidsLookingDown:
upper:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
lower:
linked: 1
left: {x: 0, y: 0, z: 0, w: 0}
right: {x: 0, y: 0, z: 0, w: 0}
eyelidsSkinnedMesh: {fileID: 1209945247}
eyelidsBlendshapes: 12000000ffffffffffffffff
customizeAnimationLayers: 1
baseAnimationLayers:
- isEnabled: 0
type: 0
animatorController: {fileID: 9100000, guid: c08db7a0b665824499c4450dd4edf01d,
type: 2}
mask: {fileID: 0}
isDefault: 0
- isEnabled: 0
type: 2
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
- isEnabled: 0
type: 3
animatorController: {fileID: 9100000, guid: f0ef021897a460d49acabf129b878627,
type: 2}
mask: {fileID: 31900000, guid: b2b8bad9583e56a46a3e21795e96ad92, type: 2}
isDefault: 0
- isEnabled: 0
type: 4
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
- isEnabled: 0
type: 5
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
specialAnimationLayers:
- isEnabled: 0
type: 6
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
- isEnabled: 0
type: 7
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
- isEnabled: 0
type: 8
animatorController: {fileID: 0}
mask: {fileID: 0}
isDefault: 1
AnimationPreset: {fileID: 0}
animationHashSet:
- hash: -542948443
name: Preview
- hash: -689919782
name: reinitialize
- hash: -2137589102
name: JumpAndFall.Short Fall
- hash: -862280380
name: JumpAndFall.HardLand
- hash: 2014011911
name: JumpAndFall.LongFall
- hash: 429917695
name: JumpAndFall.RestoreTracking
- hash: 196538068
name: JumpAndFall.SmallHop
- hash: -1551062404
name: JumpAndFall.RestoreToHop
- hash: -1176220201
name: JumpAndFall.QuickLand
- hash: -1731606038
name: FBT.FBT Idle
- hash: 1408275846
name: FBT.FBT Animation
- hash: 161687733
name: VR.StandingVR
- hash: 646466831
name: VR.CrouchingVR
- hash: -903563002
name: VR.ProneVR
- hash: -552279295
name: Desktop.Standing
- hash: -299888521
name: Desktop.Prone
- hash: -73602231
name: Desktop.Crouching
- hash: -2028805232
name: Desktop.Initialize pose space
- hash: -2017302236
name: TrackingType 0
- hash: 1096056369
name: TrackingType over 5
- hash: -255501902
name: TrackingType 1
- hash: 1774979080
name: TrackingType 2
- hash: 516634782
name: TrackingType 3
- hash: -2135970499
name: TrackingType 4
- hash: -1963515926
name: Fist
- hash: -1368897710
name: Point
- hash: 99779634
name: Open
- hash: 282634289
name: Peace
- hash: 935782528
name: RockNRoll
- hash: 420425210
name: Gun
- hash: 1949755150
name: Thumbs up
- hash: 1847183909
name: Idle2
- hash: -998029940
name: Peace
- hash: 2050206447
name: Point
- hash: 297357552
name: Gun
- hash: -449848495
name: Open
- hash: -1170069608
name: Idle2
- hash: 1781153929
name: Fist
- hash: -488267544
name: Thumbs up
- hash: -1592414362
name: RockNRoll
autoFootsteps: 1
autoLocomotion: 0
--- !u!4 &1209945251 stripped
Transform:
m_CorrespondingSourceObject: {fileID: -6179190358841612906, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
m_PrefabInstance: {fileID: 1209945245}
m_PrefabAsset: {fileID: 0}
--- !u!4 &1209945252 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 3013048657999152016, guid: 2d0e2cb48dd6daa4b92b96a3ee182d4b,
type: 3}
m_PrefabInstance: {fileID: 1209945245}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1039890176853297333
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 193381327025072759, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_Name
value: NaroOPT_Mask
objectReference: {fileID: 0}
- target: {fileID: 193381327025072759, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_RootOrder
value: 5
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 712932025169195213, guid: 75db79f23d0f457489c35c308b3545de,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 75db79f23d0f457489c35c308b3545de, type: 3}
--- !u!114 &2001406099271056944
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2001406099271056975}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: a7360b2e1a643fb4d885fe564f50c1a4, type: 3}
m_Name:
m_EditorClassIdentifier:
texture: {fileID: 2800000, guid: dd040b543c3d6d849a9e1b14e48c16c7, type: 3}
--- !u!1 &2001406099271056975
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2337585886725638396}
- component: {fileID: 2001406099271056944}
m_Layer: 0
m_Name: VRChatThumbnailer
m_TagString: EditorOnly
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &2337585886725638396
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2001406099271056975}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &4529295343234261075
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 4529295343051188764, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.w
value: 0.9999997
objectReference: {fileID: 0}
- target: {fileID: 4529295343051188764, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.x
value: 0.0007654872
objectReference: {fileID: 0}
- target: {fileID: 4529295343051188764, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.y
value: -3.0388313e-14
objectReference: {fileID: 0}
- target: {fileID: 4529295343051188764, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.z
value: -2.326191e-17
objectReference: {fileID: 0}
- target: {fileID: 4529295343597116655, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_UpdateWhenOffscreen
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4529295343845073946, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.w
value: 0.9999997
objectReference: {fileID: 0}
- target: {fileID: 4529295343845073946, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.x
value: 0.0007654872
objectReference: {fileID: 0}
- target: {fileID: 4529295343845073946, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.y
value: -3.0388313e-14
objectReference: {fileID: 0}
- target: {fileID: 4529295343845073946, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.z
value: -2.326191e-17
objectReference: {fileID: 0}
- target: {fileID: 4529295344085464271, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_UpdateWhenOffscreen
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655436, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_Name
value: Naro
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655436, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_RootOrder
value: 2
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655472, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655473, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: m_Controller
value:
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655474, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: blueprintId
value:
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655474, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: completedSDKPipeline
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.size
value: 142
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[68].hash
value: -1251478925
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[68].name
value: Gun
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[69].hash
value: -44558884
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[69].name
value: Thumbs Up
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[70].hash
value: -1135148969
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[70].name
value: RNR
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[71].hash
value: -319428578
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[71].name
value: Peace
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[72].hash
value: 1380255613
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[72].name
value: Point
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[73].hash
value: -1858414743
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[73].name
value: Open
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[74].hash
value: 507464881
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[74].name
value: Fist
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[75].hash
value: -378609192
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[75].name
value: Idle
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[76].hash
value: 1218762536
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[76].name
value: Wait
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[77].hash
value: -550311960
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[77].name
value: Idle
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[78].hash
value: 677595777
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[78].name
value: Fist
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[79].hash
value: -1486433959
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[79].name
value: Open
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[80].hash
value: 1957325783
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[80].name
value: Point
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[81].hash
value: -904231756
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[81].name
value: Peace
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[82].hash
value: -484718851
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[82].name
value: RNR
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[83].hash
value: -1784105945
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[83].name
value: Thumbs Up
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[84].hash
value: -366267175
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[84].name
value: Gun
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[85].hash
value: 2130235672
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[85].name
value: Wait
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[86].hash
value: 1122433987
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[86].name
value: AnimeHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[87].hash
value: 589366391
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[87].name
value: BothHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[88].hash
value: -983447901
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[88].name
value: BraidHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[89].hash
value: -879221337
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[89].name
value: BraidHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[90].hash
value: 21639807
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[90].name
value: BothHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[91].hash
value: 1277106375
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[91].name
value: AnimeHair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[92].hash
value: -996134435
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[92].name
value: Force Both Hair
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[93].hash
value: 960518037
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[93].name
value: Mask_OFF
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[94].hash
value: 1112911793
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[94].name
value: Mask_ON
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[95].hash
value: -899292891
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[95].name
value: Mask_Appear
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[96].hash
value: -1250149035
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[96].name
value: Mask_Vanish
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[97].hash
value: 98784635
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[97].name
value: Jacket_ON
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[98].hash
value: 1119275713
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[98].name
value: Jacket_OFF
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[99].hash
value: 836879436
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[99].name
value: Jacket_Appear
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[100].hash
value: 1324881980
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[100].name
value: Jacket_Vanish
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[101].hash
value: 851730245
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[101].name
value: Shirt_ON
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[102].hash
value: -2082410400
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[102].name
value: Shirt_OFF
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[103].hash
value: 1325062498
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[103].name
value: Shirt_Appear
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[104].hash
value: 836961554
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[104].name
value: Shirt_Vanish
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[105].hash
value: -1036874643
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[105].name
value: Blend Tree
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[106].hash
value: 146531891
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[106].name
value: Blend Tree
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[107].hash
value: 1367630128
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[107].name
value: Blend Tree
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[108].hash
value: 1020620338
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[108].name
value: HairColor_0
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[109].hash
value: 1272077988
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[109].name
value: HairColor_1
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[110].hash
value: -1510615281
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[110].name
value: Blend Tree
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[111].hash
value: 843883317
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[111].name
value: Blend Tree
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[112].hash
value: -521663851
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[112].name
value: Jacket_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[113].hash
value: -728252835
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[113].name
value: Jacket_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[114].hash
value: 839094573
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[114].name
value: Jacket_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[115].hash
value: -755416021
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[115].name
value: Force BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[116].hash
value: 2041159159
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[116].name
value: Jacket_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[117].hash
value: 2052006776
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[117].name
value: Jacket_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[118].hash
value: 368928375
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[118].name
value: Jacket_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[119].hash
value: -32990441
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[119].name
value: Pants_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[120].hash
value: 73848644
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[120].name
value: Pants_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[121].hash
value: 1454950532
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[121].name
value: Pants_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[122].hash
value: -702745707
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[122].name
value: Foce BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[123].hash
value: -127904351
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[123].name
value: Pants_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[124].hash
value: 227653804
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[124].name
value: Pants_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[125].hash
value: -459264448
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[125].name
value: Pants_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[126].hash
value: -921980525
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[126].name
value: Shoes_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[127].hash
value: -439655951
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[127].name
value: Shoes_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[128].hash
value: 1321394837
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[128].name
value: Shoes_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[129].hash
value: -665598115
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[129].name
value: Foce BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[130].hash
value: -535134288
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[130].name
value: Shoes_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[131].hash
value: -10234714
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[131].name
value: Shoes_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[132].hash
value: -1057169797
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[132].name
value: Shoes_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[133].hash
value: -1521527929
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[133].name
value: Shirt_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[134].hash
value: 1250729046
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[134].name
value: Shirt_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[135].hash
value: 1655879476
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[135].name
value: Shirt_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[136].hash
value: -685112901
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[136].name
value: Force BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[137].hash
value: 1132196798
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[137].name
value: Shirt_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[138].hash
value: 2014970467
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[138].name
value: Shirt_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[139].hash
value: 194498210
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[139].name
value: Shirt_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[140].hash
value: -325684229
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[140].name
value: Default Ears
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[141].hash
value: -1243238297
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[141].name
value: Elf Toggle
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[142].hash
value: 1655879476
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[143].hash
value: -685112901
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[143].name
value: Force BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[144].hash
value: 1132196798
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[144].name
value: Shirt_B
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[145].hash
value: 2014970467
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[145].name
value: Shirt_Invert
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[146].hash
value: 194498210
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[146].name
value: Shirt_BW
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[147].hash
value: -325684229
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[147].name
value: Default Ears
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[148].hash
value: -1243238297
objectReference: {fileID: 0}
- target: {fileID: 4529295344941655475, guid: c0a6370d65b42b74fae75d4b8e7fe7be,
type: 3}
propertyPath: animationHashSet.Array.data[148].name
value: Elf Toggle
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: c0a6370d65b42b74fae75d4b8e7fe7be, type: 3}
|