-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathTreeAsset 3.asset
More file actions
1472 lines (1472 loc) · 29.7 KB
/
TreeAsset 3.asset
File metadata and controls
1472 lines (1472 loc) · 29.7 KB
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
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 13981b66f67204744891820795ef4230, type: 3}
m_Name: TreeAsset 3
m_EditorClassIdentifier:
m_TreeElements:
- m_ID: 0
m_Name: Root
m_Depth: -1
floatValue1: 0.2395865
floatValue2: 0.13729788
floatValue3: 0.8326317
material: {fileID: 0}
text:
enabled: 1
- m_ID: 1
m_Name: Elment 0
m_Depth: 0
floatValue1: 0.4206925
floatValue2: 0.6414698
floatValue3: 0.28581563
material: {fileID: 0}
text:
enabled: 1
- m_ID: 2
m_Name: Elment 1
m_Depth: 1
floatValue1: 0.22782472
floatValue2: 0.6393426
floatValue3: 0.3715866
material: {fileID: 0}
text:
enabled: 1
- m_ID: 3
m_Name: Elment 2
m_Depth: 2
floatValue1: 0.67497927
floatValue2: 0.8980719
floatValue3: 0.006839038
material: {fileID: 0}
text:
enabled: 1
- m_ID: 4
m_Name: Elment 3
m_Depth: 3
floatValue1: 0.80874574
floatValue2: 0.17748024
floatValue3: 0.8651222
material: {fileID: 0}
text:
enabled: 1
- m_ID: 5
m_Name: Elment 4
m_Depth: 3
floatValue1: 0.5391951
floatValue2: 0.38652366
floatValue3: 0.13927115
material: {fileID: 0}
text:
enabled: 1
- m_ID: 6
m_Name: Elment 5
m_Depth: 3
floatValue1: 0.769451
floatValue2: 0.5482741
floatValue3: 0.46085078
material: {fileID: 0}
text:
enabled: 1
- m_ID: 7
m_Name: Elment 6
m_Depth: 4
floatValue1: 0.42023164
floatValue2: 0.9822395
floatValue3: 0.6017353
material: {fileID: 0}
text:
enabled: 1
- m_ID: 8
m_Name: Elment 7
m_Depth: 4
floatValue1: 0.235243
floatValue2: 0.38052624
floatValue3: 0.317336
material: {fileID: 0}
text:
enabled: 1
- m_ID: 9
m_Name: Elment 8
m_Depth: 4
floatValue1: 0.3663458
floatValue2: 0.05848766
floatValue3: 0.6604642
material: {fileID: 0}
text:
enabled: 1
- m_ID: 10
m_Name: Elment 9
m_Depth: 4
floatValue1: 0.1997737
floatValue2: 0.24332312
floatValue3: 0.82444584
material: {fileID: 0}
text:
enabled: 1
- m_ID: 11
m_Name: Elment 10
m_Depth: 4
floatValue1: 0.20164517
floatValue2: 0.9170116
floatValue3: 0.45465416
material: {fileID: 0}
text:
enabled: 1
- m_ID: 12
m_Name: Elment 11
m_Depth: 4
floatValue1: 0.7305059
floatValue2: 0.4415949
floatValue3: 0.75645936
material: {fileID: 0}
text:
enabled: 1
- m_ID: 13
m_Name: Elment 12
m_Depth: 4
floatValue1: 0.48858792
floatValue2: 0.6944584
floatValue3: 0.9537988
material: {fileID: 0}
text:
enabled: 1
- m_ID: 14
m_Name: Elment 13
m_Depth: 4
floatValue1: 0.32500604
floatValue2: 0.9303845
floatValue3: 0.65128773
material: {fileID: 0}
text:
enabled: 1
- m_ID: 15
m_Name: Elment 14
m_Depth: 5
floatValue1: 0.24329475
floatValue2: 0.33132306
floatValue3: 0.4858201
material: {fileID: 0}
text:
enabled: 1
- m_ID: 16
m_Name: Elment 15
m_Depth: 6
floatValue1: 0.4139722
floatValue2: 0.03332818
floatValue3: 0.66356033
material: {fileID: 0}
text:
enabled: 1
- m_ID: 17
m_Name: Elment 16
m_Depth: 6
floatValue1: 0.8356724
floatValue2: 0.103630915
floatValue3: 0.5222352
material: {fileID: 0}
text:
enabled: 1
- m_ID: 18
m_Name: Elment 17
m_Depth: 6
floatValue1: 0.8465718
floatValue2: 0.4437248
floatValue3: 0.4935004
material: {fileID: 0}
text:
enabled: 1
- m_ID: 19
m_Name: Elment 18
m_Depth: 6
floatValue1: 0.46568912
floatValue2: 0.007093192
floatValue3: 0.48098093
material: {fileID: 0}
text:
enabled: 1
- m_ID: 20
m_Name: Elment 19
m_Depth: 6
floatValue1: 0.14500774
floatValue2: 0.40048903
floatValue3: 0.7159166
material: {fileID: 0}
text:
enabled: 1
- m_ID: 21
m_Name: Elment 20
m_Depth: 5
floatValue1: 0.63056976
floatValue2: 0.4377759
floatValue3: 0.34639946
material: {fileID: 0}
text:
enabled: 1
- m_ID: 22
m_Name: Elment 21
m_Depth: 5
floatValue1: 0.6679687
floatValue2: 0.5677636
floatValue3: 0.635981
material: {fileID: 0}
text:
enabled: 1
- m_ID: 23
m_Name: Elment 22
m_Depth: 5
floatValue1: 0.48116022
floatValue2: 0.8186772
floatValue3: 0.43989092
material: {fileID: 0}
text:
enabled: 1
- m_ID: 24
m_Name: Elment 23
m_Depth: 5
floatValue1: 0.035436515
floatValue2: 0.15518297
floatValue3: 0.96834266
material: {fileID: 0}
text:
enabled: 1
- m_ID: 25
m_Name: Elment 24
m_Depth: 5
floatValue1: 0.4437539
floatValue2: 0.2454603
floatValue3: 0.6786162
material: {fileID: 0}
text:
enabled: 1
- m_ID: 26
m_Name: Elment 25
m_Depth: 5
floatValue1: 0.14261664
floatValue2: 0.9341432
floatValue3: 0.18004669
material: {fileID: 0}
text:
enabled: 1
- m_ID: 27
m_Name: Elment 26
m_Depth: 5
floatValue1: 0.36928383
floatValue2: 0.14205815
floatValue3: 0.47462493
material: {fileID: 0}
text:
enabled: 1
- m_ID: 28
m_Name: Elment 27
m_Depth: 3
floatValue1: 0.4118672
floatValue2: 0.78783596
floatValue3: 0.94718945
material: {fileID: 0}
text:
enabled: 1
- m_ID: 29
m_Name: Elment 28
m_Depth: 3
floatValue1: 0.9987813
floatValue2: 0.17572238
floatValue3: 0.5255125
material: {fileID: 0}
text:
enabled: 1
- m_ID: 30
m_Name: Elment 29
m_Depth: 3
floatValue1: 0.08390737
floatValue2: 0.48246652
floatValue3: 0.99328554
material: {fileID: 0}
text:
enabled: 1
- m_ID: 31
m_Name: Elment 30
m_Depth: 3
floatValue1: 0.23993221
floatValue2: 0.43322152
floatValue3: 0.76861227
material: {fileID: 0}
text:
enabled: 1
- m_ID: 32
m_Name: Elment 31
m_Depth: 3
floatValue1: 0.6123734
floatValue2: 0.67042536
floatValue3: 0.18634869
material: {fileID: 0}
text:
enabled: 1
- m_ID: 33
m_Name: Elment 32
m_Depth: 3
floatValue1: 0.41100746
floatValue2: 0.9489677
floatValue3: 0.19364622
material: {fileID: 0}
text:
enabled: 1
- m_ID: 34
m_Name: Elment 33
m_Depth: 2
floatValue1: 0.1857604
floatValue2: 0.36642864
floatValue3: 0.91775405
material: {fileID: 0}
text:
enabled: 1
- m_ID: 35
m_Name: Elment 34
m_Depth: 2
floatValue1: 0.5931085
floatValue2: 0.21174887
floatValue3: 0.7571082
material: {fileID: 0}
text:
enabled: 1
- m_ID: 36
m_Name: Elment 35
m_Depth: 2
floatValue1: 0.93489885
floatValue2: 0.2721559
floatValue3: 0.0726297
material: {fileID: 0}
text:
enabled: 1
- m_ID: 37
m_Name: Elment 36
m_Depth: 2
floatValue1: 0.6480475
floatValue2: 0.17969598
floatValue3: 0.1608919
material: {fileID: 0}
text:
enabled: 1
- m_ID: 38
m_Name: Elment 37
m_Depth: 2
floatValue1: 0.15278412
floatValue2: 0.5008592
floatValue3: 0.078069575
material: {fileID: 0}
text:
enabled: 1
- m_ID: 39
m_Name: Elment 38
m_Depth: 2
floatValue1: 0.53239197
floatValue2: 0.64619833
floatValue3: 0.6276917
material: {fileID: 0}
text:
enabled: 1
- m_ID: 40
m_Name: Elment 39
m_Depth: 2
floatValue1: 0.606566
floatValue2: 0.2960947
floatValue3: 0.7544265
material: {fileID: 0}
text:
enabled: 1
- m_ID: 41
m_Name: Elment 40
m_Depth: 1
floatValue1: 0.30158213
floatValue2: 0.5391448
floatValue3: 0.7516376
material: {fileID: 0}
text:
enabled: 1
- m_ID: 42
m_Name: Elment 41
m_Depth: 1
floatValue1: 0.2243829
floatValue2: 0.33622482
floatValue3: 0.050671346
material: {fileID: 0}
text:
enabled: 1
- m_ID: 43
m_Name: Elment 42
m_Depth: 1
floatValue1: 0.7730912
floatValue2: 0.8266766
floatValue3: 0.468561
material: {fileID: 0}
text:
enabled: 1
- m_ID: 44
m_Name: Elment 43
m_Depth: 1
floatValue1: 0.046244625
floatValue2: 0.29374805
floatValue3: 0.46813136
material: {fileID: 0}
text:
enabled: 1
- m_ID: 45
m_Name: Elment 44
m_Depth: 1
floatValue1: 0.7714728
floatValue2: 0.65685207
floatValue3: 0.92046
material: {fileID: 0}
text:
enabled: 1
- m_ID: 46
m_Name: Elment 45
m_Depth: 1
floatValue1: 0.72922033
floatValue2: 0.37813622
floatValue3: 0.8168167
material: {fileID: 0}
text:
enabled: 1
- m_ID: 47
m_Name: Elment 46
m_Depth: 1
floatValue1: 0.055200465
floatValue2: 0.14701046
floatValue3: 0.3617039
material: {fileID: 0}
text:
enabled: 1
- m_ID: 48
m_Name: Elment 47
m_Depth: 1
floatValue1: 0.31428352
floatValue2: 0.48081595
floatValue3: 0.2815298
material: {fileID: 0}
text:
enabled: 1
- m_ID: 49
m_Name: Elment 48
m_Depth: 0
floatValue1: 0.59715563
floatValue2: 0.5176024
floatValue3: 0.1936616
material: {fileID: 0}
text:
enabled: 1
- m_ID: 50
m_Name: Elment 49
m_Depth: 0
floatValue1: 0.13807572
floatValue2: 0.48026544
floatValue3: 0.9559221
material: {fileID: 0}
text:
enabled: 1
- m_ID: 51
m_Name: Elment 50
m_Depth: 0
floatValue1: 0.6462957
floatValue2: 0.82435286
floatValue3: 0.33868566
material: {fileID: 0}
text:
enabled: 1
- m_ID: 52
m_Name: Elment 51
m_Depth: 0
floatValue1: 0.42281228
floatValue2: 0.7963506
floatValue3: 0.9114518
material: {fileID: 0}
text:
enabled: 1
- m_ID: 53
m_Name: Elment 52
m_Depth: 0
floatValue1: 0.96214736
floatValue2: 0.3421618
floatValue3: 0.37326446
material: {fileID: 0}
text:
enabled: 1
- m_ID: 54
m_Name: Elment 53
m_Depth: 0
floatValue1: 0.9817852
floatValue2: 0.21238843
floatValue3: 0.22238424
material: {fileID: 0}
text:
enabled: 1
- m_ID: 55
m_Name: Elment 54
m_Depth: 0
floatValue1: 0.20391777
floatValue2: 0.37111917
floatValue3: 0.8940604
material: {fileID: 0}
text:
enabled: 1
- m_ID: 56
m_Name: Elment 55
m_Depth: 0
floatValue1: 0.13243438
floatValue2: 0.6987385
floatValue3: 0.7021486
material: {fileID: 0}
text:
enabled: 1
- m_ID: 57
m_Name: Elment 56
m_Depth: 0
floatValue1: 0.7439279
floatValue2: 0.61349744
floatValue3: 0.2703108
material: {fileID: 0}
text:
enabled: 1
- m_ID: 58
m_Name: Elment 57
m_Depth: 1
floatValue1: 0.31573287
floatValue2: 0.23189357
floatValue3: 0.27807346
material: {fileID: 0}
text:
enabled: 1
- m_ID: 59
m_Name: Elment 58
m_Depth: 1
floatValue1: 0.9473908
floatValue2: 0.59812456
floatValue3: 0.34600917
material: {fileID: 0}
text:
enabled: 1
- m_ID: 60
m_Name: Elment 59
m_Depth: 2
floatValue1: 0.93865836
floatValue2: 0.32159403
floatValue3: 0.7729502
material: {fileID: 0}
text:
enabled: 1
- m_ID: 61
m_Name: Elment 60
m_Depth: 3
floatValue1: 0.51924056
floatValue2: 0.57245237
floatValue3: 0.66325396
material: {fileID: 0}
text:
enabled: 1
- m_ID: 62
m_Name: Elment 61
m_Depth: 4
floatValue1: 0.86831236
floatValue2: 0.59958583
floatValue3: 0.008866907
material: {fileID: 0}
text:
enabled: 1
- m_ID: 63
m_Name: Elment 62
m_Depth: 4
floatValue1: 0.9510844
floatValue2: 0.05019129
floatValue3: 0.5991798
material: {fileID: 0}
text:
enabled: 1
- m_ID: 64
m_Name: Elment 63
m_Depth: 5
floatValue1: 0.23816171
floatValue2: 0.90547705
floatValue3: 0.91593647
material: {fileID: 0}
text:
enabled: 1
- m_ID: 65
m_Name: Elment 64
m_Depth: 5
floatValue1: 0.8382324
floatValue2: 0.69315654
floatValue3: 0.44698948
material: {fileID: 0}
text:
enabled: 1
- m_ID: 66
m_Name: Elment 65
m_Depth: 5
floatValue1: 0.4711246
floatValue2: 0.6065096
floatValue3: 0.65316385
material: {fileID: 0}
text:
enabled: 1
- m_ID: 67
m_Name: Elment 66
m_Depth: 6
floatValue1: 0.37356701
floatValue2: 0.77109766
floatValue3: 0.5362268
material: {fileID: 0}
text:
enabled: 1
- m_ID: 68
m_Name: Elment 67
m_Depth: 6
floatValue1: 0.09266747
floatValue2: 0.42250842
floatValue3: 0.49271673
material: {fileID: 0}
text:
enabled: 1
- m_ID: 69
m_Name: Elment 68
m_Depth: 6
floatValue1: 0.478916
floatValue2: 0.11936654
floatValue3: 0.26867405
material: {fileID: 0}
text:
enabled: 1
- m_ID: 70
m_Name: Elment 69
m_Depth: 6
floatValue1: 0.334564
floatValue2: 0.7995522
floatValue3: 0.051539786
material: {fileID: 0}
text:
enabled: 1
- m_ID: 71
m_Name: Elment 70
m_Depth: 6
floatValue1: 0.66908413
floatValue2: 0.63587576
floatValue3: 0.25768295
material: {fileID: 0}
text:
enabled: 1
- m_ID: 72
m_Name: Elment 71
m_Depth: 6
floatValue1: 0.40096146
floatValue2: 0.022155764
floatValue3: 0.38878626
material: {fileID: 0}
text:
enabled: 1
- m_ID: 73
m_Name: Elment 72
m_Depth: 6
floatValue1: 0.57691735
floatValue2: 0.8646778
floatValue3: 0.38408035
material: {fileID: 0}
text:
enabled: 1
- m_ID: 74
m_Name: Elment 73
m_Depth: 6
floatValue1: 0.8311634
floatValue2: 0.01397288
floatValue3: 0.1899251
material: {fileID: 0}
text:
enabled: 1
- m_ID: 75
m_Name: Elment 74
m_Depth: 5
floatValue1: 0.6729335
floatValue2: 0.5130736
floatValue3: 0.66434354
material: {fileID: 0}
text:
enabled: 1
- m_ID: 76
m_Name: Elment 75
m_Depth: 5
floatValue1: 0.9182036
floatValue2: 0.61495537
floatValue3: 0.99196434
material: {fileID: 0}
text:
enabled: 1
- m_ID: 77
m_Name: Elment 76
m_Depth: 5
floatValue1: 0.27963307
floatValue2: 0.7962513
floatValue3: 0.72613615
material: {fileID: 0}
text:
enabled: 1
- m_ID: 78
m_Name: Elment 77
m_Depth: 5
floatValue1: 0.16974379
floatValue2: 0.27755406
floatValue3: 0.80881095
material: {fileID: 0}
text:
enabled: 1
- m_ID: 79
m_Name: Elment 78
m_Depth: 5
floatValue1: 0.21254304
floatValue2: 0.5705144
floatValue3: 0.8059143
material: {fileID: 0}
text:
enabled: 1
- m_ID: 80
m_Name: Elment 79
m_Depth: 4
floatValue1: 0.73625
floatValue2: 0.9152938
floatValue3: 0.91193736
material: {fileID: 0}
text:
enabled: 1
- m_ID: 81
m_Name: Elment 80
m_Depth: 4
floatValue1: 0.54996747
floatValue2: 0.4740674
floatValue3: 0.9755665
material: {fileID: 0}
text:
enabled: 1
- m_ID: 82
m_Name: Elment 81
m_Depth: 4
floatValue1: 0.7405606
floatValue2: 0.23286632
floatValue3: 0.8782178
material: {fileID: 0}
text:
enabled: 1
- m_ID: 83
m_Name: Elment 82
m_Depth: 4
floatValue1: 0.42740923
floatValue2: 0.5437909
floatValue3: 0.76767945
material: {fileID: 0}
text:
enabled: 1
- m_ID: 84
m_Name: Elment 83
m_Depth: 3
floatValue1: 0.876541
floatValue2: 0.7461446
floatValue3: 0.26855758
material: {fileID: 0}
text:
enabled: 1
- m_ID: 85
m_Name: Elment 84
m_Depth: 3
floatValue1: 0.527024
floatValue2: 0.60096425
floatValue3: 0.24769846
material: {fileID: 0}
text:
enabled: 1
- m_ID: 86
m_Name: Elment 85
m_Depth: 3
floatValue1: 0.52103657
floatValue2: 0.5122779
floatValue3: 0.9710176
material: {fileID: 0}
text:
enabled: 1
- m_ID: 87
m_Name: Elment 86
m_Depth: 3
floatValue1: 0.5437687
floatValue2: 0.04958702
floatValue3: 0.4396078
material: {fileID: 0}
text:
enabled: 1
- m_ID: 88
m_Name: Elment 87
m_Depth: 2
floatValue1: 0.18792918
floatValue2: 0.80841136
floatValue3: 0.31385294
material: {fileID: 0}
text:
enabled: 1
- m_ID: 89
m_Name: Elment 88
m_Depth: 2
floatValue1: 0.8102467
floatValue2: 0.87083304
floatValue3: 0.5227615
material: {fileID: 0}
text:
enabled: 1
- m_ID: 90
m_Name: Elment 89
m_Depth: 2
floatValue1: 0.64361376
floatValue2: 0.33022466
floatValue3: 0.117484465
material: {fileID: 0}
text:
enabled: 1
- m_ID: 91
m_Name: Elment 90
m_Depth: 2
floatValue1: 0.29288414
floatValue2: 0.57719857
floatValue3: 0.6783889
material: {fileID: 0}
text:
enabled: 1
- m_ID: 92
m_Name: Elment 91
m_Depth: 2
floatValue1: 0.3108106
floatValue2: 0.98337054
floatValue3: 0.29266897
material: {fileID: 0}
text:
enabled: 1
- m_ID: 93
m_Name: Elment 92
m_Depth: 2
floatValue1: 0.7528827
floatValue2: 0.02868021
floatValue3: 0.13803007
material: {fileID: 0}
text:
enabled: 1
- m_ID: 94
m_Name: Elment 93
m_Depth: 1
floatValue1: 0.9943503
floatValue2: 0.83515024
floatValue3: 0.37078336
material: {fileID: 0}
text:
enabled: 1
- m_ID: 95
m_Name: Elment 94
m_Depth: 1
floatValue1: 0.7554791
floatValue2: 0.7230082
floatValue3: 0.5961345
material: {fileID: 0}
text:
enabled: 1
- m_ID: 96
m_Name: Elment 95
m_Depth: 1
floatValue1: 0.11357392
floatValue2: 0.80719066
floatValue3: 0.28260866
material: {fileID: 0}
text:
enabled: 1
- m_ID: 97
m_Name: Elment 96
m_Depth: 1
floatValue1: 0.1445129
floatValue2: 0.37887138
floatValue3: 0.5013481
material: {fileID: 0}
text:
enabled: 1
- m_ID: 98
m_Name: Elment 97
m_Depth: 1
floatValue1: 0.10122551
floatValue2: 0.9534409
floatValue3: 0.70312196
material: {fileID: 0}
text:
enabled: 1
- m_ID: 99
m_Name: Elment 98
m_Depth: 1
floatValue1: 0.70214707
floatValue2: 0.9081601
floatValue3: 0.044098023
material: {fileID: 0}
text:
enabled: 1
- m_ID: 100
m_Name: Elment 99
m_Depth: 1
floatValue1: 0.42775005
floatValue2: 0.6586239
floatValue3: 0.46262842
material: {fileID: 0}
text:
enabled: 1
- m_ID: 101
m_Name: Elment 100
m_Depth: 0
floatValue1: 0.37925857
floatValue2: 0.8039764
floatValue3: 0.56596977
material: {fileID: 0}
text:
enabled: 1
- m_ID: 102
m_Name: Elment 101
m_Depth: 0
floatValue1: 0.8343203
floatValue2: 0.07502056
floatValue3: 0.22401479
material: {fileID: 0}
text:
enabled: 1
- m_ID: 103
m_Name: Elment 102
m_Depth: 0
floatValue1: 0.42343074
floatValue2: 0.4201222
floatValue3: 0.8490008
material: {fileID: 0}
text:
enabled: 1
- m_ID: 104
m_Name: Elment 103
m_Depth: 0
floatValue1: 0.9520242
floatValue2: 0.26581243
floatValue3: 0.236563
material: {fileID: 0}
text:
enabled: 1
- m_ID: 105
m_Name: Elment 104
m_Depth: 0
floatValue1: 0.009942771
floatValue2: 0.8299041
floatValue3: 0.41371697
material: {fileID: 0}
text:
enabled: 1
- m_ID: 106
m_Name: Elment 105
m_Depth: 1
floatValue1: 0.028972868
floatValue2: 0.984262
floatValue3: 0.007162691
material: {fileID: 0}
text:
enabled: 1
- m_ID: 107
m_Name: Elment 106
m_Depth: 2
floatValue1: 0.5860682
floatValue2: 0.33604315
floatValue3: 0.052791126
material: {fileID: 0}
text:
enabled: 1
- m_ID: 108
m_Name: Elment 107
m_Depth: 2
floatValue1: 0.004935742
floatValue2: 0.71247786
floatValue3: 0.29367056
material: {fileID: 0}
text:
enabled: 1
- m_ID: 109
m_Name: Elment 108
m_Depth: 3
floatValue1: 0.4477641
floatValue2: 0.20427933