-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathTreeAsset 4.asset
More file actions
1472 lines (1472 loc) · 29.9 KB
/
TreeAsset 4.asset
File metadata and controls
1472 lines (1472 loc) · 29.9 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 4
m_EditorClassIdentifier:
m_TreeElements:
- m_ID: 0
m_Name: Root
m_Depth: -1
floatValue1: 0.78465235
floatValue2: 0.7388641
floatValue3: 0.6701713
material: {fileID: 0}
text:
enabled: 1
- m_ID: 1
m_Name: Element 0
m_Depth: 0
floatValue1: 0.690584
floatValue2: 0.3781461
floatValue3: 0.8027656
material: {fileID: 0}
text:
enabled: 1
- m_ID: 2
m_Name: Element 1
m_Depth: 1
floatValue1: 0.9018501
floatValue2: 0.34485295
floatValue3: 0.7672441
material: {fileID: 0}
text:
enabled: 1
- m_ID: 3
m_Name: Element 2
m_Depth: 2
floatValue1: 0.93038154
floatValue2: 0.45773548
floatValue3: 0.48727137
material: {fileID: 0}
text:
enabled: 1
- m_ID: 4
m_Name: Element 3
m_Depth: 2
floatValue1: 0.5820913
floatValue2: 0.34384754
floatValue3: 0.8659518
material: {fileID: 0}
text:
enabled: 1
- m_ID: 5
m_Name: Element 4
m_Depth: 2
floatValue1: 0.64193183
floatValue2: 0.23101917
floatValue3: 0.31684545
material: {fileID: 0}
text:
enabled: 1
- m_ID: 6
m_Name: Element 5
m_Depth: 3
floatValue1: 0.54026705
floatValue2: 0.40898067
floatValue3: 0.84919095
material: {fileID: 0}
text:
enabled: 1
- m_ID: 7
m_Name: Element 6
m_Depth: 3
floatValue1: 0.2672433
floatValue2: 0.09209824
floatValue3: 0.7801994
material: {fileID: 0}
text:
enabled: 1
- m_ID: 8
m_Name: Element 7
m_Depth: 4
floatValue1: 0.2999622
floatValue2: 0.30595425
floatValue3: 0.08209158
material: {fileID: 0}
text:
enabled: 1
- m_ID: 9
m_Name: Element 8
m_Depth: 4
floatValue1: 0.81423306
floatValue2: 0.5585632
floatValue3: 0.11054374
material: {fileID: 0}
text:
enabled: 1
- m_ID: 10
m_Name: Element 9
m_Depth: 5
floatValue1: 0.7782197
floatValue2: 0.02343619
floatValue3: 0.84963703
material: {fileID: 0}
text:
enabled: 1
- m_ID: 11
m_Name: Element 10
m_Depth: 6
floatValue1: 0.74078923
floatValue2: 0.3734868
floatValue3: 0.8505391
material: {fileID: 0}
text:
enabled: 1
- m_ID: 12
m_Name: Element 11
m_Depth: 6
floatValue1: 0.6803506
floatValue2: 0.16993763
floatValue3: 0.4659918
material: {fileID: 0}
text:
enabled: 1
- m_ID: 13
m_Name: Element 12
m_Depth: 6
floatValue1: 0.33400813
floatValue2: 0.88682675
floatValue3: 0.03236604
material: {fileID: 0}
text:
enabled: 1
- m_ID: 14
m_Name: Element 13
m_Depth: 6
floatValue1: 0.7755799
floatValue2: 0.5234315
floatValue3: 0.6244435
material: {fileID: 0}
text:
enabled: 1
- m_ID: 15
m_Name: Element 14
m_Depth: 6
floatValue1: 0.5703587
floatValue2: 0.08836127
floatValue3: 0.22862878
material: {fileID: 0}
text:
enabled: 1
- m_ID: 16
m_Name: Element 15
m_Depth: 6
floatValue1: 0.7093319
floatValue2: 0.5437216
floatValue3: 0.47566384
material: {fileID: 0}
text:
enabled: 1
- m_ID: 17
m_Name: Element 16
m_Depth: 6
floatValue1: 0.4505027
floatValue2: 0.2381666
floatValue3: 0.28016785
material: {fileID: 0}
text:
enabled: 1
- m_ID: 18
m_Name: Element 17
m_Depth: 6
floatValue1: 0.32161167
floatValue2: 0.3817355
floatValue3: 0.8207691
material: {fileID: 0}
text:
enabled: 1
- m_ID: 19
m_Name: Element 18
m_Depth: 5
floatValue1: 0.76382315
floatValue2: 0.7770419
floatValue3: 0.09096611
material: {fileID: 0}
text:
enabled: 1
- m_ID: 20
m_Name: Element 19
m_Depth: 5
floatValue1: 0.03819764
floatValue2: 0.04372168
floatValue3: 0.5133371
material: {fileID: 0}
text:
enabled: 1
- m_ID: 21
m_Name: Element 20
m_Depth: 5
floatValue1: 0.12847807
floatValue2: 0.21773508
floatValue3: 0.8844099
material: {fileID: 0}
text:
enabled: 1
- m_ID: 22
m_Name: Element 21
m_Depth: 5
floatValue1: 0.09094644
floatValue2: 0.56554455
floatValue3: 0.76705194
material: {fileID: 0}
text:
enabled: 1
- m_ID: 23
m_Name: Element 22
m_Depth: 5
floatValue1: 0.32502154
floatValue2: 0.52527577
floatValue3: 0.3633156
material: {fileID: 0}
text:
enabled: 1
- m_ID: 24
m_Name: Element 23
m_Depth: 5
floatValue1: 0.18875328
floatValue2: 0.4341206
floatValue3: 0.10781874
material: {fileID: 0}
text:
enabled: 1
- m_ID: 25
m_Name: Element 24
m_Depth: 5
floatValue1: 0.81201744
floatValue2: 0.20127216
floatValue3: 0.8084811
material: {fileID: 0}
text:
enabled: 1
- m_ID: 26
m_Name: Element 25
m_Depth: 5
floatValue1: 0.38991886
floatValue2: 0.83531296
floatValue3: 0.3270748
material: {fileID: 0}
text:
enabled: 1
- m_ID: 27
m_Name: Element 26
m_Depth: 4
floatValue1: 0.13141276
floatValue2: 0.99856615
floatValue3: 0.3197259
material: {fileID: 0}
text:
enabled: 1
- m_ID: 28
m_Name: Element 27
m_Depth: 4
floatValue1: 0.5735555
floatValue2: 0.8266897
floatValue3: 0.7169334
material: {fileID: 0}
text:
enabled: 1
- m_ID: 29
m_Name: Element 28
m_Depth: 4
floatValue1: 0.9849498
floatValue2: 0.6321258
floatValue3: 0.3276128
material: {fileID: 0}
text:
enabled: 1
- m_ID: 30
m_Name: Element 29
m_Depth: 3
floatValue1: 0.27806142
floatValue2: 0.9223348
floatValue3: 0.26237503
material: {fileID: 0}
text:
enabled: 1
- m_ID: 31
m_Name: Element 30
m_Depth: 3
floatValue1: 0.7293312
floatValue2: 0.89721096
floatValue3: 0.015112521
material: {fileID: 0}
text:
enabled: 1
- m_ID: 32
m_Name: Element 31
m_Depth: 3
floatValue1: 0.019471766
floatValue2: 0.13320018
floatValue3: 0.5166593
material: {fileID: 0}
text:
enabled: 1
- m_ID: 33
m_Name: Element 32
m_Depth: 3
floatValue1: 0.22631684
floatValue2: 0.8843261
floatValue3: 0.18262137
material: {fileID: 0}
text:
enabled: 1
- m_ID: 34
m_Name: Element 33
m_Depth: 3
floatValue1: 0.12787451
floatValue2: 0.11568381
floatValue3: 0.77100766
material: {fileID: 0}
text:
enabled: 1
- m_ID: 35
m_Name: Element 34
m_Depth: 2
floatValue1: 0.79604375
floatValue2: 0.8686942
floatValue3: 0.30235103
material: {fileID: 0}
text:
enabled: 1
- m_ID: 36
m_Name: Element 35
m_Depth: 2
floatValue1: 0.8390788
floatValue2: 0.4864021
floatValue3: 0.123356834
material: {fileID: 0}
text:
enabled: 1
- m_ID: 37
m_Name: Element 36
m_Depth: 2
floatValue1: 0.106030956
floatValue2: 0.7697053
floatValue3: 0.9868734
material: {fileID: 0}
text:
enabled: 1
- m_ID: 38
m_Name: Element 37
m_Depth: 2
floatValue1: 0.07278276
floatValue2: 0.6215791
floatValue3: 0.85524964
material: {fileID: 0}
text:
enabled: 1
- m_ID: 39
m_Name: Element 38
m_Depth: 1
floatValue1: 0.976305
floatValue2: 0.42177206
floatValue3: 0.8648939
material: {fileID: 0}
text:
enabled: 1
- m_ID: 40
m_Name: Element 39
m_Depth: 1
floatValue1: 0.627822
floatValue2: 0.055533536
floatValue3: 0.34253624
material: {fileID: 0}
text:
enabled: 1
- m_ID: 41
m_Name: Element 40
m_Depth: 1
floatValue1: 0.19615105
floatValue2: 0.9733243
floatValue3: 0.87475
material: {fileID: 0}
text:
enabled: 1
- m_ID: 42
m_Name: Element 41
m_Depth: 1
floatValue1: 0.97560155
floatValue2: 0.33787778
floatValue3: 0.40980095
material: {fileID: 0}
text:
enabled: 1
- m_ID: 43
m_Name: Element 42
m_Depth: 0
floatValue1: 0.552146
floatValue2: 0.14854898
floatValue3: 0.16911115
material: {fileID: 0}
text:
enabled: 1
- m_ID: 44
m_Name: Element 43
m_Depth: 0
floatValue1: 0.36357155
floatValue2: 0.6616948
floatValue3: 0.43216354
material: {fileID: 0}
text:
enabled: 1
- m_ID: 45
m_Name: Element 44
m_Depth: 0
floatValue1: 0.5749442
floatValue2: 0.34481862
floatValue3: 0.897261
material: {fileID: 0}
text:
enabled: 1
- m_ID: 46
m_Name: Element 45
m_Depth: 0
floatValue1: 0.362757
floatValue2: 0.65494543
floatValue3: 0.40725154
material: {fileID: 0}
text:
enabled: 1
- m_ID: 47
m_Name: Element 46
m_Depth: 0
floatValue1: 0.3198097
floatValue2: 0.77212226
floatValue3: 0.018036248
material: {fileID: 0}
text:
enabled: 1
- m_ID: 48
m_Name: Element 47
m_Depth: 0
floatValue1: 0.79393864
floatValue2: 0.6501407
floatValue3: 0.8133391
material: {fileID: 0}
text:
enabled: 1
- m_ID: 49
m_Name: Element 48
m_Depth: 1
floatValue1: 0.81589794
floatValue2: 0.9595598
floatValue3: 0.17219926
material: {fileID: 0}
text:
enabled: 1
- m_ID: 50
m_Name: Element 49
m_Depth: 2
floatValue1: 0.5013259
floatValue2: 0.8393098
floatValue3: 0.35542265
material: {fileID: 0}
text:
enabled: 1
- m_ID: 51
m_Name: Element 50
m_Depth: 2
floatValue1: 0.83831
floatValue2: 0.2910097
floatValue3: 0.39399737
material: {fileID: 0}
text:
enabled: 1
- m_ID: 52
m_Name: Element 51
m_Depth: 3
floatValue1: 0.35998753
floatValue2: 0.9974557
floatValue3: 0.19965926
material: {fileID: 0}
text:
enabled: 1
- m_ID: 53
m_Name: Element 52
m_Depth: 3
floatValue1: 0.47016805
floatValue2: 0.11415054
floatValue3: 0.12896396
material: {fileID: 0}
text:
enabled: 1
- m_ID: 54
m_Name: Element 53
m_Depth: 3
floatValue1: 0.47074872
floatValue2: 0.3575813
floatValue3: 0.5811054
material: {fileID: 0}
text:
enabled: 1
- m_ID: 55
m_Name: Element 54
m_Depth: 3
floatValue1: 0.6814173
floatValue2: 0.8413907
floatValue3: 0.6350133
material: {fileID: 0}
text:
enabled: 1
- m_ID: 56
m_Name: Element 55
m_Depth: 4
floatValue1: 0.9950912
floatValue2: 0.44470304
floatValue3: 0.37269238
material: {fileID: 0}
text:
enabled: 1
- m_ID: 57
m_Name: Element 56
m_Depth: 4
floatValue1: 0.5860395
floatValue2: 0.17617191
floatValue3: 0.18481173
material: {fileID: 0}
text:
enabled: 1
- m_ID: 58
m_Name: Element 57
m_Depth: 4
floatValue1: 0.3472773
floatValue2: 0.93653417
floatValue3: 0.87664056
material: {fileID: 0}
text:
enabled: 1
- m_ID: 59
m_Name: Element 58
m_Depth: 5
floatValue1: 0.5815627
floatValue2: 0.3601952
floatValue3: 0.5191011
material: {fileID: 0}
text:
enabled: 1
- m_ID: 60
m_Name: Element 59
m_Depth: 5
floatValue1: 0.59727174
floatValue2: 0.39142865
floatValue3: 0.8053243
material: {fileID: 0}
text:
enabled: 1
- m_ID: 61
m_Name: Element 60
m_Depth: 5
floatValue1: 0.68190664
floatValue2: 0.9224142
floatValue3: 0.55271405
material: {fileID: 0}
text:
enabled: 1
- m_ID: 62
m_Name: Element 61
m_Depth: 5
floatValue1: 0.6098395
floatValue2: 0.21277168
floatValue3: 0.9813037
material: {fileID: 0}
text:
enabled: 1
- m_ID: 63
m_Name: Element 62
m_Depth: 6
floatValue1: 0.36881688
floatValue2: 0.7366592
floatValue3: 0.33789006
material: {fileID: 0}
text:
enabled: 1
- m_ID: 64
m_Name: Element 63
m_Depth: 6
floatValue1: 0.21401611
floatValue2: 0.8317101
floatValue3: 0.12703039
material: {fileID: 0}
text:
enabled: 1
- m_ID: 65
m_Name: Element 64
m_Depth: 6
floatValue1: 0.66213244
floatValue2: 0.7138025
floatValue3: 0.07405294
material: {fileID: 0}
text:
enabled: 1
- m_ID: 66
m_Name: Element 65
m_Depth: 6
floatValue1: 0.34561935
floatValue2: 0.16212846
floatValue3: 0.4951803
material: {fileID: 0}
text:
enabled: 1
- m_ID: 67
m_Name: Element 66
m_Depth: 6
floatValue1: 0.81512403
floatValue2: 0.38285524
floatValue3: 0.9792609
material: {fileID: 0}
text:
enabled: 1
- m_ID: 68
m_Name: Element 67
m_Depth: 6
floatValue1: 0.30752113
floatValue2: 0.8965485
floatValue3: 0.27258638
material: {fileID: 0}
text:
enabled: 1
- m_ID: 69
m_Name: Element 68
m_Depth: 5
floatValue1: 0.17803337
floatValue2: 0.36156347
floatValue3: 0.20050696
material: {fileID: 0}
text:
enabled: 1
- m_ID: 70
m_Name: Element 69
m_Depth: 4
floatValue1: 0.17267884
floatValue2: 0.11262752
floatValue3: 0.5131008
material: {fileID: 0}
text:
enabled: 1
- m_ID: 71
m_Name: Element 70
m_Depth: 4
floatValue1: 0.33321145
floatValue2: 0.28826204
floatValue3: 0.09955098
material: {fileID: 0}
text:
enabled: 1
- m_ID: 72
m_Name: Element 71
m_Depth: 4
floatValue1: 0.37572652
floatValue2: 0.26918414
floatValue3: 0.8643211
material: {fileID: 0}
text:
enabled: 1
- m_ID: 73
m_Name: Element 72
m_Depth: 3
floatValue1: 0.07696808
floatValue2: 0.94310606
floatValue3: 0.738136
material: {fileID: 0}
text:
enabled: 1
- m_ID: 74
m_Name: Element 73
m_Depth: 2
floatValue1: 0.6127507
floatValue2: 0.59044474
floatValue3: 0.76955116
material: {fileID: 0}
text:
enabled: 1
- m_ID: 75
m_Name: Element 74
m_Depth: 2
floatValue1: 0.010200382
floatValue2: 0.42243642
floatValue3: 0.6784865
material: {fileID: 0}
text:
enabled: 1
- m_ID: 76
m_Name: Element 75
m_Depth: 2
floatValue1: 0.6819791
floatValue2: 0.2166529
floatValue3: 0.7076338
material: {fileID: 0}
text:
enabled: 1
- m_ID: 77
m_Name: Element 76
m_Depth: 2
floatValue1: 0.21165255
floatValue2: 0.5016058
floatValue3: 0.24250355
material: {fileID: 0}
text:
enabled: 1
- m_ID: 78
m_Name: Element 77
m_Depth: 1
floatValue1: 0.54255
floatValue2: 0.44504815
floatValue3: 0.5587335
material: {fileID: 0}
text:
enabled: 1
- m_ID: 79
m_Name: Element 78
m_Depth: 1
floatValue1: 0.071473606
floatValue2: 0.3193641
floatValue3: 0.16164507
material: {fileID: 0}
text:
enabled: 1
- m_ID: 80
m_Name: Element 79
m_Depth: 1
floatValue1: 0.74512607
floatValue2: 0.09077454
floatValue3: 0.164099
material: {fileID: 0}
text:
enabled: 1
- m_ID: 81
m_Name: Element 80
m_Depth: 1
floatValue1: 0.4745739
floatValue2: 0.9867344
floatValue3: 0.03728712
material: {fileID: 0}
text:
enabled: 1
- m_ID: 82
m_Name: Element 81
m_Depth: 1
floatValue1: 0.4598884
floatValue2: 0.9468659
floatValue3: 0.24413362
material: {fileID: 0}
text:
enabled: 1
- m_ID: 83
m_Name: Element 82
m_Depth: 1
floatValue1: 0.7652384
floatValue2: 0.81340754
floatValue3: 0.54997486
material: {fileID: 0}
text:
enabled: 1
- m_ID: 84
m_Name: Element 83
m_Depth: 1
floatValue1: 0.044957522
floatValue2: 0.7876861
floatValue3: 0.3948577
material: {fileID: 0}
text:
enabled: 1
- m_ID: 85
m_Name: Element 84
m_Depth: 1
floatValue1: 0.08758331
floatValue2: 0.55696577
floatValue3: 0.72104603
material: {fileID: 0}
text:
enabled: 1
- m_ID: 86
m_Name: Element 85
m_Depth: 0
floatValue1: 0.37594563
floatValue2: 0.5485856
floatValue3: 0.5404096
material: {fileID: 0}
text:
enabled: 1
- m_ID: 87
m_Name: Element 86
m_Depth: 0
floatValue1: 0.43430847
floatValue2: 0.38172728
floatValue3: 0.89383686
material: {fileID: 0}
text:
enabled: 1
- m_ID: 88
m_Name: Element 87
m_Depth: 0
floatValue1: 0.9181707
floatValue2: 0.58606905
floatValue3: 0.860554
material: {fileID: 0}
text:
enabled: 1
- m_ID: 89
m_Name: Element 88
m_Depth: 0
floatValue1: 0.16102637
floatValue2: 0.30940655
floatValue3: 0.13645853
material: {fileID: 0}
text:
enabled: 1
- m_ID: 90
m_Name: Element 89
m_Depth: 0
floatValue1: 0.85226727
floatValue2: 0.7739941
floatValue3: 0.05353988
material: {fileID: 0}
text:
enabled: 1
- m_ID: 91
m_Name: Element 90
m_Depth: 1
floatValue1: 0.34155133
floatValue2: 0.76726913
floatValue3: 0.12133266
material: {fileID: 0}
text:
enabled: 1
- m_ID: 92
m_Name: Element 91
m_Depth: 2
floatValue1: 0.6694054
floatValue2: 0.09897925
floatValue3: 0.78147113
material: {fileID: 0}
text:
enabled: 1
- m_ID: 93
m_Name: Element 92
m_Depth: 2
floatValue1: 0.038183454
floatValue2: 0.5801224
floatValue3: 0.98021936
material: {fileID: 0}
text:
enabled: 1
- m_ID: 94
m_Name: Element 93
m_Depth: 2
floatValue1: 0.86168647
floatValue2: 0.24074486
floatValue3: 0.4953944
material: {fileID: 0}
text:
enabled: 1
- m_ID: 95
m_Name: Element 94
m_Depth: 3
floatValue1: 0.7134611
floatValue2: 0.19910029
floatValue3: 0.43869108
material: {fileID: 0}
text:
enabled: 1
- m_ID: 96
m_Name: Element 95
m_Depth: 3
floatValue1: 0.87047374
floatValue2: 0.33650604
floatValue3: 0.722858
material: {fileID: 0}
text:
enabled: 1
- m_ID: 97
m_Name: Element 96
m_Depth: 4
floatValue1: 0.6232527
floatValue2: 0.8577001
floatValue3: 0.06831802
material: {fileID: 0}
text:
enabled: 1
- m_ID: 98
m_Name: Element 97
m_Depth: 5
floatValue1: 0.86521935
floatValue2: 0.84648895
floatValue3: 0.30628195
material: {fileID: 0}
text:
enabled: 1
- m_ID: 99
m_Name: Element 98
m_Depth: 5
floatValue1: 0.44804972
floatValue2: 0.85768807
floatValue3: 0.31683043
material: {fileID: 0}
text:
enabled: 1
- m_ID: 100
m_Name: Element 99
m_Depth: 6
floatValue1: 0.53292686
floatValue2: 0.95182824
floatValue3: 0.491028
material: {fileID: 0}
text:
enabled: 1
- m_ID: 101
m_Name: Element 100
m_Depth: 6
floatValue1: 0.13261355
floatValue2: 0.44106168
floatValue3: 0.5532915
material: {fileID: 0}
text:
enabled: 1
- m_ID: 102
m_Name: Element 101
m_Depth: 6
floatValue1: 0.113734975
floatValue2: 0.3563371
floatValue3: 0.104096666
material: {fileID: 0}
text:
enabled: 1
- m_ID: 103
m_Name: Element 102
m_Depth: 6
floatValue1: 0.2991791
floatValue2: 0.20531431
floatValue3: 0.56533796
material: {fileID: 0}
text:
enabled: 1
- m_ID: 104
m_Name: Element 103
m_Depth: 6
floatValue1: 0.22562149
floatValue2: 0.13590755
floatValue3: 0.5585703
material: {fileID: 0}
text:
enabled: 1
- m_ID: 105
m_Name: Element 104
m_Depth: 6
floatValue1: 0.046917565
floatValue2: 0.39121932
floatValue3: 0.36342707
material: {fileID: 0}
text:
enabled: 1
- m_ID: 106
m_Name: Element 105
m_Depth: 5
floatValue1: 0.94556487
floatValue2: 0.17960085
floatValue3: 0.74872595
material: {fileID: 0}
text:
enabled: 1
- m_ID: 107
m_Name: Element 106
m_Depth: 5
floatValue1: 0.21296397
floatValue2: 0.39048797
floatValue3: 0.77614594
material: {fileID: 0}
text:
enabled: 1
- m_ID: 108
m_Name: Element 107
m_Depth: 5
floatValue1: 0.28903607
floatValue2: 0.64362067
floatValue3: 0.50249285
material: {fileID: 0}
text:
enabled: 1
- m_ID: 109
m_Name: Element 108
m_Depth: 5
floatValue1: 0.3523983
floatValue2: 0.92102885