-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathTreeAsset 1.asset
More file actions
1850 lines (1850 loc) · 37.4 KB
/
TreeAsset 1.asset
File metadata and controls
1850 lines (1850 loc) · 37.4 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 1
m_EditorClassIdentifier:
m_TreeElements:
- m_ID: 0
m_Name: Root
m_Depth: -1
floatValue1: 0.66009873
floatValue2: 0.78176844
floatValue3: 0.92124486
material: {fileID: 0}
text:
enabled: 1
- m_ID: 1
m_Name: Elment 0
m_Depth: 0
floatValue1: 0.2904425
floatValue2: 0.35649112
floatValue3: 0.19333449
material: {fileID: 0}
text:
enabled: 1
- m_ID: 2
m_Name: Elment 1
m_Depth: 1
floatValue1: 0.26246038
floatValue2: 0.9655582
floatValue3: 0.64947313
material: {fileID: 0}
text:
enabled: 1
- m_ID: 3
m_Name: Elment 2
m_Depth: 2
floatValue1: 0.77537525
floatValue2: 0.8450552
floatValue3: 0.7085269
material: {fileID: 0}
text:
enabled: 1
- m_ID: 4
m_Name: Elment 3
m_Depth: 2
floatValue1: 0.002182603
floatValue2: 0.06565989
floatValue3: 0.3599464
material: {fileID: 0}
text:
enabled: 1
- m_ID: 5
m_Name: Elment 4
m_Depth: 2
floatValue1: 0.23778597
floatValue2: 0.733826
floatValue3: 0.67223865
material: {fileID: 0}
text:
enabled: 1
- m_ID: 6
m_Name: Elment 5
m_Depth: 2
floatValue1: 0.7567754
floatValue2: 0.04759825
floatValue3: 0.34198597
material: {fileID: 0}
text:
enabled: 1
- m_ID: 7
m_Name: Elment 6
m_Depth: 3
floatValue1: 0.14820816
floatValue2: 0.8408865
floatValue3: 0.52405006
material: {fileID: 0}
text:
enabled: 1
- m_ID: 8
m_Name: Elment 7
m_Depth: 3
floatValue1: 0.66344136
floatValue2: 0.26474467
floatValue3: 0.78579783
material: {fileID: 0}
text:
enabled: 1
- m_ID: 9
m_Name: Elment 8
m_Depth: 4
floatValue1: 0.7046544
floatValue2: 0.20132616
floatValue3: 0.7414685
material: {fileID: 0}
text:
enabled: 1
- m_ID: 10
m_Name: Elment 9
m_Depth: 4
floatValue1: 0.23123649
floatValue2: 0.68843466
floatValue3: 0.95672846
material: {fileID: 0}
text:
enabled: 1
- m_ID: 11
m_Name: Elment 10
m_Depth: 4
floatValue1: 0.46608847
floatValue2: 0.4610501
floatValue3: 0.8806833
material: {fileID: 0}
text:
enabled: 1
- m_ID: 12
m_Name: Elment 11
m_Depth: 4
floatValue1: 0.9121227
floatValue2: 0.7653564
floatValue3: 0.36842325
material: {fileID: 0}
text:
enabled: 1
- m_ID: 13
m_Name: Elment 12
m_Depth: 5
floatValue1: 0.8812115
floatValue2: 0.33516708
floatValue3: 0.991835
material: {fileID: 0}
text:
enabled: 1
- m_ID: 14
m_Name: Elment 13
m_Depth: 6
floatValue1: 0.43681532
floatValue2: 0.19406703
floatValue3: 0.6183986
material: {fileID: 0}
text:
enabled: 1
- m_ID: 15
m_Name: Elment 14
m_Depth: 6
floatValue1: 0.5202797
floatValue2: 0.835809
floatValue3: 0.9204756
material: {fileID: 0}
text:
enabled: 1
- m_ID: 16
m_Name: Elment 15
m_Depth: 6
floatValue1: 0.48418218
floatValue2: 0.4605083
floatValue3: 0.638305
material: {fileID: 0}
text:
enabled: 1
- m_ID: 17
m_Name: Elment 16
m_Depth: 6
floatValue1: 0.51542276
floatValue2: 0.4128477
floatValue3: 0.9131087
material: {fileID: 0}
text:
enabled: 1
- m_ID: 18
m_Name: Elment 17
m_Depth: 6
floatValue1: 0.760327
floatValue2: 0.20640102
floatValue3: 0.8327452
material: {fileID: 0}
text:
enabled: 1
- m_ID: 19
m_Name: Elment 18
m_Depth: 6
floatValue1: 0.35343137
floatValue2: 0.5415587
floatValue3: 0.6819251
material: {fileID: 0}
text:
enabled: 1
- m_ID: 20
m_Name: Elment 19
m_Depth: 6
floatValue1: 0.15946521
floatValue2: 0.24342373
floatValue3: 0.5661834
material: {fileID: 0}
text:
enabled: 1
- m_ID: 21
m_Name: Elment 20
m_Depth: 6
floatValue1: 0.3527409
floatValue2: 0.02217889
floatValue3: 0.94140327
material: {fileID: 0}
text:
enabled: 1
- m_ID: 22
m_Name: Elment 21
m_Depth: 6
floatValue1: 0.101444736
floatValue2: 0.02466536
floatValue3: 0.36922708
material: {fileID: 0}
text:
enabled: 1
- m_ID: 23
m_Name: Elment 22
m_Depth: 5
floatValue1: 0.062082775
floatValue2: 0.8999934
floatValue3: 0.952122
material: {fileID: 0}
text:
enabled: 1
- m_ID: 24
m_Name: Elment 23
m_Depth: 5
floatValue1: 0.37785858
floatValue2: 0.2212539
floatValue3: 0.24308124
material: {fileID: 0}
text:
enabled: 1
- m_ID: 25
m_Name: Elment 24
m_Depth: 5
floatValue1: 0.042754415
floatValue2: 0.6120289
floatValue3: 0.9277383
material: {fileID: 0}
text:
enabled: 1
- m_ID: 26
m_Name: Elment 25
m_Depth: 5
floatValue1: 0.04019857
floatValue2: 0.5013192
floatValue3: 0.9343952
material: {fileID: 0}
text:
enabled: 1
- m_ID: 27
m_Name: Elment 26
m_Depth: 5
floatValue1: 0.68368214
floatValue2: 0.45481962
floatValue3: 0.6743478
material: {fileID: 0}
text:
enabled: 1
- m_ID: 28
m_Name: Elment 27
m_Depth: 5
floatValue1: 0.12978365
floatValue2: 0.16912223
floatValue3: 0.4580248
material: {fileID: 0}
text:
enabled: 1
- m_ID: 29
m_Name: Elment 28
m_Depth: 5
floatValue1: 0.24273863
floatValue2: 0.26523462
floatValue3: 0.36776534
material: {fileID: 0}
text:
enabled: 1
- m_ID: 30
m_Name: Elment 29
m_Depth: 4
floatValue1: 0.111443296
floatValue2: 0.5441486
floatValue3: 0.578013
material: {fileID: 0}
text:
enabled: 1
- m_ID: 31
m_Name: Elment 30
m_Depth: 4
floatValue1: 0.38805372
floatValue2: 0.26763156
floatValue3: 0.048106678
material: {fileID: 0}
text:
enabled: 1
- m_ID: 32
m_Name: Elment 31
m_Depth: 4
floatValue1: 0.22026637
floatValue2: 0.15361299
floatValue3: 0.07202328
material: {fileID: 0}
text:
enabled: 1
- m_ID: 33
m_Name: Elment 32
m_Depth: 4
floatValue1: 0.52227145
floatValue2: 0.8595091
floatValue3: 0.69972116
material: {fileID: 0}
text:
enabled: 1
- m_ID: 34
m_Name: Elment 33
m_Depth: 3
floatValue1: 0.44310695
floatValue2: 0.86918044
floatValue3: 0.8532685
material: {fileID: 0}
text:
enabled: 1
- m_ID: 35
m_Name: Elment 34
m_Depth: 3
floatValue1: 0.26424113
floatValue2: 0.69616216
floatValue3: 0.7326848
material: {fileID: 0}
text:
enabled: 1
- m_ID: 36
m_Name: Elment 35
m_Depth: 3
floatValue1: 0.42181355
floatValue2: 0.6240118
floatValue3: 0.7187379
material: {fileID: 0}
text:
enabled: 1
- m_ID: 37
m_Name: Elment 36
m_Depth: 2
floatValue1: 0.22687593
floatValue2: 0.2898735
floatValue3: 0.5577641
material: {fileID: 0}
text:
enabled: 1
- m_ID: 38
m_Name: Elment 37
m_Depth: 2
floatValue1: 0.7607547
floatValue2: 0.7820785
floatValue3: 0.6213624
material: {fileID: 0}
text:
enabled: 1
- m_ID: 39
m_Name: Elment 38
m_Depth: 2
floatValue1: 0.25971916
floatValue2: 0.080044754
floatValue3: 0.029650215
material: {fileID: 0}
text:
enabled: 1
- m_ID: 40
m_Name: Elment 39
m_Depth: 2
floatValue1: 0.12741555
floatValue2: 0.73687977
floatValue3: 0.98383236
material: {fileID: 0}
text:
enabled: 1
- m_ID: 41
m_Name: Elment 40
m_Depth: 1
floatValue1: 0.45382625
floatValue2: 0.5040861
floatValue3: 0.19820753
material: {fileID: 0}
text:
enabled: 1
- m_ID: 42
m_Name: Elment 41
m_Depth: 1
floatValue1: 0.70753294
floatValue2: 0.25646403
floatValue3: 0.8472121
material: {fileID: 0}
text:
enabled: 1
- m_ID: 43
m_Name: Elment 42
m_Depth: 1
floatValue1: 0.9379926
floatValue2: 0.60548836
floatValue3: 0.5592225
material: {fileID: 0}
text:
enabled: 1
- m_ID: 44
m_Name: Elment 43
m_Depth: 1
floatValue1: 0.9941584
floatValue2: 0.9502373
floatValue3: 0.89082515
material: {fileID: 0}
text:
enabled: 1
- m_ID: 45
m_Name: Elment 44
m_Depth: 1
floatValue1: 0.10642864
floatValue2: 0.40395516
floatValue3: 0.5769296
material: {fileID: 0}
text:
enabled: 1
- m_ID: 46
m_Name: Elment 45
m_Depth: 1
floatValue1: 0.30304864
floatValue2: 0.05961848
floatValue3: 0.29438093
material: {fileID: 0}
text:
enabled: 1
- m_ID: 47
m_Name: Elment 46
m_Depth: 0
floatValue1: 0.104324475
floatValue2: 0.39136606
floatValue3: 0.021964552
material: {fileID: 0}
text:
enabled: 1
- m_ID: 48
m_Name: Elment 47
m_Depth: 0
floatValue1: 0.35584167
floatValue2: 0.97850394
floatValue3: 0.7607634
material: {fileID: 0}
text:
enabled: 1
- m_ID: 49
m_Name: Elment 48
m_Depth: 0
floatValue1: 0.6401269
floatValue2: 0.5329415
floatValue3: 0.415258
material: {fileID: 0}
text:
enabled: 1
- m_ID: 50
m_Name: Elment 49
m_Depth: 0
floatValue1: 0.65308136
floatValue2: 0.8568425
floatValue3: 0.48374242
material: {fileID: 0}
text:
enabled: 1
- m_ID: 51
m_Name: Elment 50
m_Depth: 0
floatValue1: 0.3030292
floatValue2: 0.30833188
floatValue3: 0.2098724
material: {fileID: 0}
text:
enabled: 1
- m_ID: 52
m_Name: Elment 51
m_Depth: 0
floatValue1: 0.8604102
floatValue2: 0.48459846
floatValue3: 0.43738288
material: {fileID: 0}
text:
enabled: 1
- m_ID: 53
m_Name: Elment 52
m_Depth: 0
floatValue1: 0.16025509
floatValue2: 0.027503256
floatValue3: 0.8979521
material: {fileID: 0}
text:
enabled: 1
- m_ID: 54
m_Name: Elment 53
m_Depth: 0
floatValue1: 0.63064
floatValue2: 0.3672383
floatValue3: 0.2913219
material: {fileID: 0}
text:
enabled: 1
- m_ID: 55
m_Name: Elment 54
m_Depth: 1
floatValue1: 0.15058734
floatValue2: 0.72762054
floatValue3: 0.545381
material: {fileID: 0}
text:
enabled: 1
- m_ID: 56
m_Name: Elment 55
m_Depth: 1
floatValue1: 0.13280477
floatValue2: 0.7872063
floatValue3: 0.6240383
material: {fileID: 0}
text:
enabled: 1
- m_ID: 57
m_Name: Elment 56
m_Depth: 1
floatValue1: 0.16266038
floatValue2: 0.008303047
floatValue3: 0.8305054
material: {fileID: 0}
text:
enabled: 1
- m_ID: 58
m_Name: Elment 57
m_Depth: 2
floatValue1: 0.00944233
floatValue2: 0.98115766
floatValue3: 0.78865635
material: {fileID: 0}
text:
enabled: 1
- m_ID: 59
m_Name: Elment 58
m_Depth: 2
floatValue1: 0.22240463
floatValue2: 0.72829324
floatValue3: 0.28694525
material: {fileID: 0}
text:
enabled: 1
- m_ID: 60
m_Name: Elment 59
m_Depth: 3
floatValue1: 0.8239329
floatValue2: 0.46693438
floatValue3: 0.7486401
material: {fileID: 0}
text:
enabled: 1
- m_ID: 61
m_Name: Elment 60
m_Depth: 4
floatValue1: 0.40620095
floatValue2: 0.28812423
floatValue3: 0.21195689
material: {fileID: 0}
text:
enabled: 1
- m_ID: 62
m_Name: Elment 61
m_Depth: 4
floatValue1: 0.05934096
floatValue2: 0.23290876
floatValue3: 0.09961428
material: {fileID: 0}
text:
enabled: 1
- m_ID: 63
m_Name: Elment 62
m_Depth: 5
floatValue1: 0.3024054
floatValue2: 0.94658256
floatValue3: 0.19603077
material: {fileID: 0}
text:
enabled: 1
- m_ID: 64
m_Name: Elment 63
m_Depth: 5
floatValue1: 0.59777766
floatValue2: 0.331705
floatValue3: 0.5236545
material: {fileID: 0}
text:
enabled: 1
- m_ID: 65
m_Name: Elment 64
m_Depth: 6
floatValue1: 0.9094429
floatValue2: 0.24544647
floatValue3: 0.08270479
material: {fileID: 0}
text:
enabled: 1
- m_ID: 66
m_Name: Elment 65
m_Depth: 6
floatValue1: 0.8245908
floatValue2: 0.84509015
floatValue3: 0.56330997
material: {fileID: 0}
text:
enabled: 1
- m_ID: 67
m_Name: Elment 66
m_Depth: 6
floatValue1: 0.67203695
floatValue2: 0.49418885
floatValue3: 0.29066506
material: {fileID: 0}
text:
enabled: 1
- m_ID: 68
m_Name: Elment 67
m_Depth: 6
floatValue1: 0.40735596
floatValue2: 0.008621694
floatValue3: 0.20493594
material: {fileID: 0}
text:
enabled: 1
- m_ID: 69
m_Name: Elment 68
m_Depth: 6
floatValue1: 0.33240262
floatValue2: 0.15482642
floatValue3: 0.7497631
material: {fileID: 0}
text:
enabled: 1
- m_ID: 70
m_Name: Elment 69
m_Depth: 6
floatValue1: 0.27342907
floatValue2: 0.24185482
floatValue3: 0.9112252
material: {fileID: 0}
text:
enabled: 1
- m_ID: 71
m_Name: Elment 70
m_Depth: 5
floatValue1: 0.046791676
floatValue2: 0.023389937
floatValue3: 0.5395456
material: {fileID: 0}
text:
enabled: 1
- m_ID: 72
m_Name: Elment 71
m_Depth: 5
floatValue1: 0.08148003
floatValue2: 0.2295902
floatValue3: 0.65973836
material: {fileID: 0}
text:
enabled: 1
- m_ID: 73
m_Name: Elment 72
m_Depth: 5
floatValue1: 0.59177274
floatValue2: 0.09713282
floatValue3: 0.40005165
material: {fileID: 0}
text:
enabled: 1
- m_ID: 74
m_Name: Elment 73
m_Depth: 5
floatValue1: 0.99519455
floatValue2: 0.16517736
floatValue3: 0.14587523
material: {fileID: 0}
text:
enabled: 1
- m_ID: 75
m_Name: Elment 74
m_Depth: 5
floatValue1: 0.58158654
floatValue2: 0.13807775
floatValue3: 0.3024669
material: {fileID: 0}
text:
enabled: 1
- m_ID: 76
m_Name: Elment 75
m_Depth: 4
floatValue1: 0.92410994
floatValue2: 0.28745857
floatValue3: 0.7625998
material: {fileID: 0}
text:
enabled: 1
- m_ID: 77
m_Name: Elment 76
m_Depth: 4
floatValue1: 0.1929926
floatValue2: 0.43626148
floatValue3: 0.36871734
material: {fileID: 0}
text:
enabled: 1
- m_ID: 78
m_Name: Elment 77
m_Depth: 4
floatValue1: 0.32710305
floatValue2: 0.58450454
floatValue3: 0.61952513
material: {fileID: 0}
text:
enabled: 1
- m_ID: 79
m_Name: Elment 78
m_Depth: 4
floatValue1: 0.41147918
floatValue2: 0.14128329
floatValue3: 0.7606963
material: {fileID: 0}
text:
enabled: 1
- m_ID: 80
m_Name: Elment 79
m_Depth: 4
floatValue1: 0.03326452
floatValue2: 0.015259149
floatValue3: 0.834828
material: {fileID: 0}
text:
enabled: 1
- m_ID: 81
m_Name: Elment 80
m_Depth: 3
floatValue1: 0.58600944
floatValue2: 0.7988775
floatValue3: 0.49968427
material: {fileID: 0}
text:
enabled: 1
- m_ID: 82
m_Name: Elment 81
m_Depth: 3
floatValue1: 0.024036769
floatValue2: 0.86133695
floatValue3: 0.0053770547
material: {fileID: 0}
text:
enabled: 1
- m_ID: 83
m_Name: Elment 82
m_Depth: 3
floatValue1: 0.3789255
floatValue2: 0.47833127
floatValue3: 0.8774177
material: {fileID: 0}
text:
enabled: 1
- m_ID: 84
m_Name: Elment 83
m_Depth: 3
floatValue1: 0.83902586
floatValue2: 0.52329737
floatValue3: 0.69567996
material: {fileID: 0}
text:
enabled: 1
- m_ID: 85
m_Name: Elment 84
m_Depth: 3
floatValue1: 0.9631045
floatValue2: 0.14409794
floatValue3: 0.62202567
material: {fileID: 0}
text:
enabled: 1
- m_ID: 86
m_Name: Elment 85
m_Depth: 2
floatValue1: 0.29218772
floatValue2: 0.67263454
floatValue3: 0.31287435
material: {fileID: 0}
text:
enabled: 1
- m_ID: 87
m_Name: Elment 86
m_Depth: 2
floatValue1: 0.49533838
floatValue2: 0.5697169
floatValue3: 0.34461716
material: {fileID: 0}
text:
enabled: 1
- m_ID: 88
m_Name: Elment 87
m_Depth: 2
floatValue1: 0.20754388
floatValue2: 0.31725612
floatValue3: 0.35391346
material: {fileID: 0}
text:
enabled: 1
- m_ID: 89
m_Name: Elment 88
m_Depth: 2
floatValue1: 0.4179532
floatValue2: 0.462969
floatValue3: 0.74285823
material: {fileID: 0}
text:
enabled: 1
- m_ID: 90
m_Name: Elment 89
m_Depth: 1
floatValue1: 0.46105856
floatValue2: 0.9218364
floatValue3: 0.80760896
material: {fileID: 0}
text:
enabled: 1
- m_ID: 91
m_Name: Elment 90
m_Depth: 1
floatValue1: 0.89623094
floatValue2: 0.13770987
floatValue3: 0.49768
material: {fileID: 0}
text:
enabled: 1
- m_ID: 92
m_Name: Elment 91
m_Depth: 1
floatValue1: 0.7791405
floatValue2: 0.14728846
floatValue3: 0.2814696
material: {fileID: 0}
text:
enabled: 1
- m_ID: 93
m_Name: Elment 92
m_Depth: 1
floatValue1: 0.14449336
floatValue2: 0.4003176
floatValue3: 0.8684703
material: {fileID: 0}
text:
enabled: 1
- m_ID: 94
m_Name: Elment 93
m_Depth: 1
floatValue1: 0.36818066
floatValue2: 0.5113273
floatValue3: 0.052086003
material: {fileID: 0}
text:
enabled: 1
- m_ID: 95
m_Name: Elment 94
m_Depth: 1
floatValue1: 0.039802317
floatValue2: 0.30074087
floatValue3: 0.18361832
material: {fileID: 0}
text:
enabled: 1
- m_ID: 96
m_Name: Elment 95
m_Depth: 0
floatValue1: 0.9976876
floatValue2: 0.58957833
floatValue3: 0.23475197
material: {fileID: 0}
text:
enabled: 1
- m_ID: 97
m_Name: Elment 96
m_Depth: 0
floatValue1: 0.6923899
floatValue2: 0.27607945
floatValue3: 0.46092612
material: {fileID: 0}
text:
enabled: 1
- m_ID: 98
m_Name: Elment 97
m_Depth: 0
floatValue1: 0.6854145
floatValue2: 0.1832036
floatValue3: 0.3698819
material: {fileID: 0}
text:
enabled: 1
- m_ID: 99
m_Name: Elment 98
m_Depth: 0
floatValue1: 0.8552313
floatValue2: 0.50961
floatValue3: 0.3778339
material: {fileID: 0}
text:
enabled: 1
- m_ID: 100
m_Name: Elment 99
m_Depth: 0
floatValue1: 0.91466355
floatValue2: 0.30067244
floatValue3: 0.8825798
material: {fileID: 0}
text:
enabled: 1
- m_ID: 101
m_Name: Elment 100
m_Depth: 1
floatValue1: 0.24002531
floatValue2: 0.50371915
floatValue3: 0.5920841
material: {fileID: 0}
text:
enabled: 1
- m_ID: 102
m_Name: Elment 101
m_Depth: 2
floatValue1: 0.55453545
floatValue2: 0.42532212
floatValue3: 0.047281034
material: {fileID: 0}
text:
enabled: 1
- m_ID: 103
m_Name: Elment 102
m_Depth: 3
floatValue1: 0.034979586
floatValue2: 0.6591937
floatValue3: 0.58937067
material: {fileID: 0}
text:
enabled: 1
- m_ID: 104
m_Name: Elment 103
m_Depth: 3
floatValue1: 0.3199518
floatValue2: 0.46427232
floatValue3: 0.23547056
material: {fileID: 0}
text:
enabled: 1
- m_ID: 105
m_Name: Elment 104
m_Depth: 4
floatValue1: 0.86550665
floatValue2: 0.01410711
floatValue3: 0.6913406
material: {fileID: 0}
text:
enabled: 1
- m_ID: 106
m_Name: Elment 105
m_Depth: 5
floatValue1: 0.18055584
floatValue2: 0.2701085
floatValue3: 0.09931292
material: {fileID: 0}
text:
enabled: 1
- m_ID: 107
m_Name: Elment 106
m_Depth: 6
floatValue1: 0.4871289
floatValue2: 0.3439137
floatValue3: 0.64897424
material: {fileID: 0}
text:
enabled: 1
- m_ID: 108
m_Name: Elment 107
m_Depth: 6
floatValue1: 0.049257405
floatValue2: 0.5401791
floatValue3: 0.6042144
material: {fileID: 0}
text:
enabled: 1
- m_ID: 109
m_Name: Elment 108
m_Depth: 6
floatValue1: 0.65244263
floatValue2: 0.8599297