UnityEngine.ParticleSystemModule.xml
160 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<doc>
<members>
<assembly>
<name>UnityEngine.ParticleSystemModule</name>
</assembly>
<member name="T:UnityEngine.ParticleCollisionEvent">
<summary>
<para>Information about a particle collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleCollisionEvent.colliderComponent">
<summary>
<para>The Collider or Collider2D for the GameObject struck by the particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleCollisionEvent.intersection">
<summary>
<para>Intersection point of the collision in world coordinates.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleCollisionEvent.normal">
<summary>
<para>Geometry normal at the intersection point of the collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleCollisionEvent.velocity">
<summary>
<para>Incident velocity at the intersection point of the collision.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticlePhysicsExtensions">
<summary>
<para>Method extension for Physics in Particle System.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.GetCollisionEvents(UnityEngine.ParticleSystem,UnityEngine.GameObject,UnityEngine.ParticleCollisionEvent[])">
<summary>
<para>Get the particle collision events for a GameObject. Returns the number of events written to the array.</para>
</summary>
<param name="go">The GameObject for which to retrieve collision events.</param>
<param name="collisionEvents">Array to write collision events to.</param>
<param name="ps"></param>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.GetSafeCollisionEventSize(UnityEngine.ParticleSystem)">
<summary>
<para>Safe array size for use with ParticleSystem.GetCollisionEvents.</para>
</summary>
<param name="ps"></param>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.GetSafeTriggerParticlesSize(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemTriggerEventType)">
<summary>
<para>Safe array size for use with ParticleSystem.GetTriggerParticles.</para>
</summary>
<param name="ps">Particle system.</param>
<param name="type">Type of trigger to return size for.</param>
<returns>
<para>Number of particles with this trigger event type.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.GetTriggerParticles">
<summary>
<para>Get the particles that met the condition in the particle trigger module. Returns the number of particles written to the array.</para>
</summary>
<param name="ps">Particle system.</param>
<param name="type">Type of trigger to return particles for.</param>
<param name="particles">The array of particles matching the trigger event type.</param>
<returns>
<para>Number of particles with this trigger event type.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.SetTriggerParticles">
<summary>
<para>Write modified particles back to the particle system, during a call to OnParticleTrigger.</para>
</summary>
<param name="ps">Particle system.</param>
<param name="type">Type of trigger to set particles for.</param>
<param name="particles">Particle array.</param>
<param name="offset">Offset into the array, if you only want to write back a subset of the returned particles.</param>
<param name="count">Number of particles to write, if you only want to write back a subset of the returned particles.</param>
</member>
<member name="M:UnityEngine.ParticlePhysicsExtensions.SetTriggerParticles">
<summary>
<para>Write modified particles back to the particle system, during a call to OnParticleTrigger.</para>
</summary>
<param name="ps">Particle system.</param>
<param name="type">Type of trigger to set particles for.</param>
<param name="particles">Particle array.</param>
<param name="offset">Offset into the array, if you only want to write back a subset of the returned particles.</param>
<param name="count">Number of particles to write, if you only want to write back a subset of the returned particles.</param>
</member>
<member name="T:UnityEngine.ParticleSystem">
<summary>
<para>Script interface for particle systems (Shuriken).</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.collision">
<summary>
<para>Access the particle system collision module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.colorBySpeed">
<summary>
<para>Access the particle system color by lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.colorOverLifetime">
<summary>
<para>Access the particle system color over lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.customData">
<summary>
<para>Access the particle system Custom Data module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.duration">
<summary>
<para>The duration of the particle system in seconds (Read Only).</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.emission">
<summary>
<para>Access the particle system emission module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.emissionRate">
<summary>
<para>The rate of emission.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.enableEmission">
<summary>
<para>When set to false, the particle system will not emit particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.externalForces">
<summary>
<para>Access the particle system external forces module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.forceOverLifetime">
<summary>
<para>Access the particle system force over lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.gravityModifier">
<summary>
<para>Scale being applied to the gravity defined by Physics.gravity.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.inheritVelocity">
<summary>
<para>Access the particle system velocity inheritance module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.isEmitting">
<summary>
<para>Is the particle system currently emitting particles? A particle system may stop emitting when its emission module has finished, it has been paused or if the system has been stopped using ParticleSystem.Stop|Stop with the ParticleSystemStopBehavior.StopEmitting|StopEmitting flag. Resume emitting by calling ParticleSystem.Play|Play.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.isPaused">
<summary>
<para>Is the particle system paused right now ?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.isPlaying">
<summary>
<para>Is the particle system playing right now ?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.isStopped">
<summary>
<para>Is the particle system stopped right now ?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.lights">
<summary>
<para>Access the particle system lights module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.limitVelocityOverLifetime">
<summary>
<para>Access the particle system limit velocity over lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.loop">
<summary>
<para>Is the particle system looping?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.main">
<summary>
<para>Access the main particle system settings.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.maxParticles">
<summary>
<para>The maximum number of particles to emit.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.noise">
<summary>
<para>Access the particle system noise module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.particleCount">
<summary>
<para>The current number of particles (Read Only).</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.playbackSpeed">
<summary>
<para>The playback speed of the particle system. 1 is normal playback speed.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.playOnAwake">
<summary>
<para>If set to true, the particle system will automatically start playing on startup.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.randomSeed">
<summary>
<para>Override the random seed used for the particle system emission.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.rotationBySpeed">
<summary>
<para>Access the particle system rotation by speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.rotationOverLifetime">
<summary>
<para>Access the particle system rotation over lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.scalingMode">
<summary>
<para>The scaling mode applied to particle sizes and positions.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.shape">
<summary>
<para>Access the particle system shape module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.simulationSpace">
<summary>
<para>This selects the space in which to simulate particles. It can be either world or local space.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.sizeBySpeed">
<summary>
<para>Access the particle system size by speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.sizeOverLifetime">
<summary>
<para>Access the particle system size over lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startColor">
<summary>
<para>The initial color of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startDelay">
<summary>
<para>Start delay in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startLifetime">
<summary>
<para>The total lifetime in seconds that particles will have when emitted. When using curves, this values acts as a scale on the curve. This value is set in the particle when it is created by the particle system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startRotation">
<summary>
<para>The initial rotation of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startRotation3D">
<summary>
<para>The initial 3D rotation of particles when emitted. When using curves, this values acts as a scale on the curves.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startSize">
<summary>
<para>The initial size of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.startSpeed">
<summary>
<para>The initial speed of particles when emitted. When using curves, this values acts as a scale on the curve.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.subEmitters">
<summary>
<para>Access the particle system sub emitters module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.textureSheetAnimation">
<summary>
<para>Access the particle system texture sheet animation module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.time">
<summary>
<para>Playback position in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.trails">
<summary>
<para>Access the particle system trails module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.trigger">
<summary>
<para>Access the particle system trigger module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.useAutoRandomSeed">
<summary>
<para>Controls whether the Particle System uses an automatically-generated random number to seed the random number generator.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.velocityOverLifetime">
<summary>
<para>Access the particle system velocity over lifetime module.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.Burst">
<summary>
<para>Script interface for a Burst.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.count">
<summary>
<para>Number of particles to be emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.cycleCount">
<summary>
<para>How many times to play the burst. (0 means infinitely).</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.maxCount">
<summary>
<para>Maximum number of particles to be emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.minCount">
<summary>
<para>Minimum number of particles to be emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.repeatInterval">
<summary>
<para>How often to repeat the burst, in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Burst.time">
<summary>
<para>The time that each burst occurs.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16)">
<summary>
<para>Construct a new Burst with a time and count.</para>
</summary>
<param name="_time">Time to emit the burst.</param>
<param name="_minCount">Minimum number of particles to emit.</param>
<param name="_maxCount">Maximum number of particles to emit.</param>
<param name="_count">Number of particles to emit.</param>
<param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
<param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16,System.Int16)">
<summary>
<para>Construct a new Burst with a time and count.</para>
</summary>
<param name="_time">Time to emit the burst.</param>
<param name="_minCount">Minimum number of particles to emit.</param>
<param name="_maxCount">Maximum number of particles to emit.</param>
<param name="_count">Number of particles to emit.</param>
<param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
<param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,System.Int16,System.Int16,System.Int32,System.Single)">
<summary>
<para>Construct a new Burst with a time and count.</para>
</summary>
<param name="_time">Time to emit the burst.</param>
<param name="_minCount">Minimum number of particles to emit.</param>
<param name="_maxCount">Maximum number of particles to emit.</param>
<param name="_count">Number of particles to emit.</param>
<param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
<param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,UnityEngine.ParticleSystem/MinMaxCurve)">
<summary>
<para>Construct a new Burst with a time and count.</para>
</summary>
<param name="_time">Time to emit the burst.</param>
<param name="_minCount">Minimum number of particles to emit.</param>
<param name="_maxCount">Maximum number of particles to emit.</param>
<param name="_count">Number of particles to emit.</param>
<param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
<param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Burst.#ctor(System.Single,UnityEngine.ParticleSystem/MinMaxCurve,System.Int32,System.Single)">
<summary>
<para>Construct a new Burst with a time and count.</para>
</summary>
<param name="_time">Time to emit the burst.</param>
<param name="_minCount">Minimum number of particles to emit.</param>
<param name="_maxCount">Maximum number of particles to emit.</param>
<param name="_count">Number of particles to emit.</param>
<param name="_cycleCount">Number of times to play the burst. (0 means indefinitely).</param>
<param name="_repeatInterval">How often to repeat the burst, in seconds.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Clear(System.Boolean)">
<summary>
<para>Remove all particles in the particle system.</para>
</summary>
<param name="withChildren">Clear all child particle systems as well.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.CollisionModule">
<summary>
<para>Script interface for the Collision module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.bounce">
<summary>
<para>How much force is applied to each particle after a collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.bounceMultiplier">
<summary>
<para>Change the bounce multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.colliderForce">
<summary>
<para>How much force is applied to a Collider when hit by particles from this Particle System.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.collidesWith">
<summary>
<para>Control which layers this particle system collides with.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.dampen">
<summary>
<para>How much speed is lost from each particle after a collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.dampenMultiplier">
<summary>
<para>Change the dampen multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.enabled">
<summary>
<para>Enable/disable the Collision module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.enableDynamicColliders">
<summary>
<para>Allow particles to collide with dynamic colliders when using world collision mode.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.enableInteriorCollisions">
<summary>
<para>Allow particles to collide when inside colliders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.lifetimeLoss">
<summary>
<para>How much a particle's lifetime is reduced after a collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.lifetimeLossMultiplier">
<summary>
<para>Change the lifetime loss multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.maxCollisionShapes">
<summary>
<para>The maximum number of collision shapes that will be considered for particle collisions. Excess shapes will be ignored. Terrains take priority.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.maxKillSpeed">
<summary>
<para>Kill particles whose speed goes above this threshold, after a collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.maxPlaneCount">
<summary>
<para>The maximum number of planes it is possible to set as colliders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.minKillSpeed">
<summary>
<para>Kill particles whose speed falls below this threshold, after a collision.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.mode">
<summary>
<para>Choose between 2D and 3D world collisions.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByCollisionAngle">
<summary>
<para>If true, the collision angle is considered when applying forces from particles to Colliders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByParticleSize">
<summary>
<para>If true, particle sizes are considered when applying forces to Colliders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.multiplyColliderForceByParticleSpeed">
<summary>
<para>If true, particle speeds are considered when applying forces to Colliders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.quality">
<summary>
<para>Specifies the accuracy of particle collisions against colliders in the scene.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.radiusScale">
<summary>
<para>A multiplier applied to the size of each particle before collisions are processed.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.sendCollisionMessages">
<summary>
<para>Send collision callback messages.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.type">
<summary>
<para>The type of particle collision to perform.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CollisionModule.voxelSize">
<summary>
<para>Size of voxels in the collision cache.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.CollisionModule.GetPlane(System.Int32)">
<summary>
<para>Get a collision plane associated with this particle system.</para>
</summary>
<param name="index">Specifies which plane to access.</param>
<returns>
<para>The plane.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.CollisionModule.SetPlane(System.Int32,UnityEngine.Transform)">
<summary>
<para>Set a collision plane to be used with this particle system.</para>
</summary>
<param name="index">Specifies which plane to set.</param>
<param name="transform">The plane to set.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.ColorBySpeedModule">
<summary>
<para>Script interface for the Color By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.color">
<summary>
<para>The gradient controlling the particle colors.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.enabled">
<summary>
<para>Enable/disable the Color By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ColorBySpeedModule.range">
<summary>
<para>Apply the color gradient between these minimum and maximum speeds.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.ColorOverLifetimeModule">
<summary>
<para>Script interface for the Color Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ColorOverLifetimeModule.color">
<summary>
<para>The gradient controlling the particle colors.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ColorOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Color Over Lifetime module.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.CustomDataModule">
<summary>
<para>Script interface for the Custom Data module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.CustomDataModule.enabled">
<summary>
<para>Enable/disable the Custom Data module.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetColor(UnityEngine.ParticleSystemCustomData)">
<summary>
<para>Get a ParticleSystem.MinMaxGradient, that is being used to generate custom HDR color data.</para>
</summary>
<param name="stream">The name of the custom data stream to retrieve the gradient from.</param>
<returns>
<para>The color gradient being used to generate custom color data.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetMode(UnityEngine.ParticleSystemCustomData)">
<summary>
<para>Find out the type of custom data that is being generated for the chosen data stream.</para>
</summary>
<param name="stream">The name of the custom data stream to query.</param>
<returns>
<para>The type of data being generated for the requested stream.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetVector(UnityEngine.ParticleSystemCustomData,System.Int32)">
<summary>
<para>Get a ParticleSystem.MinMaxCurve, that is being used to generate custom data.</para>
</summary>
<param name="stream">The name of the custom data stream to retrieve the curve from.</param>
<param name="component">The component index to retrieve the curve for (0-3, mapping to the xyzw components of a Vector4 or float4).</param>
<returns>
<para>The curve being used to generate custom data.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.GetVectorComponentCount(UnityEngine.ParticleSystemCustomData)">
<summary>
<para>Query how many ParticleSystem.MinMaxCurve elements are being used to generate this stream of custom data.</para>
</summary>
<param name="stream">The name of the custom data stream to retrieve the curve from.</param>
<returns>
<para>The number of curves.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetColor(UnityEngine.ParticleSystemCustomData,UnityEngine.ParticleSystem/MinMaxGradient)">
<summary>
<para>Set a ParticleSystem.MinMaxGradient, in order to generate custom HDR color data.</para>
</summary>
<param name="stream">The name of the custom data stream to apply the gradient to.</param>
<param name="gradient">The gradient to be used for generating custom color data.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetMode(UnityEngine.ParticleSystemCustomData,UnityEngine.ParticleSystemCustomDataMode)">
<summary>
<para>Choose the type of custom data to generate for the chosen data stream.</para>
</summary>
<param name="stream">The name of the custom data stream to enable data generation on.</param>
<param name="mode">The type of data to generate.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetVector(UnityEngine.ParticleSystemCustomData,System.Int32,UnityEngine.ParticleSystem/MinMaxCurve)">
<summary>
<para>Set a ParticleSystem.MinMaxCurve, in order to generate custom data.</para>
</summary>
<param name="stream">The name of the custom data stream to apply the curve to.</param>
<param name="component">The component index to apply the curve to (0-3, mapping to the xyzw components of a Vector4 or float4).</param>
<param name="curve">The curve to be used for generating custom data.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.CustomDataModule.SetVectorComponentCount(UnityEngine.ParticleSystemCustomData,System.Int32)">
<summary>
<para>Specify how many curves are used to generate custom data for this stream.</para>
</summary>
<param name="stream">The name of the custom data stream to apply the curve to.</param>
<param name="curveCount">The number of curves to generate data for.</param>
<param name="count"></param>
</member>
<member name="T:UnityEngine.ParticleSystem.EmissionModule">
<summary>
<para>Script interface for the Emission module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.burstCount">
<summary>
<para>The current number of bursts.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.enabled">
<summary>
<para>Enable/disable the Emission module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rate">
<summary>
<para>The rate at which new particles are spawned.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rateMultiplier">
<summary>
<para>Change the rate multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverDistance">
<summary>
<para>The rate at which new particles are spawned, over distance.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverDistanceMultiplier">
<summary>
<para>Change the rate over distance multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverTime">
<summary>
<para>The rate at which new particles are spawned, over time.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.rateOverTimeMultiplier">
<summary>
<para>Change the rate over time multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmissionModule.type">
<summary>
<para>The emission type.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmissionModule.GetBurst(System.Int32)">
<summary>
<para>Get a single burst from the array of bursts.</para>
</summary>
<param name="index">The index of the burst to retrieve.</param>
<returns>
<para>The burst data at the given index.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.EmissionModule.GetBursts(UnityEngine.ParticleSystem/Burst[])">
<summary>
<para>Get the burst array.</para>
</summary>
<param name="bursts">Array of bursts to be filled in.</param>
<returns>
<para>The number of bursts in the array.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBurst(System.Int32,UnityEngine.ParticleSystem/Burst)">
<summary>
<para>Set a single burst in the array of bursts.</para>
</summary>
<param name="index">The index of the burst to retrieve.</param>
<param name="burst">The new burst data to apply to the Particle System.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBursts(UnityEngine.ParticleSystem/Burst[])">
<summary>
<para>Set the burst array.</para>
</summary>
<param name="bursts">Array of bursts.</param>
<param name="size">Optional array size, if burst count is less than array size.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.EmissionModule.SetBursts(UnityEngine.ParticleSystem/Burst[],System.Int32)">
<summary>
<para>Set the burst array.</para>
</summary>
<param name="bursts">Array of bursts.</param>
<param name="size">Optional array size, if burst count is less than array size.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Emit(System.Int32)">
<summary>
<para>Emit count particles immediately.</para>
</summary>
<param name="count">Number of particles to emit.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.ParticleSystem/EmitParams,System.Int32)">
<summary>
<para>Emit a number of particles from script.</para>
</summary>
<param name="emitParams">Overidden particle properties.</param>
<param name="count">Number of particles to emit.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single,UnityEngine.Color32)">
<summary>
<para></para>
</summary>
<param name="position"></param>
<param name="velocity"></param>
<param name="size"></param>
<param name="lifetime"></param>
<param name="color"></param>
</member>
<member name="M:UnityEngine.ParticleSystem.Emit(UnityEngine.ParticleSystem/Particle)">
<summary>
<para></para>
</summary>
<param name="particle"></param>
</member>
<member name="T:UnityEngine.ParticleSystem.EmitParams">
<summary>
<para>Script interface for particle emission parameters.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.angularVelocity">
<summary>
<para>Override the angular velocity of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.angularVelocity3D">
<summary>
<para>Override the 3D angular velocity of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.applyShapeToPosition">
<summary>
<para>When overriding the position of particles, setting this flag to true allows you to retain the influence of the shape module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.axisOfRotation">
<summary>
<para>Override the axis of rotation of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.position">
<summary>
<para>Override the position of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.randomSeed">
<summary>
<para>Override the random seed of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.rotation">
<summary>
<para>Override the rotation of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.rotation3D">
<summary>
<para>Override the 3D rotation of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.startColor">
<summary>
<para>Override the initial color of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.startLifetime">
<summary>
<para>Override the lifetime of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.startSize">
<summary>
<para>Override the initial size of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.startSize3D">
<summary>
<para>Override the initial 3D size of emitted particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.EmitParams.velocity">
<summary>
<para>Override the velocity of emitted particles.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetAngularVelocity">
<summary>
<para>Reverts angularVelocity and angularVelocity3D back to the values specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetAxisOfRotation">
<summary>
<para>Revert the axis of rotation back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetPosition">
<summary>
<para>Revert the position back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetRandomSeed">
<summary>
<para>Revert the random seed back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetRotation">
<summary>
<para>Reverts rotation and rotation3D back to the values specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartColor">
<summary>
<para>Revert the initial color back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartLifetime">
<summary>
<para>Revert the lifetime back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetStartSize">
<summary>
<para>Revert the initial size back to the value specified in the inspector.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.EmitParams.ResetVelocity">
<summary>
<para>Revert the velocity back to the value specified in the inspector.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.ExternalForcesModule">
<summary>
<para>Script interface for the External Forces module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ExternalForcesModule.enabled">
<summary>
<para>Enable/disable the External Forces module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ExternalForcesModule.multiplier">
<summary>
<para>Multiplies the magnitude of applied external forces.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.ForceOverLifetimeModule">
<summary>
<para>Script interface for the Force Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Force Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.randomized">
<summary>
<para>When randomly selecting values between two curves or constants, this flag will cause a new random force to be chosen on each frame.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.space">
<summary>
<para>Are the forces being applied in local or world space?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.x">
<summary>
<para>The curve defining particle forces in the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.xMultiplier">
<summary>
<para>Change the X axis mulutiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.y">
<summary>
<para>The curve defining particle forces in the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.yMultiplier">
<summary>
<para>Change the Y axis multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.z">
<summary>
<para>The curve defining particle forces in the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ForceOverLifetimeModule.zMultiplier">
<summary>
<para>Change the Z axis multiplier.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.GetCustomParticleData(System.Collections.Generic.List`1<UnityEngine.Vector4>,UnityEngine.ParticleSystemCustomData)">
<summary>
<para>Get a stream of custom per-particle data.</para>
</summary>
<param name="customData">The array of per-particle data.</param>
<param name="streamIndex">Which stream to retrieve the data from.</param>
<returns>
<para>The amount of valid per-particle data.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.GetParticles(UnityEngine.ParticleSystem/Particle[])">
<summary>
<para>Gets the particles of this particle system.</para>
</summary>
<param name="particles">Output particle buffer, containing the current particle state.</param>
<returns>
<para>The number of particles written to the input particle array (the number of particles currently alive).</para>
</returns>
</member>
<member name="T:UnityEngine.ParticleSystem.InheritVelocityModule">
<summary>
<para>The Inherit Velocity Module controls how the velocity of the emitter is transferred to the particles as they are emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.curve">
<summary>
<para>Curve to define how much emitter velocity is applied during the lifetime of a particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.curveMultiplier">
<summary>
<para>Change the curve multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.enabled">
<summary>
<para>Enable/disable the InheritVelocity module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.InheritVelocityModule.mode">
<summary>
<para>How to apply emitter velocity to particles.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.IsAlive(System.Boolean)">
<summary>
<para>Does the system have any live particles (or will produce more)?</para>
</summary>
<param name="withChildren">Check all child particle systems as well.</param>
<returns>
<para>True if the particle system is still "alive", false if the particle system is done emitting particles and all particles are dead.</para>
</returns>
</member>
<member name="T:UnityEngine.ParticleSystem.LightsModule">
<summary>
<para>Access the ParticleSystem Lights Module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.alphaAffectsIntensity">
<summary>
<para>Toggle whether the particle alpha gets multiplied by the light intensity, when computing the final light intensity.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.enabled">
<summary>
<para>Enable/disable the Lights module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.intensity">
<summary>
<para>Define a curve to apply custom intensity scaling to particle lights.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.intensityMultiplier">
<summary>
<para>Intensity multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.light">
<summary>
<para>Select what Light prefab you want to base your particle lights on.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.maxLights">
<summary>
<para>Set a limit on how many lights this Module can create.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.range">
<summary>
<para>Define a curve to apply custom range scaling to particle lights.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.rangeMultiplier">
<summary>
<para>Range multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.ratio">
<summary>
<para>Choose what proportion of particles will receive a dynamic light.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.sizeAffectsRange">
<summary>
<para>Toggle where the particle size will be multiplied by the light range, to determine the final light range.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.useParticleColor">
<summary>
<para>Toggle whether the particle lights will have their color multiplied by the particle color.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LightsModule.useRandomDistribution">
<summary>
<para>Randomly assign lights to new particles based on ParticleSystem.LightsModule.ratio.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule">
<summary>
<para>Script interface for the Limit Velocity Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.dampen">
<summary>
<para>Controls how much the velocity that exceeds the velocity limit should be dampened.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.drag">
<summary>
<para>Controls the amount of drag applied to the particle velocities.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.dragMultiplier">
<summary>
<para>Change the drag multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Limit Force Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limit">
<summary>
<para>Maximum velocity curve, when not using one curve per axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitMultiplier">
<summary>
<para>Change the limit multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitX">
<summary>
<para>Maximum velocity curve for the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitXMultiplier">
<summary>
<para>Change the limit multiplier on the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitY">
<summary>
<para>Maximum velocity curve for the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitYMultiplier">
<summary>
<para>Change the limit multiplier on the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitZ">
<summary>
<para>Maximum velocity curve for the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.limitZMultiplier">
<summary>
<para>Change the limit multiplier on the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.multiplyDragByParticleSize">
<summary>
<para>Adjust the amount of drag applied to particles, based on their sizes.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.multiplyDragByParticleVelocity">
<summary>
<para>Adjust the amount of drag applied to particles, based on their speeds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.separateAxes">
<summary>
<para>Set the velocity limit on each axis separately.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.LimitVelocityOverLifetimeModule.space">
<summary>
<para>Specifies if the velocity limits are in local space (rotated with the transform) or world space.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.MainModule">
<summary>
<para>Script interface for the main module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.customSimulationSpace">
<summary>
<para>Simulate particles relative to a custom transform component.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.duration">
<summary>
<para>The duration of the particle system in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.emitterVelocityMode">
<summary>
<para>Control how the Particle System calculates its velocity, when moving in the world.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.gravityModifier">
<summary>
<para>Scale applied to the gravity, defined by Physics.gravity.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.gravityModifierMultiplier">
<summary>
<para>Change the gravity mulutiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.loop">
<summary>
<para>Is the particle system looping?</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.maxParticles">
<summary>
<para>The maximum number of particles to emit.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.playOnAwake">
<summary>
<para>If set to true, the particle system will automatically start playing on startup.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.prewarm">
<summary>
<para>When looping is enabled, this controls whether this particle system will look like it has already simulated for one loop when first becoming visible.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.randomizeRotationDirection">
<summary>
<para>Cause some particles to spin in the opposite direction.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.scalingMode">
<summary>
<para>Control how the particle system's Transform Component is applied to the particle system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.simulationSpace">
<summary>
<para>This selects the space in which to simulate particles. It can be either world or local space.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.simulationSpeed">
<summary>
<para>Override the default playback speed of the Particle System.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startColor">
<summary>
<para>The initial color of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startDelay">
<summary>
<para>Start delay in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startDelayMultiplier">
<summary>
<para>Start delay multiplier in seconds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startLifetime">
<summary>
<para>The total lifetime in seconds that each new particle will have.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startLifetimeMultiplier">
<summary>
<para>Start lifetime multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotation">
<summary>
<para>The initial rotation of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotation3D">
<summary>
<para>A flag to enable 3D particle rotation.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationMultiplier">
<summary>
<para>Start rotation multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationX">
<summary>
<para>The initial rotation of particles around the X axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationXMultiplier">
<summary>
<para>Start rotation multiplier around the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationY">
<summary>
<para>The initial rotation of particles around the Y axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationYMultiplier">
<summary>
<para>Start rotation multiplier around the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationZ">
<summary>
<para>The initial rotation of particles around the Z axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startRotationZMultiplier">
<summary>
<para>Start rotation multiplier around the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSize">
<summary>
<para>The initial size of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSize3D">
<summary>
<para>A flag to enable specifying particle size individually for each axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeMultiplier">
<summary>
<para>Start size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeX">
<summary>
<para>The initial size of particles along the X axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeXMultiplier">
<summary>
<para>Start rotation multiplier along the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeY">
<summary>
<para>The initial size of particles along the Y axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeYMultiplier">
<summary>
<para>Start rotation multiplier along the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeZ">
<summary>
<para>The initial size of particles along the Z axis when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSizeZMultiplier">
<summary>
<para>Start rotation multiplier along the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSpeed">
<summary>
<para>The initial speed of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.startSpeedMultiplier">
<summary>
<para>A multiplier of the initial speed of particles when emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.stopAction">
<summary>
<para>Configure whether the GameObject will automatically disable or destroy itself, when the Particle System is stopped and all particles have died.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MainModule.useUnscaledTime">
<summary>
<para>When true, use the unscaled delta time to simulate the Particle System. Otherwise, use the scaled delta time.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.MinMaxCurve">
<summary>
<para>Script interface for a Min-Max Curve.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constant">
<summary>
<para>Set the constant value.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constantMax">
<summary>
<para>Set a constant for the upper bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.constantMin">
<summary>
<para>Set a constant for the lower bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curve">
<summary>
<para>Set the curve.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMax">
<summary>
<para>Set a curve for the upper bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMin">
<summary>
<para>Set a curve for the lower bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.curveMultiplier">
<summary>
<para>Set a multiplier to be applied to the curves.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxCurve.mode">
<summary>
<para>Set the mode that the min-max curve will use to evaluate values.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single)">
<summary>
<para>A single constant value for the entire curve.</para>
</summary>
<param name="constant">Constant value.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,UnityEngine.AnimationCurve)">
<summary>
<para>Use one curve when evaluating numbers along this Min-Max curve.</para>
</summary>
<param name="scalar">A multiplier to be applied to the curve.</param>
<param name="curve">A single curve for evaluating against.</param>
<param name="multiplier"></param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,UnityEngine.AnimationCurve,UnityEngine.AnimationCurve)">
<summary>
<para>Randomly select values based on the interval between the minimum and maximum curves.</para>
</summary>
<param name="scalar">A multiplier to be applied to the curves.</param>
<param name="min">The curve describing the minimum values to be evaluated.</param>
<param name="max">The curve describing the maximum values to be evaluated.</param>
<param name="multiplier"></param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.#ctor(System.Single,System.Single)">
<summary>
<para>Randomly select values based on the interval between the minimum and maximum constants.</para>
</summary>
<param name="min">The constant describing the minimum values to be evaluated.</param>
<param name="max">The constant describing the maximum values to be evaluated.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.Evaluate(System.Single)">
<summary>
<para>Manually query the curve to calculate values based on what mode it is in.</para>
</summary>
<param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the curve. This is valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.Curve or ParticleSystemCurveMode.TwoCurves.</param>
<param name="lerpFactor">Blend between the 2 curves/constants (Valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.TwoConstants or ParticleSystemCurveMode.TwoCurves).</param>
<returns>
<para>Calculated curve/constant value.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxCurve.Evaluate(System.Single,System.Single)">
<summary>
<para>Manually query the curve to calculate values based on what mode it is in.</para>
</summary>
<param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the curve. This is valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.Curve or ParticleSystemCurveMode.TwoCurves.</param>
<param name="lerpFactor">Blend between the 2 curves/constants (Valid when ParticleSystem.MinMaxCurve.mode is set to ParticleSystemCurveMode.TwoConstants or ParticleSystemCurveMode.TwoCurves).</param>
<returns>
<para>Calculated curve/constant value.</para>
</returns>
</member>
<member name="T:UnityEngine.ParticleSystem.MinMaxGradient">
<summary>
<para>MinMaxGradient contains two Gradients, and returns a Color based on ParticleSystem.MinMaxGradient.mode. Depending on the mode, the Color returned may be randomized.
Gradients are edited via the ParticleSystem Inspector once a ParticleSystemGradientMode requiring them has been selected. Some modes do not require gradients, only colors.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.color">
<summary>
<para>Set a constant color.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.colorMax">
<summary>
<para>Set a constant color for the upper bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.colorMin">
<summary>
<para>Set a constant color for the lower bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradient">
<summary>
<para>Set the gradient.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradientMax">
<summary>
<para>Set a gradient for the upper bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.gradientMin">
<summary>
<para>Set a gradient for the lower bound.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.MinMaxGradient.mode">
<summary>
<para>Set the mode that the min-max gradient will use to evaluate colors.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Color)">
<summary>
<para>A single constant color for the entire gradient.</para>
</summary>
<param name="color">Constant color.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Gradient)">
<summary>
<para>Use one gradient when evaluating numbers along this Min-Max gradient.</para>
</summary>
<param name="gradient">A single gradient for evaluating against.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Color,UnityEngine.Color)">
<summary>
<para>Randomly select colors based on the interval between the minimum and maximum constants.</para>
</summary>
<param name="min">The constant color describing the minimum colors to be evaluated.</param>
<param name="max">The constant color describing the maximum colors to be evaluated.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.#ctor(UnityEngine.Gradient,UnityEngine.Gradient)">
<summary>
<para>Randomly select colors based on the interval between the minimum and maximum gradients.</para>
</summary>
<param name="min">The gradient describing the minimum colors to be evaluated.</param>
<param name="max">The gradient describing the maximum colors to be evaluated.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.Evaluate(System.Single)">
<summary>
<para>Manually query the gradient to calculate colors based on what mode it is in.</para>
</summary>
<param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the gradient. This is valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.Gradient or ParticleSystemGradientMode.TwoGradients.</param>
<param name="lerpFactor">Blend between the 2 gradients/colors (Valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.TwoColors or ParticleSystemGradientMode.TwoGradients).</param>
<returns>
<para>Calculated gradient/color value.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.MinMaxGradient.Evaluate(System.Single,System.Single)">
<summary>
<para>Manually query the gradient to calculate colors based on what mode it is in.</para>
</summary>
<param name="time">Normalized time (in the range 0 - 1, where 1 represents 100%) at which to evaluate the gradient. This is valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.Gradient or ParticleSystemGradientMode.TwoGradients.</param>
<param name="lerpFactor">Blend between the 2 gradients/colors (Valid when ParticleSystem.MinMaxGradient.mode is set to ParticleSystemGradientMode.TwoColors or ParticleSystemGradientMode.TwoGradients).</param>
<returns>
<para>Calculated gradient/color value.</para>
</returns>
</member>
<member name="T:UnityEngine.ParticleSystem.NoiseModule">
<summary>
<para>Script interface for the Noise Module.
The Noise Module allows you to apply turbulence to the movement of your particles. Use the low quality settings to create computationally efficient Noise, or simulate smoother, richer Noise with the higher quality settings. You can also choose to define the behavior of the Noise individually for each axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.damping">
<summary>
<para>Higher frequency noise will reduce the strength by a proportional amount, if enabled.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.enabled">
<summary>
<para>Enable/disable the Noise module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.frequency">
<summary>
<para>Low values create soft, smooth noise, and high values create rapidly changing noise.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveCount">
<summary>
<para>Layers of noise that combine to produce final noise.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveMultiplier">
<summary>
<para>When combining each octave, scale the intensity by this amount.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.octaveScale">
<summary>
<para>When combining each octave, zoom in by this amount.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.positionAmount">
<summary>
<para>How much the noise affects the particle positions.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.quality">
<summary>
<para>Generate 1D, 2D or 3D noise.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remap">
<summary>
<para>Define how the noise values are remapped.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapEnabled">
<summary>
<para>Enable remapping of the final noise values, allowing for noise values to be translated into different values.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapMultiplier">
<summary>
<para>Remap multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapX">
<summary>
<para>Define how the noise values are remapped on the X axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapXMultiplier">
<summary>
<para>X axis remap multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapY">
<summary>
<para>Define how the noise values are remapped on the Y axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapYMultiplier">
<summary>
<para>Y axis remap multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapZ">
<summary>
<para>Define how the noise values are remapped on the Z axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.remapZMultiplier">
<summary>
<para>Z axis remap multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.rotationAmount">
<summary>
<para>How much the noise affects the particle rotation, in degrees per second.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.scrollSpeed">
<summary>
<para>Scroll the noise map over the particle system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.scrollSpeedMultiplier">
<summary>
<para>Scroll speed multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.separateAxes">
<summary>
<para>Control the noise separately for each axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.sizeAmount">
<summary>
<para>How much the noise affects the particle sizes, applied as a multiplier on the size of each particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strength">
<summary>
<para>How strong the overall noise effect is.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthMultiplier">
<summary>
<para>Strength multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthX">
<summary>
<para>Define the strength of the effect on the X axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthXMultiplier">
<summary>
<para>X axis strength multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthY">
<summary>
<para>Define the strength of the effect on the Y axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthYMultiplier">
<summary>
<para>Y axis strength multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthZ">
<summary>
<para>Define the strength of the effect on the Z axis, when using the ParticleSystem.NoiseModule.separateAxes option.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.NoiseModule.strengthZMultiplier">
<summary>
<para>Z axis strength multiplier.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.Particle">
<summary>
<para>Script interface for a Particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.angularVelocity">
<summary>
<para>The angular velocity of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.angularVelocity3D">
<summary>
<para>The 3D angular velocity of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.animatedVelocity">
<summary>
<para>The animated velocity of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.lifetime">
<summary>
<para>The lifetime of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.position">
<summary>
<para>The position of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.randomSeed">
<summary>
<para>The random seed of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.randomValue">
<summary>
<para>The random value of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.remainingLifetime">
<summary>
<para>The remaining lifetime of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.rotation">
<summary>
<para>The rotation of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.rotation3D">
<summary>
<para>The 3D rotation of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.startColor">
<summary>
<para>The initial color of the particle. The current color of the particle is calculated procedurally based on this value and the active color modules.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.startLifetime">
<summary>
<para>The starting lifetime of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.startSize">
<summary>
<para>The initial size of the particle. The current size of the particle is calculated procedurally based on this value and the active size modules.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.startSize3D">
<summary>
<para>The initial 3D size of the particle. The current size of the particle is calculated procedurally based on this value and the active size modules.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.totalVelocity">
<summary>
<para>The total velocity of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.Particle.velocity">
<summary>
<para>The velocity of the particle.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentColor(UnityEngine.ParticleSystem)">
<summary>
<para>Calculate the current color of the particle by applying the relevant curves to its startColor property.</para>
</summary>
<param name="system">The particle system from which this particle was emitted.</param>
<returns>
<para>Current color.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentSize(UnityEngine.ParticleSystem)">
<summary>
<para>Calculate the current size of the particle by applying the relevant curves to its startSize property.</para>
</summary>
<param name="system">The particle system from which this particle was emitted.</param>
<returns>
<para>Current size.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.Particle.GetCurrentSize3D(UnityEngine.ParticleSystem)">
<summary>
<para>Calculate the current 3D size of the particle by applying the relevant curves to its startSize3D property.</para>
</summary>
<param name="system">The particle system from which this particle was emitted.</param>
<returns>
<para>Current size.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.Pause(System.Boolean)">
<summary>
<para>Pauses the system so no new particles are emitted and the existing particles are not updated.</para>
</summary>
<param name="withChildren">Pause all child particle systems as well.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Play(System.Boolean)">
<summary>
<para>Starts the particle system.</para>
</summary>
<param name="withChildren">Play all child particle systems as well.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.RotationBySpeedModule">
<summary>
<para>Script interface for the Rotation By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.enabled">
<summary>
<para>Enable/disable the Rotation By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.range">
<summary>
<para>Apply the rotation curve between these minimum and maximum speeds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.separateAxes">
<summary>
<para>Set the rotation by speed on each axis separately.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.x">
<summary>
<para>Rotation by speed curve for the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.xMultiplier">
<summary>
<para>Speed multiplier along the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.y">
<summary>
<para>Rotation by speed curve for the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.yMultiplier">
<summary>
<para>Speed multiplier along the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.z">
<summary>
<para>Rotation by speed curve for the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationBySpeedModule.zMultiplier">
<summary>
<para>Speed multiplier along the Z axis.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.RotationOverLifetimeModule">
<summary>
<para>Script interface for the Rotation Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Rotation Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.separateAxes">
<summary>
<para>Set the rotation over lifetime on each axis separately.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.x">
<summary>
<para>Rotation over lifetime curve for the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.xMultiplier">
<summary>
<para>Rotation multiplier around the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.y">
<summary>
<para>Rotation over lifetime curve for the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.yMultiplier">
<summary>
<para>Rotation multiplier around the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.z">
<summary>
<para>Rotation over lifetime curve for the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.RotationOverLifetimeModule.zMultiplier">
<summary>
<para>Rotation multiplier around the Z axis.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.SetCustomParticleData(System.Collections.Generic.List`1<UnityEngine.Vector4>,UnityEngine.ParticleSystemCustomData)">
<summary>
<para>Set a stream of custom per-particle data.</para>
</summary>
<param name="customData">The array of per-particle data.</param>
<param name="streamIndex">Which stream to assign the data to.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.SetParticles(UnityEngine.ParticleSystem/Particle[],System.Int32)">
<summary>
<para>Sets the particles of this particle system.</para>
</summary>
<param name="particles">Input particle buffer, containing the desired particle state.</param>
<param name="size">The number of elements in the particles array that is written to the Particle System.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.ShapeModule">
<summary>
<para>Script interface for the Shape module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.alignToDirection">
<summary>
<para>Align particles based on their initial direction of travel.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.angle">
<summary>
<para>Angle of the cone.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.arc">
<summary>
<para>Circle arc angle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.arcMode">
<summary>
<para>The mode used for generating particles around the arc.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpeed">
<summary>
<para>When using one of the animated modes, how quickly to move the emission position around the arc.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpeedMultiplier">
<summary>
<para>A multiplier of the arc speed of the emission shape.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.arcSpread">
<summary>
<para>Control the gap between emission points around the arc.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.box">
<summary>
<para>Scale of the box.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.boxThickness">
<summary>
<para>Thickness of the box.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.donutRadius">
<summary>
<para>The radius of the Donut shape.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.enabled">
<summary>
<para>Enable/disable the Shape module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.length">
<summary>
<para>Length of the cone.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.mesh">
<summary>
<para>Mesh to emit particles from.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.meshMaterialIndex">
<summary>
<para>Emit particles from a single material of a mesh.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.meshRenderer">
<summary>
<para>MeshRenderer to emit particles from.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.meshScale">
<summary>
<para>Apply a scaling factor to the mesh used for generating source positions.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.meshShapeType">
<summary>
<para>Where on the mesh to emit particles from.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.normalOffset">
<summary>
<para>Move particles away from the surface of the source mesh.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.position">
<summary>
<para>Apply an offset to the position from which particles are emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radius">
<summary>
<para>Radius of the shape.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusMode">
<summary>
<para>The mode used for generating particles along the radius.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpeed">
<summary>
<para>When using one of the animated modes, how quickly to move the emission position along the radius.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpeedMultiplier">
<summary>
<para>A multiplier of the radius speed of the emission shape.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusSpread">
<summary>
<para>Control the gap between emission points along the radius.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.radiusThickness">
<summary>
<para>Thickness of the radius.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.randomDirection">
<summary>
<para>Randomizes the starting direction of particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.randomDirectionAmount">
<summary>
<para>Randomizes the starting direction of particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.randomPositionAmount">
<summary>
<para>Randomizes the starting position of particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.rotation">
<summary>
<para>Apply a rotation to the shape from which particles are emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.scale">
<summary>
<para>Apply scale to the shape from which particles are emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.shapeType">
<summary>
<para>Type of shape to emit particles from.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.skinnedMeshRenderer">
<summary>
<para>SkinnedMeshRenderer to emit particles from.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.sphericalDirectionAmount">
<summary>
<para>Spherizes the starting direction of particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.useMeshColors">
<summary>
<para>Modulate the particle colors with the vertex colors, or the material color if no vertex colors exist.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.ShapeModule.useMeshMaterialIndex">
<summary>
<para>Emit from a single material, or the whole mesh.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.Simulate(System.Single,System.Boolean,System.Boolean,System.Boolean)">
<summary>
<para>Fastforwards the particle system by simulating particles over given period of time, then pauses it.</para>
</summary>
<param name="t">Time period in seconds to advance the ParticleSystem simulation by. If restart is true, the ParticleSystem will be reset to 0 time, and then advanced by this value. If restart is false, the ParticleSystem simulation will be advanced in time from its current state by this value.</param>
<param name="withChildren">Fastforward all child particle systems as well.</param>
<param name="restart">Restart and start from the beginning.</param>
<param name="fixedTimeStep">Only update the system at fixed intervals, based on the value in "Fixed Time" in the Time options.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.SizeBySpeedModule">
<summary>
<para>Script interface for the Size By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.enabled">
<summary>
<para>Enable/disable the Size By Speed module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.range">
<summary>
<para>Apply the size curve between these minimum and maximum speeds.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.separateAxes">
<summary>
<para>Set the size by speed on each axis separately.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.size">
<summary>
<para>Curve to control particle size based on speed.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.sizeMultiplier">
<summary>
<para>Size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.x">
<summary>
<para>Size by speed curve for the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.xMultiplier">
<summary>
<para>X axis size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.y">
<summary>
<para>Size by speed curve for the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.yMultiplier">
<summary>
<para>Y axis size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.z">
<summary>
<para>Size by speed curve for the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeBySpeedModule.zMultiplier">
<summary>
<para>Z axis size multiplier.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.SizeOverLifetimeModule">
<summary>
<para>Script interface for the Size Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Size Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.separateAxes">
<summary>
<para>Set the size over lifetime on each axis separately.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.size">
<summary>
<para>Curve to control particle size based on lifetime.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.sizeMultiplier">
<summary>
<para>Size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.x">
<summary>
<para>Size over lifetime curve for the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.xMultiplier">
<summary>
<para>X axis size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.y">
<summary>
<para>Size over lifetime curve for the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.yMultiplier">
<summary>
<para>Y axis size multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.z">
<summary>
<para>Size over lifetime curve for the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SizeOverLifetimeModule.zMultiplier">
<summary>
<para>Z axis size multiplier.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.Stop(System.Boolean,UnityEngine.ParticleSystemStopBehavior)">
<summary>
<para>Stops playing the particle system using the supplied stop behaviour.</para>
</summary>
<param name="withChildren">Stop all child particle systems as well.</param>
<param name="stopBehavior">Stop emitting or stop emitting and clear the system.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.Stop(System.Boolean)">
<summary>
<para>Stops playing the particle system using the supplied stop behaviour.</para>
</summary>
<param name="withChildren">Stop all child particle systems as well.</param>
<param name="stopBehavior">Stop emitting or stop emitting and clear the system.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.SubEmittersModule">
<summary>
<para>Script interface for the Sub Emitters module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.birth0">
<summary>
<para>Sub particle system which spawns at the locations of the birth of the particles from the parent system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.birth1">
<summary>
<para>Sub particle system which spawns at the locations of the birth of the particles from the parent system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.collision0">
<summary>
<para>Sub particle system which spawns at the locations of the collision of the particles from the parent system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.collision1">
<summary>
<para>Sub particle system which spawns at the locations of the collision of the particles from the parent system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.death0">
<summary>
<para>Sub particle system which spawns at the locations of the death of the particles from the parent system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.death1">
<summary>
<para>Sub particle system to spawn on death of the parent system's particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.enabled">
<summary>
<para>Enable/disable the Sub Emitters module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.SubEmittersModule.subEmittersCount">
<summary>
<para>The total number of sub-emitters.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.AddSubEmitter(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemSubEmitterType,UnityEngine.ParticleSystemSubEmitterProperties)">
<summary>
<para>Add a new sub-emitter.</para>
</summary>
<param name="subEmitter">The sub-emitter to be added.</param>
<param name="type">The event that creates new particles.</param>
<param name="properties">The properties of the new particles.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterProperties(System.Int32)">
<summary>
<para>Get the properties of the sub-emitter at the given index.</para>
</summary>
<param name="index">The index of the desired sub-emitter.</param>
<returns>
<para>The properties of the requested sub-emitter.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterSystem(System.Int32)">
<summary>
<para>Get the sub-emitter Particle System at the given index.</para>
</summary>
<param name="index">The index of the desired sub-emitter.</param>
<returns>
<para>The sub-emitter being requested.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.GetSubEmitterType(System.Int32)">
<summary>
<para>Get the type of the sub-emitter at the given index.</para>
</summary>
<param name="index">The index of the desired sub-emitter.</param>
<returns>
<para>The type of the requested sub-emitter.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.RemoveSubEmitter(System.Int32)">
<summary>
<para>Remove a sub-emitter from the given index in the array.</para>
</summary>
<param name="index">The index from which to remove a sub-emitter.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterProperties(System.Int32,UnityEngine.ParticleSystemSubEmitterProperties)">
<summary>
<para>Set the properties of the sub-emitter at the given index.</para>
</summary>
<param name="index">The index of the sub-emitter being modified.</param>
<param name="properties">The new properties to assign to this sub-emitter.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterSystem(System.Int32,UnityEngine.ParticleSystem)">
<summary>
<para>Set the Particle System to use as the sub-emitter at the given index.</para>
</summary>
<param name="index">The index of the sub-emitter being modified.</param>
<param name="subEmitter">The Particle System being used as this sub-emitter.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.SubEmittersModule.SetSubEmitterType(System.Int32,UnityEngine.ParticleSystemSubEmitterType)">
<summary>
<para>Set the type of the sub-emitter at the given index.</para>
</summary>
<param name="index">The index of the sub-emitter being modified.</param>
<param name="type">The new spawning type to assign to this sub-emitter.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.TextureSheetAnimationModule">
<summary>
<para>Script interface for the Texture Sheet Animation module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.animation">
<summary>
<para>Specifies the animation type.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.cycleCount">
<summary>
<para>Specifies how many times the animation will loop during the lifetime of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.enabled">
<summary>
<para>Enable/disable the Texture Sheet Animation module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.flipU">
<summary>
<para>Flip the U coordinate on particles, causing them to appear mirrored horizontally.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.flipV">
<summary>
<para>Flip the V coordinate on particles, causing them to appear mirrored vertically.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.frameOverTime">
<summary>
<para>Curve to control which frame of the texture sheet animation to play.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.frameOverTimeMultiplier">
<summary>
<para>Frame over time mutiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.mode">
<summary>
<para>Select whether the animated texture information comes from a grid of frames on a single texture, or from a list of Sprite objects.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.numTilesX">
<summary>
<para>Defines the tiling of the texture in the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.numTilesY">
<summary>
<para>Defines the tiling of the texture in the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.rowIndex">
<summary>
<para>Explicitly select which row of the texture sheet is used, when ParticleSystem.TextureSheetAnimationModule.useRandomRow is set to false.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.spriteCount">
<summary>
<para>The total number of sprites.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.startFrame">
<summary>
<para>Define a random starting frame for the texture sheet animation.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.startFrameMultiplier">
<summary>
<para>Starting frame multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.useRandomRow">
<summary>
<para>Use a random row of the texture sheet for each particle emitted.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TextureSheetAnimationModule.uvChannelMask">
<summary>
<para>Choose which UV channels will receive texture animation.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.AddSprite(UnityEngine.Sprite)">
<summary>
<para>Add a new Sprite.</para>
</summary>
<param name="sprite">The Sprite to be added.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.GetSprite(System.Int32)">
<summary>
<para>Get the Sprite at the given index.</para>
</summary>
<param name="index">The index of the desired Sprite.</param>
<returns>
<para>The Sprite being requested.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.RemoveSprite(System.Int32)">
<summary>
<para>Remove a Sprite from the given index in the array.</para>
</summary>
<param name="index">The index from which to remove a Sprite.</param>
</member>
<member name="M:UnityEngine.ParticleSystem.TextureSheetAnimationModule.SetSprite(System.Int32,UnityEngine.Sprite)">
<summary>
<para>Set the Sprite at the given index.</para>
</summary>
<param name="index">The index of the Sprite being modified.</param>
<param name="sprite">The Sprite being assigned.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.TrailModule">
<summary>
<para>Access the particle system trails module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.colorOverLifetime">
<summary>
<para>The gradient controlling the trail colors during the lifetime of the attached particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.colorOverTrail">
<summary>
<para>The gradient controlling the trail colors over the length of the trail.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.dieWithParticles">
<summary>
<para>If enabled, Trails will disappear immediately when their owning particle dies. Otherwise, the trail will persist until all its points have naturally expired, based on its lifetime.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.enabled">
<summary>
<para>Enable/disable the Trail module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.generateLightingData">
<summary>
<para>Configures the trails to generate Normals and Tangents. With this data, Scene lighting can affect the trails via Normal Maps and the Unity Standard Shader, or your own custom-built Shaders.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.inheritParticleColor">
<summary>
<para>Toggle whether the trail will inherit the particle color as its starting color.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.lifetime">
<summary>
<para>The curve describing the trail lifetime, throughout the lifetime of the particle.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.lifetimeMultiplier">
<summary>
<para>Change the lifetime multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.minVertexDistance">
<summary>
<para>Set the minimum distance each trail can travel before a new vertex is added to it.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.mode">
<summary>
<para>Choose how particle trails are generated.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.ratio">
<summary>
<para>Choose what proportion of particles will receive a trail.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.ribbonCount">
<summary>
<para>Select how many lines to create through the Particle System.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.sizeAffectsLifetime">
<summary>
<para>Set whether the particle size will act as a multiplier on top of the trail lifetime.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.sizeAffectsWidth">
<summary>
<para>Set whether the particle size will act as a multiplier on top of the trail width.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.textureMode">
<summary>
<para>Choose whether the U coordinate of the trail texture is tiled or stretched.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.widthOverTrail">
<summary>
<para>The curve describing the width, of each trail point.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.widthOverTrailMultiplier">
<summary>
<para>Change the width multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TrailModule.worldSpace">
<summary>
<para>Drop new trail points in world space, regardless of Particle System Simulation Space.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystem.TriggerModule">
<summary>
<para>Script interface for the Trigger module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.enabled">
<summary>
<para>Enable/disable the Trigger module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.enter">
<summary>
<para>Choose what action to perform when particles enter the trigger volume.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.exit">
<summary>
<para>Choose what action to perform when particles leave the trigger volume.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.inside">
<summary>
<para>Choose what action to perform when particles are inside the trigger volume.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.maxColliderCount">
<summary>
<para>The maximum number of collision shapes that can be attached to this particle system trigger.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.outside">
<summary>
<para>Choose what action to perform when particles are outside the trigger volume.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.TriggerModule.radiusScale">
<summary>
<para>A multiplier applied to the size of each particle before overlaps are processed.</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystem.TriggerModule.GetCollider(System.Int32)">
<summary>
<para>Get a collision shape associated with this particle system trigger.</para>
</summary>
<param name="index">Which collider to return.</param>
<returns>
<para>The collider at the given index.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystem.TriggerModule.SetCollider(System.Int32,UnityEngine.Component)">
<summary>
<para>Set a collision shape associated with this particle system trigger.</para>
</summary>
<param name="index">Which collider to set.</param>
<param name="collider">The collider to associate with this trigger.</param>
</member>
<member name="T:UnityEngine.ParticleSystem.VelocityOverLifetimeModule">
<summary>
<para>Script interface for the Velocity Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.enabled">
<summary>
<para>Enable/disable the Velocity Over Lifetime module.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.space">
<summary>
<para>Specifies if the velocities are in local space (rotated with the transform) or world space.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.speedModifier">
<summary>
<para>Curve to control particle speed based on lifetime, without affecting the direction of the particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.speedModifierMultiplier">
<summary>
<para>Speed multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.x">
<summary>
<para>Curve to control particle speed based on lifetime, on the X axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.xMultiplier">
<summary>
<para>X axis speed multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.y">
<summary>
<para>Curve to control particle speed based on lifetime, on the Y axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.yMultiplier">
<summary>
<para>Y axis speed multiplier.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.z">
<summary>
<para>Curve to control particle speed based on lifetime, on the Z axis.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystem.VelocityOverLifetimeModule.zMultiplier">
<summary>
<para>Z axis speed multiplier.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemAnimationMode">
<summary>
<para>The animation mode.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemAnimationMode.Grid">
<summary>
<para>Use a regular grid to construct a sequence of animation frames.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemAnimationMode.Sprites">
<summary>
<para>Use a list of sprites to construct a sequence of animation frames.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemAnimationType">
<summary>
<para>The animation type.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemAnimationType.SingleRow">
<summary>
<para>Animate a single row in the sheet from left to right.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemAnimationType.WholeSheet">
<summary>
<para>Animate over the whole texture sheet from left to right, top to bottom.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCollisionMode">
<summary>
<para>Whether to use 2D or 3D colliders for particle collisions.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionMode.Collision2D">
<summary>
<para>Use 2D colliders to collide particles against.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionMode.Collision3D">
<summary>
<para>Use 3D colliders to collide particles against.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCollisionQuality">
<summary>
<para>Quality of world collisions. Medium and low quality are approximate and may leak particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionQuality.High">
<summary>
<para>The most accurate world collisions.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionQuality.Low">
<summary>
<para>Fastest and most approximate world collisions.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionQuality.Medium">
<summary>
<para>Approximate world collisions.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCollisionType">
<summary>
<para>The type of collisions to use for a given particle system.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionType.Planes">
<summary>
<para>Collide with a list of planes.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCollisionType.World">
<summary>
<para>Collide with the world geometry.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCurveMode">
<summary>
<para>The particle curve mode (Shuriken).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCurveMode.Constant">
<summary>
<para>Use a single constant for the ParticleSystem.MinMaxCurve.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCurveMode.Curve">
<summary>
<para>Use a single curve for the ParticleSystem.MinMaxCurve.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCurveMode.TwoConstants">
<summary>
<para>Use a random value between 2 constants for the ParticleSystem.MinMaxCurve.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCurveMode.TwoCurves">
<summary>
<para>Use a random value between 2 curves for the ParticleSystem.MinMaxCurve.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCustomData">
<summary>
<para>Which stream of custom particle data to set.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCustomData.Custom1">
<summary>
<para>The first stream of custom per-particle data.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCustomData.Custom2">
<summary>
<para>The second stream of custom per-particle data.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemCustomDataMode">
<summary>
<para>Which mode the Custom Data module uses to generate its data.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCustomDataMode.Color">
<summary>
<para>Generate data using ParticleSystem.MinMaxGradient.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCustomDataMode.Disabled">
<summary>
<para>Don't generate any data.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemCustomDataMode.Vector">
<summary>
<para>Generate data using ParticleSystem.MinMaxCurve.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemEmissionType">
<summary>
<para>The mode in which particles are emitted.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemEmissionType.Distance">
<summary>
<para>Emit when emitter moves.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemEmissionType.Time">
<summary>
<para>Emit over time.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemEmitterVelocityMode">
<summary>
<para>Control how a Particle System calculates its velocity.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemEmitterVelocityMode.Rigidbody">
<summary>
<para>Calculate the Particle System velocity by using a Rigidbody or Rigidbody2D component, if one exists on the Game Object.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemEmitterVelocityMode.Transform">
<summary>
<para>Calculate the Particle System velocity by using the Transform component.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemGradientMode">
<summary>
<para>The particle gradient mode (Shuriken).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemGradientMode.Color">
<summary>
<para>Use a single color for the ParticleSystem.MinMaxGradient.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemGradientMode.Gradient">
<summary>
<para>Use a single color gradient for the ParticleSystem.MinMaxGradient.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemGradientMode.RandomColor">
<summary>
<para>Define a list of colors in the ParticleSystem.MinMaxGradient, to be chosen from at random.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemGradientMode.TwoColors">
<summary>
<para>Use a random value between 2 colors for the ParticleSystem.MinMaxGradient.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemGradientMode.TwoGradients">
<summary>
<para>Use a random value between 2 color gradients for the ParticleSystem.MinMaxGradient.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemInheritVelocityMode">
<summary>
<para>How to apply emitter velocity to particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemInheritVelocityMode.Current">
<summary>
<para>Each particle's velocity is set to the emitter's current velocity value, every frame.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemInheritVelocityMode.Initial">
<summary>
<para>Each particle inherits the emitter's velocity on the frame when it was initially emitted.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemMeshShapeType">
<summary>
<para>The mesh emission type.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemMeshShapeType.Edge">
<summary>
<para>Emit from the edges of the mesh.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemMeshShapeType.Triangle">
<summary>
<para>Emit from the surface of the mesh.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemMeshShapeType.Vertex">
<summary>
<para>Emit from the vertices of the mesh.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemNoiseQuality">
<summary>
<para>The quality of the generated noise.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemNoiseQuality.High">
<summary>
<para>High quality 3D noise.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemNoiseQuality.Low">
<summary>
<para>Low quality 1D noise.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemNoiseQuality.Medium">
<summary>
<para>Medium quality 2D noise.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemOverlapAction">
<summary>
<para>What action to perform when the particle trigger module passes a test.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemOverlapAction.Callback">
<summary>
<para>Send the OnParticleTrigger command to the particle system's script.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemOverlapAction.Ignore">
<summary>
<para>Do nothing.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemOverlapAction.Kill">
<summary>
<para>Kill all particles that pass this test.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemRenderer">
<summary>
<para>Renders particles on to the screen (Shuriken).</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.activeVertexStreamsCount">
<summary>
<para>The number of currently active custom vertex streams.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.alignment">
<summary>
<para>Control the direction that particles face.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.cameraVelocityScale">
<summary>
<para>How much are the particles stretched depending on the Camera's speed.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.lengthScale">
<summary>
<para>How much are the particles stretched in their direction of motion.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.maskInteraction">
<summary>
<para>Specifies how the Particle System Renderer interacts with SpriteMask.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.maxParticleSize">
<summary>
<para>Clamp the maximum particle size.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.mesh">
<summary>
<para>Mesh used as particle instead of billboarded texture.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.meshCount">
<summary>
<para>The number of meshes being used for particle rendering.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.minParticleSize">
<summary>
<para>Clamp the minimum particle size.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.normalDirection">
<summary>
<para>How much are billboard particle normals oriented towards the camera.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.pivot">
<summary>
<para>Modify the pivot point used for rotating particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.renderMode">
<summary>
<para>How particles are drawn.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.sortingFudge">
<summary>
<para>Biases particle system sorting amongst other transparencies.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.sortMode">
<summary>
<para>Sort particles within a system.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.trailMaterial">
<summary>
<para>Set the material used by the Trail module for attaching trails to particles.</para>
</summary>
</member>
<member name="P:UnityEngine.ParticleSystemRenderer.velocityScale">
<summary>
<para>How much are the particles stretched depending on "how fast they move".</para>
</summary>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.AreVertexStreamsEnabled(UnityEngine.ParticleSystemVertexStreams)">
<summary>
<para>Query whether the particle system renderer uses a particular set of vertex streams.</para>
</summary>
<param name="streams">Streams to query.</param>
<returns>
<para>Whether all the queried streams are enabled or not.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.DisableVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
<summary>
<para>Disable a set of vertex shader streams on the particle system renderer.
The position stream is always enabled, and any attempts to remove it will be ignored.</para>
</summary>
<param name="streams">Streams to disable.</param>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.EnableVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
<summary>
<para>Enable a set of vertex shader streams on the particle system renderer.</para>
</summary>
<param name="streams">Streams to enable.</param>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.GetActiveVertexStreams(System.Collections.Generic.List`1<UnityEngine.ParticleSystemVertexStream>)">
<summary>
<para>Query which vertex shader streams are enabled on the ParticleSystemRenderer.</para>
</summary>
<param name="streams">The array of streams to be populated.</param>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.GetEnabledVertexStreams(UnityEngine.ParticleSystemVertexStreams)">
<summary>
<para>Query whether the particle system renderer uses a particular set of vertex streams.</para>
</summary>
<param name="streams">Streams to query.</param>
<returns>
<para>Returns the subset of the queried streams that are actually enabled.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.GetMeshes(UnityEngine.Mesh[])">
<summary>
<para>Get the array of meshes to be used as particles.</para>
</summary>
<param name="meshes">This array will be populated with the list of meshes being used for particle rendering.</param>
<returns>
<para>The number of meshes actually written to the destination array.</para>
</returns>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.SetActiveVertexStreams(System.Collections.Generic.List`1<UnityEngine.ParticleSystemVertexStream>)">
<summary>
<para>Enable a set of vertex shader streams on the ParticleSystemRenderer.</para>
</summary>
<param name="streams">The new array of enabled vertex streams.</param>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.SetMeshes(UnityEngine.Mesh[])">
<summary>
<para>Set an array of meshes to be used as particles when the ParticleSystemRenderer.renderMode is set to ParticleSystemRenderMode.Mesh.</para>
</summary>
<param name="meshes">Array of meshes to be used.</param>
<param name="size">Number of elements from the mesh array to be applied.</param>
</member>
<member name="M:UnityEngine.ParticleSystemRenderer.SetMeshes(UnityEngine.Mesh[],System.Int32)">
<summary>
<para>Set an array of meshes to be used as particles when the ParticleSystemRenderer.renderMode is set to ParticleSystemRenderMode.Mesh.</para>
</summary>
<param name="meshes">Array of meshes to be used.</param>
<param name="size">Number of elements from the mesh array to be applied.</param>
</member>
<member name="T:UnityEngine.ParticleSystemRenderMode">
<summary>
<para>The rendering mode for particle systems (Shuriken).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.Billboard">
<summary>
<para>Render particles as billboards facing the active camera. (Default)</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.HorizontalBillboard">
<summary>
<para>Render particles as billboards always facing up along the y-Axis.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.Mesh">
<summary>
<para>Render particles as meshes.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.None">
<summary>
<para>Do not render particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.Stretch">
<summary>
<para>Stretch particles in the direction of motion.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderMode.VerticalBillboard">
<summary>
<para>Render particles as billboards always facing the player, but not pitching along the x-Axis.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemRenderSpace">
<summary>
<para>How particles are aligned when rendered.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderSpace.Facing">
<summary>
<para>Particles face the eye position.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderSpace.Local">
<summary>
<para>Particles align with their local transform.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderSpace.Velocity">
<summary>
<para>Particles are aligned to their direction of travel.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderSpace.View">
<summary>
<para>Particles face the camera plane.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemRenderSpace.World">
<summary>
<para>Particles align with the world.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemScalingMode">
<summary>
<para>Control how particle systems apply transform scale.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemScalingMode.Hierarchy">
<summary>
<para>Scale the particle system using the entire transform hierarchy.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemScalingMode.Local">
<summary>
<para>Scale the particle system using only its own transform scale. (Ignores parent scale).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemScalingMode.Shape">
<summary>
<para>Only apply transform scale to the shape component, which controls where
particles are spawned, but does not affect their size or movement.
</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemShapeMultiModeValue">
<summary>
<para>The mode used to generate new points in a shape (Shuriken).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.BurstSpread">
<summary>
<para>Distribute new particles around the shape evenly.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.Loop">
<summary>
<para>Animate the emission point around the shape.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.PingPong">
<summary>
<para>Animate the emission point around the shape, alternating between clockwise and counter-clockwise directions.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeMultiModeValue.Random">
<summary>
<para>Generate points randomly. (Default)</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemShapeType">
<summary>
<para>The emission shape (Shuriken).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Box">
<summary>
<para>Emit from the volume of a box.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.BoxEdge">
<summary>
<para>Emit from the edges of a box.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.BoxShell">
<summary>
<para>Emit from the surface of a box.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Circle">
<summary>
<para>Emit from a circle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.CircleEdge">
<summary>
<para>Emit from the edge of a circle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Cone">
<summary>
<para>Emit from the base of a cone.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.ConeShell">
<summary>
<para>Emit from the base surface of a cone.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.ConeVolume">
<summary>
<para>Emit from a cone.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.ConeVolumeShell">
<summary>
<para>Emit from the surface of a cone.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Donut">
<summary>
<para>Emit from a Donut.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Hemisphere">
<summary>
<para>Emit from a half-sphere.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.HemisphereShell">
<summary>
<para>Emit from the surface of a half-sphere.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Mesh">
<summary>
<para>Emit from a mesh.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.MeshRenderer">
<summary>
<para>Emit from a mesh renderer.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.SingleSidedEdge">
<summary>
<para>Emit from an edge.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.SkinnedMeshRenderer">
<summary>
<para>Emit from a skinned mesh renderer.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.Sphere">
<summary>
<para>Emit from a sphere.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemShapeType.SphereShell">
<summary>
<para>Emit from the surface of a sphere.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemSimulationSpace">
<summary>
<para>The space to simulate particles in.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSimulationSpace.Custom">
<summary>
<para>Simulate particles relative to a custom transform component, defined by ParticleSystem.MainModule.customSimulationSpace.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSimulationSpace.Local">
<summary>
<para>Simulate particles in local space.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSimulationSpace.World">
<summary>
<para>Simulate particles in world space.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemSortMode">
<summary>
<para>The sorting mode for particle systems.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSortMode.Distance">
<summary>
<para>Sort based on distance.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSortMode.None">
<summary>
<para>No sorting.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSortMode.OldestInFront">
<summary>
<para>Sort the oldest particles to the front.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSortMode.YoungestInFront">
<summary>
<para>Sort the youngest particles to the front.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemStopAction">
<summary>
<para>The action to perform when the Particle System stops.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopAction.Callback">
<summary>
<para>Call OnPaticleSystemStopped on the ParticleSystem script.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopAction.Destroy">
<summary>
<para>Destroy the GameObject containing the Particle System.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopAction.Disable">
<summary>
<para>Disable the GameObject containing the Particle System.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopAction.None">
<summary>
<para>Do nothing.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemStopBehavior">
<summary>
<para>The behavior to apply when calling ParticleSystem.Stop|Stop.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopBehavior.StopEmitting">
<summary>
<para>Stops particle system emitting any further particles. All existing particles will remain until they expire.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemStopBehavior.StopEmittingAndClear">
<summary>
<para>Stops particle system emitting and removes all existing emitted particles.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemSubEmitterProperties">
<summary>
<para>The properties of sub-emitter particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritColor">
<summary>
<para>When spawning new particles, multiply the start color by the color of the parent particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritEverything">
<summary>
<para>When spawning new particles, inherit all available properties from the parent particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritLifetime">
<summary>
<para>New particles will have a shorter lifespan, the closer their parent particles are to death.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritNothing">
<summary>
<para>When spawning new particles, do not inherit any properties from the parent particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritRotation">
<summary>
<para>When spawning new particles, add the start rotation to the rotation of the parent particles.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterProperties.InheritSize">
<summary>
<para>When spawning new particles, multiply the start size by the size of the parent particles.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemSubEmitterType">
<summary>
<para>The events that cause new particles to be spawned.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterType.Birth">
<summary>
<para>Spawns new particles when particles from the parent system are born.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterType.Collision">
<summary>
<para>Spawns new particles when particles from the parent system collide with something.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemSubEmitterType.Death">
<summary>
<para>Spawns new particles when particles from the parent system die.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemTrailMode">
<summary>
<para>Choose how Particle Trails are generated.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailMode.PerParticle">
<summary>
<para>Makes a trail behind each particle as the particle moves.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailMode.Ribbon">
<summary>
<para>Draws a line between each particle, connecting the youngest particle to the oldest.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemTrailTextureMode">
<summary>
<para>Choose how textures are applied to Particle Trails.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailTextureMode.DistributePerSegment">
<summary>
<para>Map the texture once along the entire length of the trail, assuming all vertices are evenly spaced.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailTextureMode.RepeatPerSegment">
<summary>
<para>Repeat the texture along the trail, repeating at a rate of once per trail segment. To adjust the tiling rate, use Material.SetTextureScale.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailTextureMode.Stretch">
<summary>
<para>Map the texture once along the entire length of the trail.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTrailTextureMode.Tile">
<summary>
<para>Repeat the texture along the trail. To set the tiling rate, use Material.SetTextureScale.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemTriggerEventType">
<summary>
<para>The different types of particle triggers.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTriggerEventType.Enter">
<summary>
<para>Trigger when particles enter the collision volume.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTriggerEventType.Exit">
<summary>
<para>Trigger when particles leave the collision volume.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTriggerEventType.Inside">
<summary>
<para>Trigger when particles are inside the collision volume.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemTriggerEventType.Outside">
<summary>
<para>Trigger when particles are outside the collision volume.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemVertexStream">
<summary>
<para>All possible particle system vertex shader inputs.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.AgePercent">
<summary>
<para>The normalized age of each particle, from 0 to 1.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.AnimBlend">
<summary>
<para>The amount to blend between animated texture frames, from 0 to 1.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.AnimFrame">
<summary>
<para>The current animation frame index of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Center">
<summary>
<para>The center position of the entire particle, in world space.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Color">
<summary>
<para>The color of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom1X">
<summary>
<para>One custom value for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XY">
<summary>
<para>Two custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XYZ">
<summary>
<para>Three custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom1XYZW">
<summary>
<para>Four custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom2X">
<summary>
<para>One custom value for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XY">
<summary>
<para>Two custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XYZ">
<summary>
<para>Three custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Custom2XYZW">
<summary>
<para>Four custom values for each particle, defined by the Custom Data Module, or ParticleSystem.SetCustomParticleData.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.InvStartLifetime">
<summary>
<para>The reciprocal of the starting lifetime, in seconds (1.0f / startLifetime).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseX">
<summary>
<para>The X axis noise on the current frame.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseXY">
<summary>
<para>The X and Y axis noise on the current frame.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseImpulseXYZ">
<summary>
<para>The 3D noise on the current frame.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumX">
<summary>
<para>The accumulated X axis noise, over the lifetime of the particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumXY">
<summary>
<para>The accumulated X and Y axis noise, over the lifetime of the particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.NoiseSumXYZ">
<summary>
<para>The accumulated 3D noise, over the lifetime of the particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Normal">
<summary>
<para>The vertex normal of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Position">
<summary>
<para>The position of each particle vertex, in world space.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Rotation">
<summary>
<para>The Z axis rotation of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Rotation3D">
<summary>
<para>The 3D rotation of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.RotationSpeed">
<summary>
<para>The Z axis rotational speed of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.RotationSpeed3D">
<summary>
<para>The 3D rotational speed of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.SizeX">
<summary>
<para>The X axis size of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.SizeXY">
<summary>
<para>The X and Y axis sizes of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.SizeXYZ">
<summary>
<para>The 3D size of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Speed">
<summary>
<para>The speed of each particle, calculated by taking the magnitude of the velocity.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomX">
<summary>
<para>A random number for each particle, which remains constant during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXY">
<summary>
<para>Two random numbers for each particle, which remain constant during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXYZ">
<summary>
<para>Three random numbers for each particle, which remain constant during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.StableRandomXYZW">
<summary>
<para>Four random numbers for each particle, which remain constant during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Tangent">
<summary>
<para>The tangent vector for each particle (for normal mapping).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.UV">
<summary>
<para>The first UV stream of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.UV2">
<summary>
<para>The second UV stream of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.UV3">
<summary>
<para>The third UV stream of each particle (only for meshes).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.UV4">
<summary>
<para>The fourth UV stream of each particle (only for meshes).</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomX">
<summary>
<para>A random number for each particle, which changes during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXY">
<summary>
<para>Two random numbers for each particle, which change during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXYZ">
<summary>
<para>Three random numbers for each particle, which change during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.VaryingRandomXYZW">
<summary>
<para>Four random numbers for each particle, which change during their lifetime.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.Velocity">
<summary>
<para>The velocity of each particle, in world space.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStream.VertexID">
<summary>
<para>The vertex ID of each particle.</para>
</summary>
</member>
<member name="T:UnityEngine.ParticleSystemVertexStreams">
<summary>
<para>All possible particle system vertex shader inputs.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.All">
<summary>
<para>A mask with all vertex streams enabled.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.CenterAndVertexID">
<summary>
<para>The center position of each particle, with the vertex ID of each particle, from 0-3, stored in the w component.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Color">
<summary>
<para>The color of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Custom1">
<summary>
<para>The first stream of custom data, supplied from script.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Custom2">
<summary>
<para>The second stream of custom data, supplied from script.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Lifetime">
<summary>
<para>Alive time as a 0-1 value in the X component, and Total Lifetime in the Y component.
To get the current particle age, simply multiply X by Y.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.None">
<summary>
<para>A mask with no vertex streams enabled.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Normal">
<summary>
<para>The normal of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Position">
<summary>
<para>The world space position of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Random">
<summary>
<para>4 random numbers. The first 3 are deterministic and assigned once when each particle is born, but the 4th value will change during the lifetime of the particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Rotation">
<summary>
<para>The rotation of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Size">
<summary>
<para>The size of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Tangent">
<summary>
<para>Tangent vectors for normal mapping.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.UV">
<summary>
<para>The texture coordinates of each particle.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.UV2BlendAndFrame">
<summary>
<para>With the Texture Sheet Animation module enabled, this contains the UVs for the second texture frame, the blend factor for each particle, and the raw frame, allowing for blending of frames.</para>
</summary>
</member>
<member name="F:UnityEngine.ParticleSystemVertexStreams.Velocity">
<summary>
<para>The 3D velocity of each particle.</para>
</summary>
</member>
<member name="T:UnityEngine.Rendering.UVChannelFlags">
<summary>
<para>A flag representing each UV channel.</para>
</summary>
</member>
<member name="F:UnityEngine.Rendering.UVChannelFlags.UV0">
<summary>
<para>First UV channel.</para>
</summary>
</member>
<member name="F:UnityEngine.Rendering.UVChannelFlags.UV1">
<summary>
<para>Second UV channel.</para>
</summary>
</member>
<member name="F:UnityEngine.Rendering.UVChannelFlags.UV2">
<summary>
<para>Third UV channel.</para>
</summary>
</member>
<member name="F:UnityEngine.Rendering.UVChannelFlags.UV3">
<summary>
<para>Fourth UV channel.</para>
</summary>
</member>
</members>
</doc>