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
|
,English
m_mainOptions_text,m_mainOptions
m_mainOptions_tooltip,
m_start_RGBMask_text,m_start_RGBMask
m_start_RGBMask_tooltip,
m_end_RGBMask_text,m_end_RGBMask
m_end_RGBMask_tooltip,
m_start_DetailOptions_text,m_start_DetailOptions
m_start_DetailOptions_tooltip,
m_end_DetailOptions_text,m_end_DetailOptions
m_end_DetailOptions_tooltip,
m_start_vertexManipulation_text,m_start_vertexManipulation
m_start_vertexManipulation_tooltip,
m_end_vertexManipulation_text,m_end_vertexManipulation
m_end_vertexManipulation_tooltip,
m_start_Alpha_text,m_start_Alpha
m_start_Alpha_tooltip,
m_end_Alpha_text,m_end_Alpha
m_end_Alpha_tooltip,
m_start_backFace_text,m_start_backFace
m_start_backFace_tooltip,
m_end_backFace_text,m_end_backFace
m_end_backFace_tooltip,
m_lightingOptions_text,m_lightingOptions
m_lightingOptions_tooltip,
m_start_Lighting_text,m_start_Lighting
m_start_Lighting_tooltip,
m_start_lightingStandard_text,m_start_lightingStandard
m_start_lightingStandard_tooltip,
m_end_lightingStandard_text,m_end_lightingStandard
m_end_lightingStandard_tooltip,
m_start_lightingAdvanced_text,m_start_lightingAdvanced
m_start_lightingAdvanced_tooltip,
m_end_lightingAdvanced_text,m_end_lightingAdvanced
m_end_lightingAdvanced_tooltip,
m_start_lightingBeta_text,m_start_lightingBeta
m_start_lightingBeta_tooltip,
m_end_lightingBeta_text,m_end_lightingBeta
m_end_lightingBeta_tooltip,
m_end_Lighting_text,m_end_Lighting
m_end_Lighting_tooltip,
m_start_subsurface_text,m_start_subsurface
m_start_subsurface_tooltip,
m_end_subsurface_text,m_end_subsurface
m_end_subsurface_tooltip,
m_start_rimLightOptions_text,m_start_rimLightOptions
m_start_rimLightOptions_tooltip,
m_start_rimWidthNoise_text,m_start_rimWidthNoise
m_start_rimWidthNoise_tooltip,
m_end_rimWidthNoise_text,m_end_rimWidthNoise
m_end_rimWidthNoise_tooltip,
m_start_ShadowMix_text,m_start_ShadowMix
m_start_ShadowMix_tooltip,
m_end_ShadowMix_text,m_end_ShadowMix
m_end_ShadowMix_tooltip,
m_end_rimLightOptions_text,m_end_rimLightOptions
m_end_rimLightOptions_tooltip,
m_start_reflectionRim_text,m_start_reflectionRim
m_start_reflectionRim_tooltip,
m_end_reflectionRim_text,m_end_reflectionRim
m_end_reflectionRim_tooltip,
m_start_bakedLighting_text,m_start_bakedLighting
m_start_bakedLighting_tooltip,
m_end_bakedLighting_text,m_end_bakedLighting
m_end_bakedLighting_tooltip,
m_reflectionOptions_text,m_reflectionOptions
m_reflectionOptions_tooltip,
m_start_Metallic_text,m_start_Metallic
m_start_Metallic_tooltip,
m_end_Metallic_text,m_end_Metallic
m_end_Metallic_tooltip,
m_start_clearCoat_text,m_start_clearCoat
m_start_clearCoat_tooltip,
m_end_clearCoat_text,m_end_clearCoat
m_end_clearCoat_tooltip,
m_start_matcap_text,m_start_matcap
m_start_matcap_tooltip,
m_end_matcap_text,m_end_matcap
m_end_matcap_tooltip,
m_start_Matcap2_text,m_start_Matcap2
m_start_Matcap2_tooltip,
m_end_Matcap2_text,m_end_Matcap2
m_end_Matcap2_tooltip,
m_start_specular_text,m_start_specular
m_start_specular_tooltip,
m_start_SpecularToon_text,m_start_SpecularToon
m_start_SpecularToon_tooltip,
m_end_SpecularToon_text,m_end_SpecularToon
m_end_SpecularToon_tooltip,
m_start_Anisotropic_text,m_start_Anisotropic
m_start_Anisotropic_tooltip,
m_end_Anisotropic_text,m_end_Anisotropic
m_end_Anisotropic_tooltip,
m_end_specular_text,m_end_specular
m_end_specular_tooltip,
m_start_specular1_text,m_start_specular1
m_start_specular1_tooltip,
m_start_SpecularToon1_text,m_start_SpecularToon1
m_start_SpecularToon1_tooltip,
m_end_SpecularToon1_text,m_end_SpecularToon1
m_end_SpecularToon1_tooltip,
m_start_Anisotropic1_text,m_start_Anisotropic1
m_start_Anisotropic1_tooltip,
m_end_Anisotropic1_text,m_end_Anisotropic1
m_end_Anisotropic1_tooltip,
m_end_specular1_text,m_end_specular1
m_end_specular1_tooltip,
m_Special_Effects_text,m_Special_Effects
m_Special_Effects_tooltip,
m_start_emissionOptions_text,m_start_emissionOptions
m_start_emissionOptions_tooltip,
m_start_CenterOutEmission_text,m_start_CenterOutEmission
m_start_CenterOutEmission_tooltip,
m_end_CenterOutEmission_text,m_end_CenterOutEmission
m_end_CenterOutEmission_tooltip,
m_start_glowInDarkEmissionOptions_text,m_start_glowInDarkEmissionOptions
m_start_glowInDarkEmissionOptions_tooltip,
m_end_glowInDarkEmissionOptions_text,m_end_glowInDarkEmissionOptions
m_end_glowInDarkEmissionOptions_tooltip,
m_start_blinkingEmissionOptions_text,m_start_blinkingEmissionOptions
m_start_blinkingEmissionOptions_tooltip,
m_end_blinkingEmissionOptions_text,m_end_blinkingEmissionOptions
m_end_blinkingEmissionOptions_tooltip,
m_start_scrollingEmissionOptions_text,m_start_scrollingEmissionOptions
m_start_scrollingEmissionOptions_tooltip,
m_end_scrollingEmissionOptions_text,m_end_scrollingEmissionOptions
m_end_scrollingEmissionOptions_tooltip,
m_end_emissionOptions_text,m_end_emissionOptions
m_end_emissionOptions_tooltip,
m_start_emission1Options_text,m_start_emission1Options
m_start_emission1Options_tooltip,
m_start_CenterOutEmission1_text,m_start_CenterOutEmission1
m_start_CenterOutEmission1_tooltip,
m_end_CenterOutEmission1_text,m_end_CenterOutEmission1
m_end_CenterOutEmission1_tooltip,
m_start_glowInDarkEmissionOptions1_text,m_start_glowInDarkEmissionOptions1
m_start_glowInDarkEmissionOptions1_tooltip,
m_end_glowInDarkEmissionOptions1_text,m_end_glowInDarkEmissionOptions1
m_end_glowInDarkEmissionOptions1_tooltip,
m_start_blinkingEmissionOptions1_text,m_start_blinkingEmissionOptions1
m_start_blinkingEmissionOptions1_tooltip,
m_end_blinkingEmissionOptions1_text,m_end_blinkingEmissionOptions1
m_end_blinkingEmissionOptions1_tooltip,
m_start_scrollingEmissionOptions1_text,m_start_scrollingEmissionOptions1
m_start_scrollingEmissionOptions1_tooltip,
m_end_scrollingEmission1Options_text,m_end_scrollingEmission1Options
m_end_scrollingEmission1Options_tooltip,
m_end_emission1Options_text,m_end_emission1Options
m_end_emission1Options_tooltip,
m_start_flipBook_text,m_start_flipBook
m_start_flipBook_tooltip,
m_start_manualFlipbookControl_text,m_start_manualFlipbookControl
m_start_manualFlipbookControl_tooltip,
m_end_manualFlipbookControl_text,m_end_manualFlipbookControl
m_end_manualFlipbookControl_tooltip,
m_end_flipBook_text,m_end_flipBook
m_end_flipBook_tooltip,
m_start_dissolve_text,m_start_dissolve
m_start_dissolve_tooltip,
m_start_pointToPoint_text,m_start_pointToPoint
m_start_pointToPoint_tooltip,
m_end_pointToPoint_text,m_end_pointToPoint
m_end_pointToPoint_tooltip,
m_end_dissolve_text,m_end_dissolve
m_end_dissolve_tooltip,
m_start_panosphereOptions_text,m_start_panosphereOptions
m_start_panosphereOptions_tooltip,
m_end_panosphereOptions_text,m_end_panosphereOptions
m_end_panosphereOptions_tooltip,
m_start_glitter_text,m_start_glitter
m_start_glitter_tooltip,
m_end_glitter_text,m_end_glitter
m_end_glitter_tooltip,
m_start_Text_text,m_start_Text
m_start_Text_tooltip,
m_start_TextFPS_text,m_start_TextFPS
m_start_TextFPS_tooltip,
m_end_TextFPS_text,m_end_TextFPS
m_end_TextFPS_tooltip,
m_start_TextPosition_text,m_start_TextPosition
m_start_TextPosition_tooltip,
m_end_TextPosition_text,m_end_TextPosition
m_end_TextPosition_tooltip,
m_start_TextInstanceTime_text,m_start_TextInstanceTime
m_start_TextInstanceTime_tooltip,
m_end_TextInstanceTime_text,m_end_TextInstanceTime
m_end_TextInstanceTime_tooltip,
m_end_Text_text,m_end_Text
m_end_Text_tooltip,
m_start_mirrorOptions_text,m_start_mirrorOptions
m_start_mirrorOptions_tooltip,
m_end_mirrorOptions_text,m_end_mirrorOptions
m_end_mirrorOptions_tooltip,
m_start_distanceFade_text,m_start_distanceFade
m_start_distanceFade_tooltip,
m_end_Fade_text,m_end_Fade
m_end_Fade_tooltip,
m_start_angularFade_text,m_start_angularFade
m_start_angularFade_tooltip,
m_end_angularFade_text,m_end_angularFade
m_end_angularFade_tooltip,
m_start_distanceDithering_text,m_start_distanceDithering
m_start_distanceDithering_tooltip,
m_end_distanceDithering_text,m_end_distanceDithering
m_end_distanceDithering_tooltip,
m_start_distortionFlow_text,m_start_distortionFlow
m_start_distortionFlow_tooltip,
m_end_distortionFlow_text,m_end_distortionFlow
m_end_distortionFlow_tooltip,
m_Patreon_text,m_Patreon
m_Patreon_tooltip,
m_start_Video_text,m_start_Video
m_start_Video_tooltip,
m_start_VideoSettings_text,m_start_VideoSettings
m_start_VideoSettings_tooltip,
m_end_VideoSettings_text,m_end_VideoSettings
m_end_VideoSettings_tooltip,
m_start_VideoDebug_text,m_start_VideoDebug
m_start_VideoDebug_tooltip,
m_end_VideoDebug_text,m_end_VideoDebug
m_end_VideoDebug_tooltip,
m_start_CRT_text,m_start_CRT
m_start_CRT_tooltip,
m_end_CRT_text,m_end_CRT
m_end_CRT_tooltip,
m_start_Gameboy_text,m_start_Gameboy
m_start_Gameboy_tooltip,
m_end_Gameboy_text,m_end_Gameboy
m_end_Gameboy_tooltip,
m_end_Video_text,m_end_Video
m_end_Video_tooltip,
m_start_TouchOptions_text,m_start_TouchOptions
m_start_TouchOptions_tooltip,
m_start_Bulge_text,m_start_Bulge
m_start_Bulge_tooltip,
m_end_Bulge_text,m_end_Bulge
m_end_Bulge_tooltip,
m_start_TouchGlow_text,m_start_TouchGlow
m_start_TouchGlow_tooltip,
m_end_TouchGlow_text,m_end_TouchGlow
m_end_TouchGlow_tooltip,
m_end_TouchOptions_text,m_end_TouchOptions
m_end_TouchOptions_tooltip,
m_start_Hologram_text,m_start_Hologram
m_start_Hologram_tooltip,
m_start_FresnelAlpha_text,m_start_FresnelAlpha
m_start_FresnelAlpha_tooltip,
m_end_FresnelAlpha_text,m_end_FresnelAlpha
m_end_FresnelAlpha_tooltip,
m_end_Hologram_text,m_end_Hologram
m_end_Hologram_tooltip,
m_start_wireframe_text,m_start_wireframe
m_start_wireframe_tooltip,
m_end_wireframe_text,m_end_wireframe
m_end_wireframe_tooltip,
m_ParallaxMap_text,m_ParallaxMap
m_ParallaxMap_tooltip,
m_start_parallaxHeightmap_text,m_start_parallaxHeightmap
m_start_parallaxHeightmap_tooltip,
m_end_parallaxHeightmap_text,m_end_parallaxHeightmap
m_end_parallaxHeightmap_tooltip,
m_start_parallaxInternal_text,m_start_parallaxInternal
m_start_parallaxInternal_tooltip,
m_end_parallaxInternal_text,m_end_parallaxInternal
m_end_parallaxInternal_tooltip,
m_start_parallaxAdvanced_text,m_start_parallaxAdvanced
m_start_parallaxAdvanced_tooltip,
m_end_parallaxAdvanced_text,m_end_parallaxAdvanced
m_end_parallaxAdvanced_tooltip,
m_renderingOptions_text,m_renderingOptions
m_renderingOptions_tooltip,
m_start_StencilPassOptions_text,m_start_StencilPassOptions
m_start_StencilPassOptions_tooltip,
m_end_StencilPassOptions_text,m_end_StencilPassOptions
m_end_StencilPassOptions_tooltip,
m_start_debugOptions_text,m_start_debugOptions
m_start_debugOptions_tooltip,
m_end_debugOptions_text,m_end_debugOptions
m_end_debugOptions_tooltip,
shader_is_using_thry_editor_text,shader_is_using_thry_editor
shader_is_using_thry_editor_tooltip,
shader_master_label_text,shader_master_label
shader_master_label_tooltip,
shader_presets_text,shader_presets
shader_presets_tooltip,
shader_properties_label_file_text,shader_properties_label_file
shader_properties_label_file_tooltip,
footer_youtube_text,footer_youtube
footer_youtube_tooltip,
footer_twitter_text,footer_twitter
footer_twitter_tooltip,
footer_patreon_text,footer_patreon
footer_patreon_tooltip,
footer_discord_text,footer_discord
footer_discord_tooltip,
footer_github_text,footer_github
footer_github_tooltip,
_Color_text,_Color
_Color_tooltip,
_Saturation_text,_Saturation
_Saturation_tooltip,
_MainVertexColoring_text,_MainVertexColoring
_MainVertexColoring_tooltip,
_MainEmissionStrength_text,_MainEmissionStrength
_MainEmissionStrength_tooltip,
_MainTex_text,_MainTex
_MainTex_tooltip,
_MainTextureUV_text,_MainTextureUV
_MainTextureUV_tooltip,
_MainHueShift_text,_MainHueShift
_MainHueShift_tooltip,
_BumpMap_text,_BumpMap
_BumpMap_tooltip,
_BumpMapUV_text,_BumpMapUV
_BumpMapUV_tooltip,
_BumpMapPan_text,_BumpMapPan
_BumpMapPan_tooltip,
_BumpScale_text,_BumpScale
_BumpScale_tooltip,
_AlphaMask_text,_AlphaMask
_AlphaMask_tooltip,
_GlobalPanSpeed_text,_GlobalPanSpeed
_GlobalPanSpeed_tooltip,
_RGBMaskEnabled_text,_RGBMaskEnabled
_RGBMaskEnabled_tooltip,
_RGBMask_text,_RGBMask
_RGBMask_tooltip,
_RGBMaskUV_text,_RGBMaskUV
_RGBMaskUV_tooltip,
_RedColor_text,_RedColor
_RedColor_tooltip,
_RedTexure_text,_RedTexure
_RedTexure_tooltip,
_RGBRed_UV_text,_RGBRed_UV
_RGBRed_UV_tooltip,
_GreenColor_text,_GreenColor
_GreenColor_tooltip,
_GreenTexture_text,_GreenTexture
_GreenTexture_tooltip,
_RGBGreen_UV_text,_RGBGreen_UV
_RGBGreen_UV_tooltip,
_BlueColor_text,_BlueColor
_BlueColor_tooltip,
_BlueTexture_text,_BlueTexture
_BlueTexture_tooltip,
_RGBBlue_UV_text,_RGBBlue_UV
_RGBBlue_UV_tooltip,
_DetailMask_text,_DetailMask
_DetailMask_tooltip,
_DetailTex_text,_DetailTex
_DetailTex_tooltip,
_DetailTexPan_text,_DetailTexPan
_DetailTexPan_tooltip,
_DetailTexUV_text,_DetailTexUV
_DetailTexUV_tooltip,
_DetailTexIntensity_text,_DetailTexIntensity
_DetailTexIntensity_tooltip,
_DetailBrightness_text,_DetailBrightness
_DetailBrightness_tooltip,
_DetailTint_text,_DetailTint
_DetailTint_tooltip,
_DetailNormalMap_text,_DetailNormalMap
_DetailNormalMap_tooltip,
_DetailNormalMapUV_text,_DetailNormalMapUV
_DetailNormalMapUV_tooltip,
_DetailNormalMapScale_text,_DetailNormalMapScale
_DetailNormalMapScale_tooltip,
_DetailNormalMapPan_text,_DetailNormalMapPan
_DetailNormalMapPan_tooltip,
_VertexManipulationLocalTranslation_text,_VertexManipulationLocalTranslation
_VertexManipulationLocalTranslation_tooltip,
_VertexManipulationLocalRotation_text,_VertexManipulationLocalRotation
_VertexManipulationLocalRotation_tooltip,
_VertexManipulationLocalScale_text,_VertexManipulationLocalScale
_VertexManipulationLocalScale_tooltip,
_VertexManipulationWorldTranslation_text,_VertexManipulationWorldTranslation
_VertexManipulationWorldTranslation_tooltip,
_VertexManipulationHeight_text,_VertexManipulationHeight
_VertexManipulationHeight_tooltip,
_VertexManipulationHeightUV_text,_VertexManipulationHeightUV
_VertexManipulationHeightUV_tooltip,
_VertexManipulationHeightMask_text,_VertexManipulationHeightMask
_VertexManipulationHeightMask_tooltip,
_VertexManipulationHeightBias_text,_VertexManipulationHeightBias
_VertexManipulationHeightBias_tooltip,
_VertexManipulationHeightPan_text,_VertexManipulationHeightPan
_VertexManipulationHeightPan_tooltip,
_Clip_text,_Clip
_Clip_tooltip,
_DitheringEnabled_text,_DitheringEnabled
_DitheringEnabled_tooltip,
_ForceOpaque_text,_ForceOpaque
_ForceOpaque_tooltip,
_MainAlphaToCoverage_text,_MainAlphaToCoverage
_MainAlphaToCoverage_tooltip,
_MainShadowClipMod_text,_MainShadowClipMod
_MainShadowClipMod_tooltip,
_MainMipScale_text,_MainMipScale
_MainMipScale_tooltip,
_BackFaceEnabled_text,_BackFaceEnabled
_BackFaceEnabled_tooltip,
_BackFaceTextureUV_text,_BackFaceTextureUV
_BackFaceTextureUV_tooltip,
_BackFaceTexture_text,_BackFaceTexture
_BackFaceTexture_tooltip,
_BackFacePanning_text,_BackFacePanning
_BackFacePanning_tooltip,
_BackFaceDetailIntensity_text,_BackFaceDetailIntensity
_BackFaceDetailIntensity_tooltip,
_BackFaceHueShift_text,_BackFaceHueShift
_BackFaceHueShift_tooltip,
_BackFaceEmissionStrength_text,_BackFaceEmissionStrength
_BackFaceEmissionStrength_tooltip,
_EnableLighting_text,_EnableLighting
_EnableLighting_tooltip,
_LightingType_text,_LightingType
_LightingType_tooltip,
_ToonRamp_text,_ToonRamp
_ToonRamp_tooltip,
_LightingShadowMask_text,_LightingShadowMask
_LightingShadowMask_tooltip,
_ShadowStrength_text,_ShadowStrength
_ShadowStrength_tooltip,
_ShadowOffset_text,_ShadowOffset
_ShadowOffset_tooltip,
_LightingAOTex_text,_LightingAOTex
_LightingAOTex_tooltip,
_LightingAOTexUV_text,_LightingAOTexUV
_LightingAOTexUV_tooltip,
_AoIndirectStrength_text,_AoIndirectStrength
_AoIndirectStrength_tooltip,
_AOStrength_text,_AOStrength
_AOStrength_tooltip,
_LightingMinLightBrightness_text,_LightingMinLightBrightness
_LightingMinLightBrightness_tooltip,
_LightingIndirectContribution_text,_LightingIndirectContribution
_LightingIndirectContribution_tooltip,
_AttenuationMultiplier_text,_AttenuationMultiplier
_AttenuationMultiplier_tooltip,
_LightingStandardSmoothness_text,_LightingStandardSmoothness
_LightingStandardSmoothness_tooltip,
_AdditiveSoftness_text,_AdditiveSoftness
_AdditiveSoftness_tooltip,
_AdditiveOffset_text,_AdditiveOffset
_AdditiveOffset_tooltip,
_LightingAdditiveIntensity_text,_LightingAdditiveIntensity
_LightingAdditiveIntensity_tooltip,
_LightingStandardControlsToon_text,_LightingStandardControlsToon
_LightingStandardControlsToon_tooltip,
_LightingNumRamps_text,_LightingNumRamps
_LightingNumRamps_tooltip,
_ToonRamp1_text,_ToonRamp1
_ToonRamp1_tooltip,
_LightingShadowStrength1_text,_LightingShadowStrength1
_LightingShadowStrength1_tooltip,
_ShadowOffset1_text,_ShadowOffset1
_ShadowOffset1_tooltip,
_ToonRamp2_text,_ToonRamp2
_ToonRamp2_tooltip,
_LightingShadowStrength2_text,_LightingShadowStrength2
_LightingShadowStrength2_tooltip,
_ShadowOffset2_text,_ShadowOffset2
_ShadowOffset2_tooltip,
_EnableSSS_text,_EnableSSS
_EnableSSS_tooltip,
_SSSColor_text,_SSSColor
_SSSColor_tooltip,
_SSSColorMap_text,_SSSColorMap
_SSSColorMap_tooltip,
_SSSThicknessMap_text,_SSSThicknessMap
_SSSThicknessMap_tooltip,
_SSSThicknessMod_text,_SSSThicknessMod
_SSSThicknessMod_tooltip,
_SSSStrength_text,_SSSStrength
_SSSStrength_tooltip,
_SSSPower_text,_SSSPower
_SSSPower_tooltip,
_SSSDistortion_text,_SSSDistortion
_SSSDistortion_tooltip,
_SSSNormal_text,_SSSNormal
_SSSNormal_tooltip,
_EnableRimLighting_text,_EnableRimLighting
_EnableRimLighting_tooltip,
_RimLightNormal_text,_RimLightNormal
_RimLightNormal_tooltip,
_RimLightingInvert_text,_RimLightingInvert
_RimLightingInvert_tooltip,
_RimLightColor_text,_RimLightColor
_RimLightColor_tooltip,
_RimWidth_text,_RimWidth
_RimWidth_tooltip,
_RimSharpness_text,_RimSharpness
_RimSharpness_tooltip,
_RimStrength_text,_RimStrength
_RimStrength_tooltip,
_RimBrighten_text,_RimBrighten
_RimBrighten_tooltip,
_RimLightColorBias_text,_RimLightColorBias
_RimLightColorBias_tooltip,
_RimTex_text,_RimTex
_RimTex_tooltip,
_RimMask_text,_RimMask
_RimMask_tooltip,
_RimTexPan_text,_RimTexPan
_RimTexPan_tooltip,
_RimWidthNoiseTexture_text,_RimWidthNoiseTexture
_RimWidthNoiseTexture_tooltip,
_RimWidthNoiseStrength_text,_RimWidthNoiseStrength
_RimWidthNoiseStrength_tooltip,
_RimWidthNoisePan_text,_RimWidthNoisePan
_RimWidthNoisePan_tooltip,
_ShadowMix_text,_ShadowMix
_ShadowMix_tooltip,
_ShadowMixThreshold_text,_ShadowMixThreshold
_ShadowMixThreshold_tooltip,
_ShadowMixWidthMod_text,_ShadowMixWidthMod
_ShadowMixWidthMod_tooltip,
_EnableEnvironmentalRim_text,_EnableEnvironmentalRim
_EnableEnvironmentalRim_tooltip,
_RimEnviroMask_text,_RimEnviroMask
_RimEnviroMask_tooltip,
_RimEnviroBlur_text,_RimEnviroBlur
_RimEnviroBlur_tooltip,
_RimEnviroWidth_text,_RimEnviroWidth
_RimEnviroWidth_tooltip,
_RimEnviroSharpness_text,_RimEnviroSharpness
_RimEnviroSharpness_tooltip,
_RimEnviroMinBrightness_text,_RimEnviroMinBrightness
_RimEnviroMinBrightness_tooltip,
_RimEnviroIntensity_text,_RimEnviroIntensity
_RimEnviroIntensity_tooltip,
_GIEmissionMultiplier_text,_GIEmissionMultiplier
_GIEmissionMultiplier_tooltip,
DSGI_text,DSGI
DSGI_tooltip,
LightmapFlags_text,LightmapFlags
LightmapFlags_tooltip,
_EnableMetallic_text,_EnableMetallic
_EnableMetallic_tooltip,
_CubeMap_text,_CubeMap
_CubeMap_tooltip,
_SampleWorld_text,_SampleWorld
_SampleWorld_tooltip,
_MetalReflectionTint_text,_MetalReflectionTint
_MetalReflectionTint_tooltip,
_MetallicMask_text,_MetallicMask
_MetallicMask_tooltip,
_Metallic_text,_Metallic
_Metallic_tooltip,
_SmoothnessMask_text,_SmoothnessMask
_SmoothnessMask_tooltip,
_InvertSmoothness_text,_InvertSmoothness
_InvertSmoothness_tooltip,
_Smoothness_text,_Smoothness
_Smoothness_tooltip,
_EnableClearCoat_text,_EnableClearCoat
_EnableClearCoat_tooltip,
_ClearCoatNormalToUse_text,_ClearCoatNormalToUse
_ClearCoatNormalToUse_tooltip,
_ClearCoatCubeMap_text,_ClearCoatCubeMap
_ClearCoatCubeMap_tooltip,
_ClearCoatSampleWorld_text,_ClearCoatSampleWorld
_ClearCoatSampleWorld_tooltip,
_ClearCoatTint_text,_ClearCoatTint
_ClearCoatTint_tooltip,
_ClearCoatMask_text,_ClearCoatMask
_ClearCoatMask_tooltip,
_ClearCoat_text,_ClearCoat
_ClearCoat_tooltip,
_ClearCoatSmoothnessMap_text,_ClearCoatSmoothnessMap
_ClearCoatSmoothnessMap_tooltip,
_ClearCoatInvertSmoothness_text,_ClearCoatInvertSmoothness
_ClearCoatInvertSmoothness_tooltip,
_ClearCoatSmoothness_text,_ClearCoatSmoothness
_ClearCoatSmoothness_tooltip,
_ClearCoatForceLighting_text,_ClearCoatForceLighting
_ClearCoatForceLighting_tooltip,
_MatcapEnable_text,_MatcapEnable
_MatcapEnable_tooltip,
_MatcapColor_text,_MatcapColor
_MatcapColor_tooltip,
_Matcap_text,_Matcap
_Matcap_tooltip,
_MatcapBorder_text,_MatcapBorder
_MatcapBorder_tooltip,
_MatcapMask_text,_MatcapMask
_MatcapMask_tooltip,
_MatcapEmissionStrength_text,_MatcapEmissionStrength
_MatcapEmissionStrength_tooltip,
_MatcapIntensity_text,_MatcapIntensity
_MatcapIntensity_tooltip,
_MatcapLightMask_text,_MatcapLightMask
_MatcapLightMask_tooltip,
_MatcapReplace_text,_MatcapReplace
_MatcapReplace_tooltip,
_MatcapMultiply_text,_MatcapMultiply
_MatcapMultiply_tooltip,
_MatcapAdd_text,_MatcapAdd
_MatcapAdd_tooltip,
_MatcapNormal_text,_MatcapNormal
_MatcapNormal_tooltip,
_Matcap2Enable_text,_Matcap2Enable
_Matcap2Enable_tooltip,
_Matcap2Color_text,_Matcap2Color
_Matcap2Color_tooltip,
_Matcap2_text,_Matcap2
_Matcap2_tooltip,
_Matcap2Border_text,_Matcap2Border
_Matcap2Border_tooltip,
_Matcap2Mask_text,_Matcap2Mask
_Matcap2Mask_tooltip,
_Matcap2EmissionStrength_text,_Matcap2EmissionStrength
_Matcap2EmissionStrength_tooltip,
_Matcap2Intensity_text,_Matcap2Intensity
_Matcap2Intensity_tooltip,
_Matcap2LightMask_text,_Matcap2LightMask
_Matcap2LightMask_tooltip,
_Matcap2Replace_text,_Matcap2Replace
_Matcap2Replace_tooltip,
_Matcap2Multiply_text,_Matcap2Multiply
_Matcap2Multiply_tooltip,
_Matcap2Add_text,_Matcap2Add
_Matcap2Add_tooltip,
_Matcap2Normal_text,_Matcap2Normal
_Matcap2Normal_tooltip,
_EnableSpecular_text,_EnableSpecular
_EnableSpecular_tooltip,
_SpecularType_text,_SpecularType
_SpecularType_tooltip,
_SpecularMinLightBrightness_text,_SpecularMinLightBrightness
_SpecularMinLightBrightness_tooltip,
_SpecularTint_text,_SpecularTint
_SpecularTint_tooltip,
_SpecularMetallic_text,_SpecularMetallic
_SpecularMetallic_tooltip,
_SpecularSmoothness_text,_SpecularSmoothness
_SpecularSmoothness_tooltip,
_SpecularMap_text,_SpecularMap
_SpecularMap_tooltip,
_SpecularInvertSmoothness_text,_SpecularInvertSmoothness
_SpecularInvertSmoothness_tooltip,
_SpecularMask_text,_SpecularMask
_SpecularMask_tooltip,
_SmoothnessFrom_text,_SmoothnessFrom
_SmoothnessFrom_tooltip,
_SpecularToonInnerOuter_text,_SpecularToonInnerOuter
_SpecularToonInnerOuter_tooltip,
_SpecWhatTangent_text,_SpecWhatTangent
_SpecWhatTangent_tooltip,
_AnisoSpec1Alpha_text,_AnisoSpec1Alpha
_AnisoSpec1Alpha_tooltip,
_AnisoSpec2Alpha_text,_AnisoSpec2Alpha
_AnisoSpec2Alpha_tooltip,
_Spec2Smoothness_text,_Spec2Smoothness
_Spec2Smoothness_tooltip,
_AnisoUseTangentMap_text,_AnisoUseTangentMap
_AnisoUseTangentMap_tooltip,
_AnisoTangentMap_text,_AnisoTangentMap
_AnisoTangentMap_tooltip,
_EnableSpecular1_text,_EnableSpecular1
_EnableSpecular1_tooltip,
_SpecularType1_text,_SpecularType1
_SpecularType1_tooltip,
_SpecularMinLightBrightness1_text,_SpecularMinLightBrightness1
_SpecularMinLightBrightness1_tooltip,
_SpecularTint1_text,_SpecularTint1
_SpecularTint1_tooltip,
_SpecularMetallic1_text,_SpecularMetallic1
_SpecularMetallic1_tooltip,
_SpecularSmoothness1_text,_SpecularSmoothness1
_SpecularSmoothness1_tooltip,
_SpecularMap1_text,_SpecularMap1
_SpecularMap1_tooltip,
_SpecularInvertSmoothness1_text,_SpecularInvertSmoothness1
_SpecularInvertSmoothness1_tooltip,
_SpecularMask1_text,_SpecularMask1
_SpecularMask1_tooltip,
_SmoothnessFrom1_text,_SmoothnessFrom1
_SmoothnessFrom1_tooltip,
_SpecularToonInnerOuter1_text,_SpecularToonInnerOuter1
_SpecularToonInnerOuter1_tooltip,
_SpecWhatTangent1_text,_SpecWhatTangent1
_SpecWhatTangent1_tooltip,
_AnisoSpec1Alpha1_text,_AnisoSpec1Alpha1
_AnisoSpec1Alpha1_tooltip,
_AnisoSpec2Alpha1_text,_AnisoSpec2Alpha1
_AnisoSpec2Alpha1_tooltip,
_Spec2Smoothness1_text,_Spec2Smoothness1
_Spec2Smoothness1_tooltip,
_AnisoUseTangentMap1_text,_AnisoUseTangentMap1
_AnisoUseTangentMap1_tooltip,
_AnisoTangentMap1_text,_AnisoTangentMap1
_AnisoTangentMap1_tooltip,
_EnableEmission_text,_EnableEmission
_EnableEmission_tooltip,
_EmissionMaskUV_text,_EmissionMaskUV
_EmissionMaskUV_tooltip,
_EmissionMapUV_text,_EmissionMapUV
_EmissionMapUV_tooltip,
_EmissionColor_text,_EmissionColor
_EmissionColor_tooltip,
_EmissionMap_text,_EmissionMap
_EmissionMap_tooltip,
_EmissionMask_text,_EmissionMask
_EmissionMask_tooltip,
_EmissionMapPan_text,_EmissionMapPan
_EmissionMapPan_tooltip,
_EmissionMaskPan_text,_EmissionMaskPan
_EmissionMaskPan_tooltip,
_EmissionStrength_text,_EmissionStrength
_EmissionStrength_tooltip,
_EmissionCenterOutEnabled_text,_EmissionCenterOutEnabled
_EmissionCenterOutEnabled_tooltip,
_EmissionCenterOutSpeed_text,_EmissionCenterOutSpeed
_EmissionCenterOutSpeed_tooltip,
_EnableGITDEmission_text,_EnableGITDEmission
_EnableGITDEmission_tooltip,
_GITDEWorldOrMesh_text,_GITDEWorldOrMesh
_GITDEWorldOrMesh_tooltip,
_GITDEMinEmissionMultiplier_text,_GITDEMinEmissionMultiplier
_GITDEMinEmissionMultiplier_tooltip,
_GITDEMaxEmissionMultiplier_text,_GITDEMaxEmissionMultiplier
_GITDEMaxEmissionMultiplier_tooltip,
_GITDEMinLight_text,_GITDEMinLight
_GITDEMinLight_tooltip,
_GITDEMaxLight_text,_GITDEMaxLight
_GITDEMaxLight_tooltip,
_EmissiveBlink_Min_text,_EmissiveBlink_Min
_EmissiveBlink_Min_tooltip,
_EmissiveBlink_Max_text,_EmissiveBlink_Max
_EmissiveBlink_Max_tooltip,
_EmissiveBlink_Velocity_text,_EmissiveBlink_Velocity
_EmissiveBlink_Velocity_tooltip,
_ScrollingEmission_text,_ScrollingEmission
_ScrollingEmission_tooltip,
_EmissionScrollingUseCurve_text,_EmissionScrollingUseCurve
_EmissionScrollingUseCurve_tooltip,
_EmissionScrollingCurve_text,_EmissionScrollingCurve
_EmissionScrollingCurve_tooltip,
_EmissiveScroll_Direction_text,_EmissiveScroll_Direction
_EmissiveScroll_Direction_tooltip,
_EmissiveScroll_Width_text,_EmissiveScroll_Width
_EmissiveScroll_Width_tooltip,
_EmissiveScroll_Velocity_text,_EmissiveScroll_Velocity
_EmissiveScroll_Velocity_tooltip,
_EmissiveScroll_Interval_text,_EmissiveScroll_Interval
_EmissiveScroll_Interval_tooltip,
_EnableEmission1_text,_EnableEmission1
_EnableEmission1_tooltip,
_EmissionMask1UV_text,_EmissionMask1UV
_EmissionMask1UV_tooltip,
_EmissionMap1UV_text,_EmissionMap1UV
_EmissionMap1UV_tooltip,
_EmissionColor1_text,_EmissionColor1
_EmissionColor1_tooltip,
_EmissionMap1_text,_EmissionMap1
_EmissionMap1_tooltip,
_EmissionMask1_text,_EmissionMask1
_EmissionMask1_tooltip,
_EmissionMap1Pan_text,_EmissionMap1Pan
_EmissionMap1Pan_tooltip,
_EmissionMask1Pan_text,_EmissionMask1Pan
_EmissionMask1Pan_tooltip,
_EmissionStrength1_text,_EmissionStrength1
_EmissionStrength1_tooltip,
_EmissionCenterOutEnabled1_text,_EmissionCenterOutEnabled1
_EmissionCenterOutEnabled1_tooltip,
_EmissionCenterOutSpeed1_text,_EmissionCenterOutSpeed1
_EmissionCenterOutSpeed1_tooltip,
_EnableGITDEmission1_text,_EnableGITDEmission1
_EnableGITDEmission1_tooltip,
_GITDEWorldOrMesh1_text,_GITDEWorldOrMesh1
_GITDEWorldOrMesh1_tooltip,
_GITDEMinEmissionMultiplier1_text,_GITDEMinEmissionMultiplier1
_GITDEMinEmissionMultiplier1_tooltip,
_GITDEMaxEmissionMultiplier1_text,_GITDEMaxEmissionMultiplier1
_GITDEMaxEmissionMultiplier1_tooltip,
_GITDEMinLight1_text,_GITDEMinLight1
_GITDEMinLight1_tooltip,
_GITDEMaxLight1_text,_GITDEMaxLight1
_GITDEMaxLight1_tooltip,
_EmissiveBlink_Min1_text,_EmissiveBlink_Min1
_EmissiveBlink_Min1_tooltip,
_EmissiveBlink_Max1_text,_EmissiveBlink_Max1
_EmissiveBlink_Max1_tooltip,
_EmissiveBlink_Velocity1_text,_EmissiveBlink_Velocity1
_EmissiveBlink_Velocity1_tooltip,
_ScrollingEmission1_text,_ScrollingEmission1
_ScrollingEmission1_tooltip,
_EmissionScrollingUseCurve1_text,_EmissionScrollingUseCurve1
_EmissionScrollingUseCurve1_tooltip,
_EmissionScrollingCurve1_text,_EmissionScrollingCurve1
_EmissionScrollingCurve1_tooltip,
_EmissiveScroll_Direction1_text,_EmissiveScroll_Direction1
_EmissiveScroll_Direction1_tooltip,
_EmissiveScroll_Width1_text,_EmissiveScroll_Width1
_EmissiveScroll_Width1_tooltip,
_EmissiveScroll_Velocity1_text,_EmissiveScroll_Velocity1
_EmissiveScroll_Velocity1_tooltip,
_EmissiveScroll_Interval1_text,_EmissiveScroll_Interval1
_EmissiveScroll_Interval1_tooltip,
_EnableFlipbook_text,_EnableFlipbook
_EnableFlipbook_tooltip,
_FlipbookAlphaControlsFinalAlpha_text,_FlipbookAlphaControlsFinalAlpha
_FlipbookAlphaControlsFinalAlpha_tooltip,
_FlipbookTexArrayUV_text,_FlipbookTexArrayUV
_FlipbookTexArrayUV_tooltip,
_FlipbookTexArray_text,_FlipbookTexArray
_FlipbookTexArray_tooltip,
_FlipbookMask_text,_FlipbookMask
_FlipbookMask_tooltip,
_FlipbookColor_text,_FlipbookColor
_FlipbookColor_tooltip,
_FlipbookTotalFrames_text,_FlipbookTotalFrames
_FlipbookTotalFrames_tooltip,
_FlipbookFPS_text,_FlipbookFPS
_FlipbookFPS_tooltip,
_FlipbookScaleOffset_text,_FlipbookScaleOffset
_FlipbookScaleOffset_tooltip,
_FlipbookTiled_text,_FlipbookTiled
_FlipbookTiled_tooltip,
_FlipbookEmissionStrength_text,_FlipbookEmissionStrength
_FlipbookEmissionStrength_tooltip,
_FlipbookRotation_text,_FlipbookRotation
_FlipbookRotation_tooltip,
_FlipbookReplace_text,_FlipbookReplace
_FlipbookReplace_tooltip,
_FlipbookMultiply_text,_FlipbookMultiply
_FlipbookMultiply_tooltip,
_FlipbookAdd_text,_FlipbookAdd
_FlipbookAdd_tooltip,
_FlipbookCurrentFrame_text,_FlipbookCurrentFrame
_FlipbookCurrentFrame_tooltip,
_EnableDissolve_text,_EnableDissolve
_EnableDissolve_tooltip,
_DissolveType_text,_DissolveType
_DissolveType_tooltip,
_DissolveEdgeWidth_text,_DissolveEdgeWidth
_DissolveEdgeWidth_tooltip,
_DissolveEdgeHardness_text,_DissolveEdgeHardness
_DissolveEdgeHardness_tooltip,
_DissolveEdgeColor_text,_DissolveEdgeColor
_DissolveEdgeColor_tooltip,
_DissolveEdgeGradient_text,_DissolveEdgeGradient
_DissolveEdgeGradient_tooltip,
_DissolveEdgeEmission_text,_DissolveEdgeEmission
_DissolveEdgeEmission_tooltip,
_DissolveTextureColor_text,_DissolveTextureColor
_DissolveTextureColor_tooltip,
_DissolveToTexture_text,_DissolveToTexture
_DissolveToTexture_tooltip,
_DissolveToEmissionStrength_text,_DissolveToEmissionStrength
_DissolveToEmissionStrength_tooltip,
_DissolveToTexturePan_text,_DissolveToTexturePan
_DissolveToTexturePan_tooltip,
_DissolveNoiseTexture_text,_DissolveNoiseTexture
_DissolveNoiseTexture_tooltip,
_DissolveInvertNoise_text,_DissolveInvertNoise
_DissolveInvertNoise_tooltip,
_DissolveDetailNoise_text,_DissolveDetailNoise
_DissolveDetailNoise_tooltip,
_DissolveInvertDetailNoise_text,_DissolveInvertDetailNoise
_DissolveInvertDetailNoise_tooltip,
_DissolveDetailStrength_text,_DissolveDetailStrength
_DissolveDetailStrength_tooltip,
_DissolveNoiseTexturePan_text,_DissolveNoiseTexturePan
_DissolveNoiseTexturePan_tooltip,
_DissolveDetailNoisePan_text,_DissolveDetailNoisePan
_DissolveDetailNoisePan_tooltip,
_DissolveAlpha_text,_DissolveAlpha
_DissolveAlpha_tooltip,
_DissolveMask_text,_DissolveMask
_DissolveMask_tooltip,
_ContinuousDissolve_text,_ContinuousDissolve
_ContinuousDissolve_tooltip,
_DissolveP2PWorldLocal_text,_DissolveP2PWorldLocal
_DissolveP2PWorldLocal_tooltip,
_DissolveP2PEdgeLength_text,_DissolveP2PEdgeLength
_DissolveP2PEdgeLength_tooltip,
_DissolveStartPoint_text,_DissolveStartPoint
_DissolveStartPoint_tooltip,
_DissolveEndPoint_text,_DissolveEndPoint
_DissolveEndPoint_tooltip,
_PanoToggle_text,_PanoToggle
_PanoToggle_tooltip,
_PanosphereColor_text,_PanosphereColor
_PanosphereColor_tooltip,
_PanosphereTexture_text,_PanosphereTexture
_PanosphereTexture_tooltip,
_PanoMask_text,_PanoMask
_PanoMask_tooltip,
_PanoEmission_text,_PanoEmission
_PanoEmission_tooltip,
_PanoBlend_text,_PanoBlend
_PanoBlend_tooltip,
_PanospherePan_text,_PanospherePan
_PanospherePan_tooltip,
_PanoCubeMapToggle_text,_PanoCubeMapToggle
_PanoCubeMapToggle_tooltip,
_PanoCubeMap_text,_PanoCubeMap
_PanoCubeMap_tooltip,
_GlitterEnable_text,_GlitterEnable
_GlitterEnable_tooltip,
_GlitterColor_text,_GlitterColor
_GlitterColor_tooltip,
_GlitterColorMap_text,_GlitterColorMap
_GlitterColorMap_tooltip,
_GlitterPan_text,_GlitterPan
_GlitterPan_tooltip,
_GlitterMask_text,_GlitterMask
_GlitterMask_tooltip,
_GlitterFrequency_text,_GlitterFrequency
_GlitterFrequency_tooltip,
_GlitterJitter_text,_GlitterJitter
_GlitterJitter_tooltip,
_GlitterSpeed_text,_GlitterSpeed
_GlitterSpeed_tooltip,
_GlitterSize_text,_GlitterSize
_GlitterSize_tooltip,
_GlitterContrast_text,_GlitterContrast
_GlitterContrast_tooltip,
_GlitterAngleRange_text,_GlitterAngleRange
_GlitterAngleRange_tooltip,
_GlitterMinBrightness_text,_GlitterMinBrightness
_GlitterMinBrightness_tooltip,
_GlitterBrightness_text,_GlitterBrightness
_GlitterBrightness_tooltip,
_GlitterBias_text,_GlitterBias
_GlitterBias_tooltip,
_TextGlyphs_text,_TextGlyphs
_TextGlyphs_tooltip,
_TextPixelRange_text,_TextPixelRange
_TextPixelRange_tooltip,
_TextEnabled_text,_TextEnabled
_TextEnabled_tooltip,
_TextFPSEnabled_text,_TextFPSEnabled
_TextFPSEnabled_tooltip,
_TextFPSColor_text,_TextFPSColor
_TextFPSColor_tooltip,
_TextFPSEmissionStrength_text,_TextFPSEmissionStrength
_TextFPSEmissionStrength_tooltip,
_TextFPSOffset_text,_TextFPSOffset
_TextFPSOffset_tooltip,
_TextFPSRotation_text,_TextFPSRotation
_TextFPSRotation_tooltip,
_TextFPSScale_text,_TextFPSScale
_TextFPSScale_tooltip,
_TextFPSPadding_text,_TextFPSPadding
_TextFPSPadding_tooltip,
_TextPositionEnabled_text,_TextPositionEnabled
_TextPositionEnabled_tooltip,
_TextPositionColor_text,_TextPositionColor
_TextPositionColor_tooltip,
_TextPositionEmissionStrength_text,_TextPositionEmissionStrength
_TextPositionEmissionStrength_tooltip,
_TextPositionOffset_text,_TextPositionOffset
_TextPositionOffset_tooltip,
_TextPositionRotation_text,_TextPositionRotation
_TextPositionRotation_tooltip,
_TextPositionScale_text,_TextPositionScale
_TextPositionScale_tooltip,
_TextPositionPadding_text,_TextPositionPadding
_TextPositionPadding_tooltip,
_TextTimeEnabled_text,_TextTimeEnabled
_TextTimeEnabled_tooltip,
_TextTimeColor_text,_TextTimeColor
_TextTimeColor_tooltip,
_TextTimeEmissionStrength_text,_TextTimeEmissionStrength
_TextTimeEmissionStrength_tooltip,
_TextTimeOffset_text,_TextTimeOffset
_TextTimeOffset_tooltip,
_TextTimeRotation_text,_TextTimeRotation
_TextTimeRotation_tooltip,
_TextTimeScale_text,_TextTimeScale
_TextTimeScale_tooltip,
_TextTimePadding_text,_TextTimePadding
_TextTimePadding_tooltip,
_EnableMirrorOptions_text,_EnableMirrorOptions
_EnableMirrorOptions_tooltip,
_Mirror_text,_Mirror
_Mirror_tooltip,
_EnableMirrorTexture_text,_EnableMirrorTexture
_EnableMirrorTexture_tooltip,
_MirrorTexture_text,_MirrorTexture
_MirrorTexture_tooltip,
_MainMinAlpha_text,_MainMinAlpha
_MainMinAlpha_tooltip,
_MainFadeTexture_text,_MainFadeTexture
_MainFadeTexture_tooltip,
_MainDistanceFade_text,_MainDistanceFade
_MainDistanceFade_tooltip,
_EnableRandom_text,_EnableRandom
_EnableRandom_tooltip,
_AngleType_text,_AngleType
_AngleType_tooltip,
_AngleCompareTo_text,_AngleCompareTo
_AngleCompareTo_tooltip,
_AngleForwardDirection_text,_AngleForwardDirection
_AngleForwardDirection_tooltip,
_CameraAngleMin_text,_CameraAngleMin
_CameraAngleMin_tooltip,
_CameraAngleMax_text,_CameraAngleMax
_CameraAngleMax_tooltip,
_ModelAngleMin_text,_ModelAngleMin
_ModelAngleMin_tooltip,
_ModelAngleMax_text,_ModelAngleMax
_ModelAngleMax_tooltip,
_AngleMinAlpha_text,_AngleMinAlpha
_AngleMinAlpha_tooltip,
_DitheringDistanceEnabled_text,_DitheringDistanceEnabled
_DitheringDistanceEnabled_tooltip,
_DitheringOpaqueRange_text,_DitheringOpaqueRange
_DitheringOpaqueRange_tooltip,
_DitheringInvisibleRange_text,_DitheringInvisibleRange
_DitheringInvisibleRange_tooltip,
_DitheringDistanceMinAlpha_text,_DitheringDistanceMinAlpha
_DitheringDistanceMinAlpha_tooltip,
_DitheringDistanceMaxAlpha_text,_DitheringDistanceMaxAlpha
_DitheringDistanceMaxAlpha_tooltip,
_EnableDistortion_text,_EnableDistortion
_EnableDistortion_tooltip,
_DistortionFlowTexture_text,_DistortionFlowTexture
_DistortionFlowTexture_tooltip,
_DistortionFlowTexture1_text,_DistortionFlowTexture1
_DistortionFlowTexture1_tooltip,
_DistortionStrength_text,_DistortionStrength
_DistortionStrength_tooltip,
_DistortionStrength1_text,_DistortionStrength1
_DistortionStrength1_tooltip,
_DistortionSpeed_text,_DistortionSpeed
_DistortionSpeed_tooltip,
_DistortionSpeed1_text,_DistortionSpeed1
_DistortionSpeed1_tooltip,
_EnableVideo_text,_EnableVideo
_EnableVideo_tooltip,
_VideoUVNumber_text,_VideoUVNumber
_VideoUVNumber_tooltip,
_VideoType_text,_VideoType
_VideoType_tooltip,
_VideoBacklight_text,_VideoBacklight
_VideoBacklight_tooltip,
_VideoPixelTexture_text,_VideoPixelTexture
_VideoPixelTexture_tooltip,
_VideoResolution_text,_VideoResolution
_VideoResolution_tooltip,
_VideoMaskTexture_text,_VideoMaskTexture
_VideoMaskTexture_tooltip,
_VideoMaskPanning_text,_VideoMaskPanning
_VideoMaskPanning_tooltip,
_VideoEnableVideoPlayer_text,_VideoEnableVideoPlayer
_VideoEnableVideoPlayer_tooltip,
_VideoPixelateToResolution_text,_VideoPixelateToResolution
_VideoPixelateToResolution_tooltip,
_VideoRepeatVideoTexture_text,_VideoRepeatVideoTexture
_VideoRepeatVideoTexture_tooltip,
_VideoPanning_text,_VideoPanning
_VideoPanning_tooltip,
_VideoTiling_text,_VideoTiling
_VideoTiling_tooltip,
_VideoOffset_text,_VideoOffset
_VideoOffset_tooltip,
_VideoSaturation_text,_VideoSaturation
_VideoSaturation_tooltip,
_VideoContrast_text,_VideoContrast
_VideoContrast_tooltip,
_VideoEnableDebug_text,_VideoEnableDebug
_VideoEnableDebug_tooltip,
_VideoDebugTexture_text,_VideoDebugTexture
_VideoDebugTexture_tooltip,
_VideoCRTRefreshRate_text,_VideoCRTRefreshRate
_VideoCRTRefreshRate_tooltip,
_VideoCRTPixelEnergizedTime_text,_VideoCRTPixelEnergizedTime
_VideoCRTPixelEnergizedTime_tooltip,
_VideoGameboyRamp_text,_VideoGameboyRamp
_VideoGameboyRamp_tooltip,
_EnableBulge_text,_EnableBulge
_EnableBulge_tooltip,
_BulgeMask_text,_BulgeMask
_BulgeMask_tooltip,
_BuldgeFadeLength_text,_BuldgeFadeLength
_BuldgeFadeLength_tooltip,
_BuldgeHeight_text,_BuldgeHeight
_BuldgeHeight_tooltip,
_EnableTouchGlow_text,_EnableTouchGlow
_EnableTouchGlow_tooltip,
_DepthGlowColor_text,_DepthGlowColor
_DepthGlowColor_tooltip,
_DepthGradient_text,_DepthGradient
_DepthGradient_tooltip,
_DepthGlowEmission_text,_DepthGlowEmission
_DepthGlowEmission_tooltip,
_FadeLength_text,_FadeLength
_FadeLength_tooltip,
_EnableHolo_text,_EnableHolo
_EnableHolo_tooltip,
_HoloAlphaMap_text,_HoloAlphaMap
_HoloAlphaMap_tooltip,
_HoloCoordinateSpace_text,_HoloCoordinateSpace
_HoloCoordinateSpace_tooltip,
_HoloDirection_text,_HoloDirection
_HoloDirection_tooltip,
_HoloLineDensity_text,_HoloLineDensity
_HoloLineDensity_tooltip,
_HoloScrollSpeed_text,_HoloScrollSpeed
_HoloScrollSpeed_tooltip,
_HoloFresnelAlpha_text,_HoloFresnelAlpha
_HoloFresnelAlpha_tooltip,
_HoloRimSharpness_text,_HoloRimSharpness
_HoloRimSharpness_tooltip,
_HoloRimWidth_text,_HoloRimWidth
_HoloRimWidth_tooltip,
_WireframeEnable_text,_WireframeEnable
_WireframeEnable_tooltip,
_WireframeQuad_text,_WireframeQuad
_WireframeQuad_tooltip,
_WireframeColor_text,_WireframeColor
_WireframeColor_tooltip,
_WireframeTexture_text,_WireframeTexture
_WireframeTexture_tooltip,
_WireframeUV_text,_WireframeUV
_WireframeUV_tooltip,
_WireframeTexturePan_text,_WireframeTexturePan
_WireframeTexturePan_tooltip,
_WireframeEmissionStrength_text,_WireframeEmissionStrength
_WireframeEmissionStrength_tooltip,
_WireframeThickness_text,_WireframeThickness
_WireframeThickness_tooltip,
_WireframeEdgeOpacity_text,_WireframeEdgeOpacity
_WireframeEdgeOpacity_tooltip,
_WireframeFaceOpacity_text,_WireframeFaceOpacity
_WireframeFaceOpacity_tooltip,
_ParallaxMap_text,_ParallaxMap
_ParallaxMap_tooltip,
_ParallaxHeightMapEnabled_text,_ParallaxHeightMapEnabled
_ParallaxHeightMapEnabled_tooltip,
_ParallaxInternalMapEnabled_text,_ParallaxInternalMapEnabled
_ParallaxInternalMapEnabled_tooltip,
_ParallaxUV_text,_ParallaxUV
_ParallaxUV_tooltip,
_ParallaxHeightMap_text,_ParallaxHeightMap
_ParallaxHeightMap_tooltip,
_ParallaxStrength_text,_ParallaxStrength
_ParallaxStrength_tooltip,
_ParallaxInternalHeightmapMode_text,_ParallaxInternalHeightmapMode
_ParallaxInternalHeightmapMode_tooltip,
_ParallaxInternalHeightFromAlpha_text,_ParallaxInternalHeightFromAlpha
_ParallaxInternalHeightFromAlpha_tooltip,
_ParallaxInternalMap_text,_ParallaxInternalMap
_ParallaxInternalMap_tooltip,
_ParallaxInternalIterations_text,_ParallaxInternalIterations
_ParallaxInternalIterations_tooltip,
_ParallaxInternalMinDepth_text,_ParallaxInternalMinDepth
_ParallaxInternalMinDepth_tooltip,
_ParallaxInternalMaxDepth_text,_ParallaxInternalMaxDepth
_ParallaxInternalMaxDepth_tooltip,
_ParallaxInternalMinFade_text,_ParallaxInternalMinFade
_ParallaxInternalMinFade_tooltip,
_ParallaxInternalMaxFade_text,_ParallaxInternalMaxFade
_ParallaxInternalMaxFade_tooltip,
_ParallaxInternalMinColor_text,_ParallaxInternalMinColor
_ParallaxInternalMinColor_tooltip,
_ParallaxInternalMaxColor_text,_ParallaxInternalMaxColor
_ParallaxInternalMaxColor_tooltip,
_ParallaxInternalPanSpeed_text,_ParallaxInternalPanSpeed
_ParallaxInternalPanSpeed_tooltip,
_ParallaxInternalPanDepthSpeed_text,_ParallaxInternalPanDepthSpeed
_ParallaxInternalPanDepthSpeed_tooltip,
_ParallaxBias_text,_ParallaxBias
_ParallaxBias_tooltip,
_Cull_text,_Cull
_Cull_tooltip,
_ZTest_text,_ZTest
_ZTest_tooltip,
_SourceBlend_text,_SourceBlend
_SourceBlend_tooltip,
_DestinationBlend_text,_DestinationBlend
_DestinationBlend_tooltip,
_ZWrite_text,_ZWrite
_ZWrite_tooltip,
_ZBias_text,_ZBias
_ZBias_tooltip,
_IgnoreFog_text,_IgnoreFog
_IgnoreFog_tooltip,
Instancing_text,Instancing
Instancing_tooltip,
_StencilRef_text,_StencilRef
_StencilRef_tooltip,
_StencilPassOp_text,_StencilPassOp
_StencilPassOp_tooltip,
_StencilFailOp_text,_StencilFailOp
_StencilFailOp_tooltip,
_StencilZFailOp_text,_StencilZFailOp
_StencilZFailOp_tooltip,
_StencilCompareFunction_text,_StencilCompareFunction
_StencilCompareFunction_tooltip,
_DebugEnabled_text,_DebugEnabled
_DebugEnabled_tooltip,
_DebugMeshData_text,_DebugMeshData
_DebugMeshData_tooltip,
_DebugLightingData_text,_DebugLightingData
_DebugLightingData_tooltip,
_DebugSpecularData_text,_DebugSpecularData
_DebugSpecularData_tooltip,
_DebugCameraData_text,_DebugCameraData
_DebugCameraData_tooltip,
|