VuforiaScripts.cpp
283 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
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
// BoundingBoxRenderer
struct BoundingBoxRenderer_t687A36FDD509AC21A29D0CF70359619EFD251AFB;
// DefaultInitializationErrorHandler
struct DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38;
// DefaultTrackableEventHandler
struct DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022;
// System.Action`1<System.Int32Enum>
struct Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`1<UnityEngine.Camera>
struct Action_1_t24CBC129F44B85416642527CE472755C01C43AA7;
// System.Action`1<UnityEngine.Camera[]>
struct Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50;
// System.Action`1<UnityEngine.Font>
struct Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C;
// System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>
struct Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C;
// System.Action`1<Vuforia.VuforiaUnity/InitError>
struct Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD;
// System.Action`2<System.Single,System.Single>
struct Action_2_t4548CE7BB459C9F1C58BAF5FD113A574B4DF6F31;
// System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,System.Object>
struct Action_2_t32F71E8647FE911B1610AEA4FAA030ECD601CA0F;
// System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera>
struct Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04;
// System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[]>
struct Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.ICollection`1<System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>>
struct ICollection_1_t2F4FA45DD22999A1539BE136FF09F0ADD3399002;
// System.Collections.Generic.ICollection`1<System.Action`1<Vuforia.TrackableBehaviour/StatusInfoChangeResult>>
struct ICollection_1_t660EB7B2F3F89D4C2C786552DD91205E09886CBC;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t32541D3F4C935BBA3800256BD21A7CA8148AAC13;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.String
struct String_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Camera/CameraCallback
struct CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0;
// UnityEngine.Camera[]
struct CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE;
// UnityEngine.Canvas[]
struct CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129;
// UnityEngine.Collider
struct Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF;
// UnityEngine.Collider[]
struct ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252;
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5;
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F;
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F;
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26;
// UnityEngine.Font/FontTextureRebuildCallback
struct FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C;
// UnityEngine.GUI/WindowFunction
struct WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100;
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572;
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.MeshRenderer
struct MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A;
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4;
// UnityEngine.Renderer[]
struct RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// Vuforia.Trackable
struct Trackable_t2A23C572321E7D4FEAC9A1019DFA0AA144FC9B8F;
// Vuforia.TrackableBehaviour
struct TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4;
// Vuforia.UnityRuntimeCompiled.IUnityRenderPipeline
struct IUnityRenderPipeline_tCE6DFD018E3D55C93F37CCD15EBF959403ED13A2;
// Vuforia.UnityRuntimeCompiled.IUnityRuntimeCompiledFacade
struct IUnityRuntimeCompiledFacade_t00F5BDF3E7580665AE04AE305B8E65B5EF283242;
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer
struct RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822;
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer/OpenSourceUnityRuntimeCompiledFacade
struct OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E;
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer/UnityRenderPipeline
struct UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B;
// Vuforia.VuforiaConfiguration
struct VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82;
// Vuforia.VuforiaConfiguration/DatabaseConfiguration
struct DatabaseConfiguration_t0B1E7EF9676AD0191B8AFA87BFD43EB9F141928A;
// Vuforia.VuforiaConfiguration/DeviceTrackerConfiguration
struct DeviceTrackerConfiguration_tC11D2DA49200D3693731D6AFF3F793E4315D1E3F;
// Vuforia.VuforiaConfiguration/GenericVuforiaConfiguration
struct GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064;
// Vuforia.VuforiaConfiguration/PlayModeConfiguration
struct PlayModeConfiguration_t8E172BDEC861CAC69CEDA8CD753C68A4B7960260;
// Vuforia.VuforiaConfiguration/VideoBackgroundConfiguration
struct VideoBackgroundConfiguration_tCC24E374B966B79D018C14F6807A6DDA47302F17;
// Vuforia.VuforiaConfiguration/WebCamConfiguration
struct WebCamConfiguration_t0A5BD19A86D3AA8B68FB79C1EA8A5855A6C9F321;
// Vuforia.VuforiaMonoBehaviour
struct VuforiaMonoBehaviour_tF7F5C56A8081EC294AB1D066607A1BEE140F7F75;
// Vuforia.VuforiaRuntime
struct VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t24CBC129F44B85416642527CE472755C01C43AA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InitError_t486F7D53F5B0B7943D4E22BE2D32F4913D4A0431_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RenderPipelineManager_t618E1790ED285941068D460521F7CF830D39B8CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StatusInfo_t5507FB8CC09640E7771385EBE27221431A2FEB4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Status_t9B64F0BA3AD7E64C80B7CD10F61ECC24F20EC092_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0049CC276AF37EC0DC4660402BB85EF930E7DA7F;
IL2CPP_EXTERN_C String_t* _stringLiteral044603D8671032519EBDE55C39570454D34DA7EF;
IL2CPP_EXTERN_C String_t* _stringLiteral0CB1FE567326D29F5946A5B648199591A4620539;
IL2CPP_EXTERN_C String_t* _stringLiteral1561AEF8B532C2B1664689CD3DEB85C31F3B9692;
IL2CPP_EXTERN_C String_t* _stringLiteral368855C3B48C6461C105F7AA11EBE1FD792BE6BF;
IL2CPP_EXTERN_C String_t* _stringLiteral3A2524B609E886EDA2270A78B1F1D5DF105A613E;
IL2CPP_EXTERN_C String_t* _stringLiteral463AEBF964605A060C143944B09AB6F45BA4D8BF;
IL2CPP_EXTERN_C String_t* _stringLiteral4BACB2BC0DE4E962B29B5436C04D5785D4E912DD;
IL2CPP_EXTERN_C String_t* _stringLiteral4C8A375D0F1708E37C1F10C81E8A8EADDCF1422F;
IL2CPP_EXTERN_C String_t* _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787;
IL2CPP_EXTERN_C String_t* _stringLiteral55B91F52D8FEC72F2D5BBC45A4C7444CF770FBBD;
IL2CPP_EXTERN_C String_t* _stringLiteral5A187E91D3F02EC741DFB98FC6C73DAAF9DBB023;
IL2CPP_EXTERN_C String_t* _stringLiteral661EA0491F0E7BED843FF5C5C2C407A8494948C2;
IL2CPP_EXTERN_C String_t* _stringLiteral71853C6197A6A7F222DB0F1978C7CB232B87C5EE;
IL2CPP_EXTERN_C String_t* _stringLiteral7AB1A22C152A21E59C89CBA73DA7DCB91237992A;
IL2CPP_EXTERN_C String_t* _stringLiteral8DA4D8B24EC5D777C7AE833C2411988A6C67013B;
IL2CPP_EXTERN_C String_t* _stringLiteralA5C50226661674EB4C0B1740C606FA2451271989;
IL2CPP_EXTERN_C String_t* _stringLiteralAD01E3847AA5918933113DC21A22AF4AD31DD4B7;
IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
IL2CPP_EXTERN_C String_t* _stringLiteralBBFA773E5A63A5EA58C9B6207E608CA0120E592A;
IL2CPP_EXTERN_C String_t* _stringLiteralD56CC950FC69A94976F20D9F0707460863B34898;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDADF5911397D06A03A60E28AE30A0F473FE2B810;
IL2CPP_EXTERN_C String_t* _stringLiteralE1A26226E225524718652DAB2A25B6F6ED567B4E;
IL2CPP_EXTERN_C String_t* _stringLiteralE9D15606A3059B500ED24D58BAEE69DD511A6EC2;
IL2CPP_EXTERN_C String_t* _stringLiteralEF377B931B216AE61345F4D7136A8873D40DCB6B;
IL2CPP_EXTERN_C String_t* _stringLiteralF0069E5A5B01320A0272820D95849D17CA9E7BAE;
IL2CPP_EXTERN_C String_t* _stringLiteralF20D8C26DA74DE4466E64B5213AE19C080FADD5E;
IL2CPP_EXTERN_C String_t* _stringLiteralFA323761E549CD8DEB8C83797B725C220D84F261;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m997E5172E3C900C1B0271D7635EF70333DCE91AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mE887C5799BA6B2E278F503E6CFC8959837C8282A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m2D505D6723A1143CB5B6878A785D7C4187EB9FF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m64C09A67B27042FB46779DEC4CFC95C02C80BCA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisTrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4_m81E3785465C5B36522D217B045A33CD65B28B229_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultInitializationErrorHandler_DrawWindowContent_m114AFA0267557CA2520A32E85061A4BB09F04978_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultInitializationErrorHandler_OnVuforiaInitializationError_m0F4B53613340C11BADBE8E7FADA57096A43F30C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisMeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED_mFB43D5458906C4005145640D4396FDE5853AFA3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Resources_GetBuiltinResource_TisFont_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_m28D7ED0C35D5F51E2A61A4CA162B08923E0837D6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityRenderPipeline_OnBeginCameraRendering_m87B76CC95E538C583E21D4D6BC720FC0EBDC445F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityRenderPipeline_OnBeginFrameRendering_m6C5660780B920DCAB00731E8C9BDBC8D7C71164B_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t BoundingBoxRenderer_OnRenderObject_mDE8704583C66930554EFF367F283E18E4083B46C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_Awake_mC462A9A2FF6999FAD58B36658BA7F5F4CFEA2885_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_DrawWindowContent_m114AFA0267557CA2520A32E85061A4BB09F04978_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_OnDestroy_m788237090CDF21C5258502222D398EFC4F0A09FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_OnGUI_m0BCBF01D8F93A0D5810B96D01A3C357333ED1305_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_SetErrorCode_m8D02B872B53162E5CEE1ABD461F59B4F1D642AFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_SetupGUIStyles_m95161DC5F2ECD9341D49F9AF35D11B36E3FBB8E7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler__ctor_m63E4F5C46CEF6A1D36DB1999995CFAF271895876_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultTrackableEventHandler_OnDestroy_m5E62349849150C8A7D3805322622A958505710AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultTrackableEventHandler_OnTrackingFound_m4A4E9931C2178216A864B8E341B6A923711EE8B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultTrackableEventHandler_OnTrackingLost_m26ACF13397E907EF90414CAEF8FEEDB3324C4E95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultTrackableEventHandler_Start_mF3B83475AAE698302E8A037B49DA2297894216DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t OpenSourceUnityRuntimeCompiledFacade_IsUnityUICurrentlySelected_m53A682864DC4AEFA3CE9587636D4C0345B8229A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t OpenSourceUnityRuntimeCompiledFacade__ctor_m4A55808613D2E3EF63C75B3643F12AF23CE115AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RuntimeOpenSourceInitializer_InitializeFacade_m083BFFA22FEA65C77B01B5D9941BC9E7B68D17D2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_OnBeginCameraRendering_m87B76CC95E538C583E21D4D6BC720FC0EBDC445F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_OnBeginFrameRendering_m6C5660780B920DCAB00731E8C9BDBC8D7C71164B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline__ctor_mC0DC0A838D359359B81315037D4F5C3DF0300349_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_add_BeginCameraRendering_m9791F732ACA9C59CB31D1D3C70E154895579CDFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_add_BeginFrameRendering_m9D41146607F13FD13B4E95F10F02C52D992090C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_remove_BeginCameraRendering_m7F5A6A4D49445026620B996DF97994CABE443A50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRenderPipeline_remove_BeginFrameRendering_m9EE84137E3B60A3C5F6F67D492E1DF4B319E267E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UnityRuntimeCompiledFacade_set_Instance_mAD789CACB83D18D963C131AFDE2A29DE7B3D5E76VuforiaScripts_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9;
struct CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129;
struct ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252;
struct RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_tBB5D6FDE6CBE0067E5DC774822D5054F01745F8C
{
public:
public:
};
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5 : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * ___m_PersistentCalls_1;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_2;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_Calls_0)); }
inline InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value);
}
inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_CallsDirty_2)); }
inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; }
inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; }
inline void set_m_CallsDirty_2(bool value)
{
___m_CallsDirty_2 = value;
}
};
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer
struct RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822 : public RuntimeObject
{
public:
public:
};
struct RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_StaticFields
{
public:
// Vuforia.UnityRuntimeCompiled.IUnityRuntimeCompiledFacade Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer::sFacade
RuntimeObject* ___sFacade_0;
public:
inline static int32_t get_offset_of_sFacade_0() { return static_cast<int32_t>(offsetof(RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_StaticFields, ___sFacade_0)); }
inline RuntimeObject* get_sFacade_0() const { return ___sFacade_0; }
inline RuntimeObject** get_address_of_sFacade_0() { return &___sFacade_0; }
inline void set_sFacade_0(RuntimeObject* value)
{
___sFacade_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sFacade_0), (void*)value);
}
};
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_OpenSourceUnityRuntimeCompiledFacade
struct OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E : public RuntimeObject
{
public:
// Vuforia.UnityRuntimeCompiled.IUnityRenderPipeline Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_OpenSourceUnityRuntimeCompiledFacade::mUnityRenderPipeline
RuntimeObject* ___mUnityRenderPipeline_0;
public:
inline static int32_t get_offset_of_mUnityRenderPipeline_0() { return static_cast<int32_t>(offsetof(OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E, ___mUnityRenderPipeline_0)); }
inline RuntimeObject* get_mUnityRenderPipeline_0() const { return ___mUnityRenderPipeline_0; }
inline RuntimeObject** get_address_of_mUnityRenderPipeline_0() { return &___mUnityRenderPipeline_0; }
inline void set_mUnityRenderPipeline_0(RuntimeObject* value)
{
___mUnityRenderPipeline_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mUnityRenderPipeline_0), (void*)value);
}
};
// Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline
struct UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B : public RuntimeObject
{
public:
// System.Action`1<UnityEngine.Camera[]> Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::BeginFrameRendering
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * ___BeginFrameRendering_0;
// System.Action`1<UnityEngine.Camera> Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::BeginCameraRendering
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * ___BeginCameraRendering_1;
public:
inline static int32_t get_offset_of_BeginFrameRendering_0() { return static_cast<int32_t>(offsetof(UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B, ___BeginFrameRendering_0)); }
inline Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * get_BeginFrameRendering_0() const { return ___BeginFrameRendering_0; }
inline Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 ** get_address_of_BeginFrameRendering_0() { return &___BeginFrameRendering_0; }
inline void set_BeginFrameRendering_0(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * value)
{
___BeginFrameRendering_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BeginFrameRendering_0), (void*)value);
}
inline static int32_t get_offset_of_BeginCameraRendering_1() { return static_cast<int32_t>(offsetof(UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B, ___BeginCameraRendering_1)); }
inline Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * get_BeginCameraRendering_1() const { return ___BeginCameraRendering_1; }
inline Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 ** get_address_of_BeginCameraRendering_1() { return &___BeginCameraRendering_1; }
inline void set_BeginCameraRendering_1(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * value)
{
___BeginCameraRendering_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BeginCameraRendering_1), (void*)value);
}
};
// Vuforia.UnityRuntimeCompiled.UnityRuntimeCompiledFacade
struct UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046 : public RuntimeObject
{
public:
public:
};
struct UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046_StaticFields
{
public:
// Vuforia.UnityRuntimeCompiled.IUnityRuntimeCompiledFacade Vuforia.UnityRuntimeCompiled.UnityRuntimeCompiledFacade::sInstance
RuntimeObject* ___sInstance_0;
public:
inline static int32_t get_offset_of_sInstance_0() { return static_cast<int32_t>(offsetof(UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046_StaticFields, ___sInstance_0)); }
inline RuntimeObject* get_sInstance_0() const { return ___sInstance_0; }
inline RuntimeObject** get_address_of_sInstance_0() { return &___sInstance_0; }
inline void set_sInstance_0(RuntimeObject* value)
{
___sInstance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sInstance_0), (void*)value);
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.Rect
struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// DefaultTrackableEventHandler_TrackingStatusFilter
struct TrackingStatusFilter_t5ED0DA7A41FC6E3B273D5BA036B6A43A67E9C00B
{
public:
// System.Int32 DefaultTrackableEventHandler_TrackingStatusFilter::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingStatusFilter_t5ED0DA7A41FC6E3B273D5BA036B6A43A67E9C00B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyleState::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyle UnityEngine.GUIStyleState::m_SourceStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___m_SourceStyle_1)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com* ___m_SourceStyle_1;
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.PrimitiveType
struct PrimitiveType_t37F0056BA9C61594039522E27426D4D52D0943DE
{
public:
// System.Int32 UnityEngine.PrimitiveType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PrimitiveType_t37F0056BA9C61594039522E27426D4D52D0943DE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.RectOffset::m_Ptr
intptr_t ___m_Ptr_0;
// System.Object UnityEngine.RectOffset::m_SourceStyle
RuntimeObject * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___m_SourceStyle_1)); }
inline RuntimeObject * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline RuntimeObject ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(RuntimeObject * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// UnityEngine.Rendering.ScriptableRenderContext
struct ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B
{
public:
// System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.TextAnchor
struct TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57
{
public:
// System.Int32 UnityEngine.TextAnchor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextureFormat
struct TextureFormat_t7C6B5101554065C47682E592D1E26079D4EC2DCE
{
public:
// System.Int32 UnityEngine.TextureFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_t7C6B5101554065C47682E592D1E26079D4EC2DCE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.CameraDevice_CameraDeviceMode
struct CameraDeviceMode_t31CE15C1D60CED5FC63DF3962D53D5DAADD40589
{
public:
// System.Int32 Vuforia.CameraDevice_CameraDeviceMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CameraDeviceMode_t31CE15C1D60CED5FC63DF3962D53D5DAADD40589, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.TrackableBehaviour_Status
struct Status_t9B64F0BA3AD7E64C80B7CD10F61ECC24F20EC092
{
public:
// System.Int32 Vuforia.TrackableBehaviour_Status::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Status_t9B64F0BA3AD7E64C80B7CD10F61ECC24F20EC092, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.TrackableBehaviour_StatusInfo
struct StatusInfo_t5507FB8CC09640E7771385EBE27221431A2FEB4E
{
public:
// System.Int32 Vuforia.TrackableBehaviour_StatusInfo::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StatusInfo_t5507FB8CC09640E7771385EBE27221431A2FEB4E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.VuforiaRuntime_InitState
struct InitState_t0072A2BD2C69378E4575A8148A3DB0974451CD70
{
public:
// System.Int32 Vuforia.VuforiaRuntime_InitState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InitState_t0072A2BD2C69378E4575A8148A3DB0974451CD70, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.VuforiaUnity_InitError
struct InitError_t486F7D53F5B0B7943D4E22BE2D32F4913D4A0431
{
public:
// System.Int32 Vuforia.VuforiaUnity_InitError::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InitError_t486F7D53F5B0B7943D4E22BE2D32F4913D4A0431, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Vuforia.VuforiaUnity_ModelTargetMode
struct ModelTargetMode_tC962BC609588E58B2B077B72A029DE8FAB95AA04
{
public:
// System.Int32 Vuforia.VuforiaUnity_ModelTargetMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ModelTargetMode_tC962BC609588E58B2B077B72A029DE8FAB95AA04, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
// UnityEngine.Font_FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * ___m_FontTextureRebuildCallback_5;
public:
inline static int32_t get_offset_of_m_FontTextureRebuildCallback_5() { return static_cast<int32_t>(offsetof(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26, ___m_FontTextureRebuildCallback_5)); }
inline FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * get_m_FontTextureRebuildCallback_5() const { return ___m_FontTextureRebuildCallback_5; }
inline FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C ** get_address_of_m_FontTextureRebuildCallback_5() { return &___m_FontTextureRebuildCallback_5; }
inline void set_m_FontTextureRebuildCallback_5(FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * value)
{
___m_FontTextureRebuildCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontTextureRebuildCallback_5), (void*)value);
}
};
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_StaticFields
{
public:
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * ___textureRebuilt_4;
public:
inline static int32_t get_offset_of_textureRebuilt_4() { return static_cast<int32_t>(offsetof(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_StaticFields, ___textureRebuilt_4)); }
inline Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * get_textureRebuilt_4() const { return ___textureRebuilt_4; }
inline Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C ** get_address_of_textureRebuilt_4() { return &___textureRebuilt_4; }
inline void set_textureRebuilt_4(Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * value)
{
___textureRebuilt_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textureRebuilt_4), (void*)value);
}
};
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyle::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Normal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Normal_1;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Hover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Hover_2;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Active
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Active_3;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Focused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Focused_4;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnNormal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnNormal_5;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnHover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnHover_6;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnActive
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnActive_7;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnFocused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnFocused_8;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Border
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Border_9;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Padding
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Padding_10;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Margin
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Margin_11;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Overflow
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Overflow_12;
// System.String UnityEngine.GUIStyle::m_Name
String_t* ___m_Name_13;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Normal_1)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Normal_1() const { return ___m_Normal_1; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Normal_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Normal_1), (void*)value);
}
inline static int32_t get_offset_of_m_Hover_2() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Hover_2)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Hover_2() const { return ___m_Hover_2; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Hover_2() { return &___m_Hover_2; }
inline void set_m_Hover_2(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Hover_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Hover_2), (void*)value);
}
inline static int32_t get_offset_of_m_Active_3() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Active_3)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Active_3() const { return ___m_Active_3; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Active_3() { return &___m_Active_3; }
inline void set_m_Active_3(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Active_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Active_3), (void*)value);
}
inline static int32_t get_offset_of_m_Focused_4() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Focused_4)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Focused_4() const { return ___m_Focused_4; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Focused_4() { return &___m_Focused_4; }
inline void set_m_Focused_4(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Focused_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Focused_4), (void*)value);
}
inline static int32_t get_offset_of_m_OnNormal_5() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnNormal_5)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnNormal_5() const { return ___m_OnNormal_5; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnNormal_5() { return &___m_OnNormal_5; }
inline void set_m_OnNormal_5(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnNormal_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnNormal_5), (void*)value);
}
inline static int32_t get_offset_of_m_OnHover_6() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnHover_6)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnHover_6() const { return ___m_OnHover_6; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnHover_6() { return &___m_OnHover_6; }
inline void set_m_OnHover_6(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnHover_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnHover_6), (void*)value);
}
inline static int32_t get_offset_of_m_OnActive_7() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnActive_7)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnActive_7() const { return ___m_OnActive_7; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnActive_7() { return &___m_OnActive_7; }
inline void set_m_OnActive_7(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnActive_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnActive_7), (void*)value);
}
inline static int32_t get_offset_of_m_OnFocused_8() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnFocused_8)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnFocused_8() const { return ___m_OnFocused_8; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnFocused_8() { return &___m_OnFocused_8; }
inline void set_m_OnFocused_8(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnFocused_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnFocused_8), (void*)value);
}
inline static int32_t get_offset_of_m_Border_9() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Border_9)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Border_9() const { return ___m_Border_9; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Border_9() { return &___m_Border_9; }
inline void set_m_Border_9(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Border_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Border_9), (void*)value);
}
inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Padding_10)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Padding_10() const { return ___m_Padding_10; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Padding_10() { return &___m_Padding_10; }
inline void set_m_Padding_10(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Padding_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_10), (void*)value);
}
inline static int32_t get_offset_of_m_Margin_11() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Margin_11)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Margin_11() const { return ___m_Margin_11; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Margin_11() { return &___m_Margin_11; }
inline void set_m_Margin_11(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Margin_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Margin_11), (void*)value);
}
inline static int32_t get_offset_of_m_Overflow_12() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Overflow_12)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Overflow_12() const { return ___m_Overflow_12; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Overflow_12() { return &___m_Overflow_12; }
inline void set_m_Overflow_12(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Overflow_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Overflow_12), (void*)value);
}
inline static int32_t get_offset_of_m_Name_13() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Name_13)); }
inline String_t* get_m_Name_13() const { return ___m_Name_13; }
inline String_t** get_address_of_m_Name_13() { return &___m_Name_13; }
inline void set_m_Name_13(String_t* value)
{
___m_Name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_13), (void*)value);
}
};
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields
{
public:
// System.Boolean UnityEngine.GUIStyle::showKeyboardFocus
bool ___showKeyboardFocus_14;
// UnityEngine.GUIStyle UnityEngine.GUIStyle::s_None
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___s_None_15;
public:
inline static int32_t get_offset_of_showKeyboardFocus_14() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___showKeyboardFocus_14)); }
inline bool get_showKeyboardFocus_14() const { return ___showKeyboardFocus_14; }
inline bool* get_address_of_showKeyboardFocus_14() { return &___showKeyboardFocus_14; }
inline void set_showKeyboardFocus_14(bool value)
{
___showKeyboardFocus_14 = value;
}
inline static int32_t get_offset_of_s_None_15() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___s_None_15)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_s_None_15() const { return ___s_None_15; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_s_None_15() { return &___s_None_15; }
inline void set_s_None_15(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___s_None_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_None_15), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Overflow_12;
char* ___m_Name_13;
};
// Native definition for COM marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Overflow_12;
Il2CppChar* ___m_Name_13;
};
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// Vuforia.TrackableBehaviour_StatusChangeResult
struct StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD
{
public:
// Vuforia.TrackableBehaviour_Status Vuforia.TrackableBehaviour_StatusChangeResult::PreviousStatus
int32_t ___PreviousStatus_0;
// Vuforia.TrackableBehaviour_Status Vuforia.TrackableBehaviour_StatusChangeResult::NewStatus
int32_t ___NewStatus_1;
public:
inline static int32_t get_offset_of_PreviousStatus_0() { return static_cast<int32_t>(offsetof(StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD, ___PreviousStatus_0)); }
inline int32_t get_PreviousStatus_0() const { return ___PreviousStatus_0; }
inline int32_t* get_address_of_PreviousStatus_0() { return &___PreviousStatus_0; }
inline void set_PreviousStatus_0(int32_t value)
{
___PreviousStatus_0 = value;
}
inline static int32_t get_offset_of_NewStatus_1() { return static_cast<int32_t>(offsetof(StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD, ___NewStatus_1)); }
inline int32_t get_NewStatus_1() const { return ___NewStatus_1; }
inline int32_t* get_address_of_NewStatus_1() { return &___NewStatus_1; }
inline void set_NewStatus_1(int32_t value)
{
___NewStatus_1 = value;
}
};
// Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration
struct GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 : public RuntimeObject
{
public:
// System.String Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::vuforiaLicenseKey
String_t* ___vuforiaLicenseKey_2;
// System.String Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::ufoLicenseKey
String_t* ___ufoLicenseKey_3;
// System.Boolean Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::delayedInitialization
bool ___delayedInitialization_4;
// Vuforia.CameraDevice_CameraDeviceMode Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::cameraDeviceModeSetting
int32_t ___cameraDeviceModeSetting_5;
// System.Int32 Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::maxSimultaneousImageTargets
int32_t ___maxSimultaneousImageTargets_6;
// System.Int32 Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::maxSimultaneousObjectTargets
int32_t ___maxSimultaneousObjectTargets_7;
// System.Single Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::previousVirtualSceneScaleFactor
float ___previousVirtualSceneScaleFactor_8;
// System.Single Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::virtualSceneScaleFactor
float ___virtualSceneScaleFactor_9;
// System.Boolean Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::useDelayedLoadingObjectTargets
bool ___useDelayedLoadingObjectTargets_10;
// System.Boolean Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::modelTargetRecoWhileExtendedTracked
bool ___modelTargetRecoWhileExtendedTracked_11;
// System.String Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::version
String_t* ___version_12;
// System.String Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::eulaAcceptedVersions
String_t* ___eulaAcceptedVersions_13;
// Vuforia.VuforiaUnity_ModelTargetMode Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::modelTargetMode
int32_t ___modelTargetMode_14;
public:
inline static int32_t get_offset_of_vuforiaLicenseKey_2() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___vuforiaLicenseKey_2)); }
inline String_t* get_vuforiaLicenseKey_2() const { return ___vuforiaLicenseKey_2; }
inline String_t** get_address_of_vuforiaLicenseKey_2() { return &___vuforiaLicenseKey_2; }
inline void set_vuforiaLicenseKey_2(String_t* value)
{
___vuforiaLicenseKey_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vuforiaLicenseKey_2), (void*)value);
}
inline static int32_t get_offset_of_ufoLicenseKey_3() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___ufoLicenseKey_3)); }
inline String_t* get_ufoLicenseKey_3() const { return ___ufoLicenseKey_3; }
inline String_t** get_address_of_ufoLicenseKey_3() { return &___ufoLicenseKey_3; }
inline void set_ufoLicenseKey_3(String_t* value)
{
___ufoLicenseKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ufoLicenseKey_3), (void*)value);
}
inline static int32_t get_offset_of_delayedInitialization_4() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___delayedInitialization_4)); }
inline bool get_delayedInitialization_4() const { return ___delayedInitialization_4; }
inline bool* get_address_of_delayedInitialization_4() { return &___delayedInitialization_4; }
inline void set_delayedInitialization_4(bool value)
{
___delayedInitialization_4 = value;
}
inline static int32_t get_offset_of_cameraDeviceModeSetting_5() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___cameraDeviceModeSetting_5)); }
inline int32_t get_cameraDeviceModeSetting_5() const { return ___cameraDeviceModeSetting_5; }
inline int32_t* get_address_of_cameraDeviceModeSetting_5() { return &___cameraDeviceModeSetting_5; }
inline void set_cameraDeviceModeSetting_5(int32_t value)
{
___cameraDeviceModeSetting_5 = value;
}
inline static int32_t get_offset_of_maxSimultaneousImageTargets_6() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___maxSimultaneousImageTargets_6)); }
inline int32_t get_maxSimultaneousImageTargets_6() const { return ___maxSimultaneousImageTargets_6; }
inline int32_t* get_address_of_maxSimultaneousImageTargets_6() { return &___maxSimultaneousImageTargets_6; }
inline void set_maxSimultaneousImageTargets_6(int32_t value)
{
___maxSimultaneousImageTargets_6 = value;
}
inline static int32_t get_offset_of_maxSimultaneousObjectTargets_7() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___maxSimultaneousObjectTargets_7)); }
inline int32_t get_maxSimultaneousObjectTargets_7() const { return ___maxSimultaneousObjectTargets_7; }
inline int32_t* get_address_of_maxSimultaneousObjectTargets_7() { return &___maxSimultaneousObjectTargets_7; }
inline void set_maxSimultaneousObjectTargets_7(int32_t value)
{
___maxSimultaneousObjectTargets_7 = value;
}
inline static int32_t get_offset_of_previousVirtualSceneScaleFactor_8() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___previousVirtualSceneScaleFactor_8)); }
inline float get_previousVirtualSceneScaleFactor_8() const { return ___previousVirtualSceneScaleFactor_8; }
inline float* get_address_of_previousVirtualSceneScaleFactor_8() { return &___previousVirtualSceneScaleFactor_8; }
inline void set_previousVirtualSceneScaleFactor_8(float value)
{
___previousVirtualSceneScaleFactor_8 = value;
}
inline static int32_t get_offset_of_virtualSceneScaleFactor_9() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___virtualSceneScaleFactor_9)); }
inline float get_virtualSceneScaleFactor_9() const { return ___virtualSceneScaleFactor_9; }
inline float* get_address_of_virtualSceneScaleFactor_9() { return &___virtualSceneScaleFactor_9; }
inline void set_virtualSceneScaleFactor_9(float value)
{
___virtualSceneScaleFactor_9 = value;
}
inline static int32_t get_offset_of_useDelayedLoadingObjectTargets_10() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___useDelayedLoadingObjectTargets_10)); }
inline bool get_useDelayedLoadingObjectTargets_10() const { return ___useDelayedLoadingObjectTargets_10; }
inline bool* get_address_of_useDelayedLoadingObjectTargets_10() { return &___useDelayedLoadingObjectTargets_10; }
inline void set_useDelayedLoadingObjectTargets_10(bool value)
{
___useDelayedLoadingObjectTargets_10 = value;
}
inline static int32_t get_offset_of_modelTargetRecoWhileExtendedTracked_11() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___modelTargetRecoWhileExtendedTracked_11)); }
inline bool get_modelTargetRecoWhileExtendedTracked_11() const { return ___modelTargetRecoWhileExtendedTracked_11; }
inline bool* get_address_of_modelTargetRecoWhileExtendedTracked_11() { return &___modelTargetRecoWhileExtendedTracked_11; }
inline void set_modelTargetRecoWhileExtendedTracked_11(bool value)
{
___modelTargetRecoWhileExtendedTracked_11 = value;
}
inline static int32_t get_offset_of_version_12() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___version_12)); }
inline String_t* get_version_12() const { return ___version_12; }
inline String_t** get_address_of_version_12() { return &___version_12; }
inline void set_version_12(String_t* value)
{
___version_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___version_12), (void*)value);
}
inline static int32_t get_offset_of_eulaAcceptedVersions_13() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___eulaAcceptedVersions_13)); }
inline String_t* get_eulaAcceptedVersions_13() const { return ___eulaAcceptedVersions_13; }
inline String_t** get_address_of_eulaAcceptedVersions_13() { return &___eulaAcceptedVersions_13; }
inline void set_eulaAcceptedVersions_13(String_t* value)
{
___eulaAcceptedVersions_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eulaAcceptedVersions_13), (void*)value);
}
inline static int32_t get_offset_of_modelTargetMode_14() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064, ___modelTargetMode_14)); }
inline int32_t get_modelTargetMode_14() const { return ___modelTargetMode_14; }
inline int32_t* get_address_of_modelTargetMode_14() { return &___modelTargetMode_14; }
inline void set_modelTargetMode_14(int32_t value)
{
___modelTargetMode_14 = value;
}
};
struct GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064_StaticFields
{
public:
// System.Action`2<System.Single,System.Single> Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration::VirtualSceneScaleFactorUpdated
Action_2_t4548CE7BB459C9F1C58BAF5FD113A574B4DF6F31 * ___VirtualSceneScaleFactorUpdated_1;
public:
inline static int32_t get_offset_of_VirtualSceneScaleFactorUpdated_1() { return static_cast<int32_t>(offsetof(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064_StaticFields, ___VirtualSceneScaleFactorUpdated_1)); }
inline Action_2_t4548CE7BB459C9F1C58BAF5FD113A574B4DF6F31 * get_VirtualSceneScaleFactorUpdated_1() const { return ___VirtualSceneScaleFactorUpdated_1; }
inline Action_2_t4548CE7BB459C9F1C58BAF5FD113A574B4DF6F31 ** get_address_of_VirtualSceneScaleFactorUpdated_1() { return &___VirtualSceneScaleFactorUpdated_1; }
inline void set_VirtualSceneScaleFactorUpdated_1(Action_2_t4548CE7BB459C9F1C58BAF5FD113A574B4DF6F31 * value)
{
___VirtualSceneScaleFactorUpdated_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___VirtualSceneScaleFactorUpdated_1), (void*)value);
}
};
// Vuforia.VuforiaRuntime
struct VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D : public RuntimeObject
{
public:
// System.Action`1<Vuforia.VuforiaUnity_InitError> Vuforia.VuforiaRuntime::mOnVuforiaInitError
Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * ___mOnVuforiaInitError_1;
// System.Boolean Vuforia.VuforiaRuntime::mFailedToInitialize
bool ___mFailedToInitialize_2;
// Vuforia.VuforiaUnity_InitError Vuforia.VuforiaRuntime::mInitError
int32_t ___mInitError_3;
// Vuforia.VuforiaRuntime_InitState Vuforia.VuforiaRuntime::mInitState
int32_t ___mInitState_4;
// System.Int32 Vuforia.VuforiaRuntime::mTimesPermissionCheckFailed
int32_t ___mTimesPermissionCheckFailed_5;
// System.Boolean Vuforia.VuforiaRuntime::mAppIsQuitting
bool ___mAppIsQuitting_8;
public:
inline static int32_t get_offset_of_mOnVuforiaInitError_1() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mOnVuforiaInitError_1)); }
inline Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * get_mOnVuforiaInitError_1() const { return ___mOnVuforiaInitError_1; }
inline Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD ** get_address_of_mOnVuforiaInitError_1() { return &___mOnVuforiaInitError_1; }
inline void set_mOnVuforiaInitError_1(Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * value)
{
___mOnVuforiaInitError_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mOnVuforiaInitError_1), (void*)value);
}
inline static int32_t get_offset_of_mFailedToInitialize_2() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mFailedToInitialize_2)); }
inline bool get_mFailedToInitialize_2() const { return ___mFailedToInitialize_2; }
inline bool* get_address_of_mFailedToInitialize_2() { return &___mFailedToInitialize_2; }
inline void set_mFailedToInitialize_2(bool value)
{
___mFailedToInitialize_2 = value;
}
inline static int32_t get_offset_of_mInitError_3() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mInitError_3)); }
inline int32_t get_mInitError_3() const { return ___mInitError_3; }
inline int32_t* get_address_of_mInitError_3() { return &___mInitError_3; }
inline void set_mInitError_3(int32_t value)
{
___mInitError_3 = value;
}
inline static int32_t get_offset_of_mInitState_4() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mInitState_4)); }
inline int32_t get_mInitState_4() const { return ___mInitState_4; }
inline int32_t* get_address_of_mInitState_4() { return &___mInitState_4; }
inline void set_mInitState_4(int32_t value)
{
___mInitState_4 = value;
}
inline static int32_t get_offset_of_mTimesPermissionCheckFailed_5() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mTimesPermissionCheckFailed_5)); }
inline int32_t get_mTimesPermissionCheckFailed_5() const { return ___mTimesPermissionCheckFailed_5; }
inline int32_t* get_address_of_mTimesPermissionCheckFailed_5() { return &___mTimesPermissionCheckFailed_5; }
inline void set_mTimesPermissionCheckFailed_5(int32_t value)
{
___mTimesPermissionCheckFailed_5 = value;
}
inline static int32_t get_offset_of_mAppIsQuitting_8() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D, ___mAppIsQuitting_8)); }
inline bool get_mAppIsQuitting_8() const { return ___mAppIsQuitting_8; }
inline bool* get_address_of_mAppIsQuitting_8() { return &___mAppIsQuitting_8; }
inline void set_mAppIsQuitting_8(bool value)
{
___mAppIsQuitting_8 = value;
}
};
struct VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_StaticFields
{
public:
// Vuforia.VuforiaRuntime Vuforia.VuforiaRuntime::mInstance
VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * ___mInstance_6;
// System.Object Vuforia.VuforiaRuntime::mPadlock
RuntimeObject * ___mPadlock_7;
public:
inline static int32_t get_offset_of_mInstance_6() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_StaticFields, ___mInstance_6)); }
inline VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * get_mInstance_6() const { return ___mInstance_6; }
inline VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D ** get_address_of_mInstance_6() { return &___mInstance_6; }
inline void set_mInstance_6(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * value)
{
___mInstance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mInstance_6), (void*)value);
}
inline static int32_t get_offset_of_mPadlock_7() { return static_cast<int32_t>(offsetof(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_StaticFields, ___mPadlock_7)); }
inline RuntimeObject * get_mPadlock_7() const { return ___mPadlock_7; }
inline RuntimeObject ** get_address_of_mPadlock_7() { return &___mPadlock_7; }
inline void set_mPadlock_7(RuntimeObject * value)
{
___mPadlock_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mPadlock_7), (void*)value);
}
};
// System.Action`1<UnityEngine.Camera>
struct Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Camera[]>
struct Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>
struct Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<Vuforia.VuforiaUnity_InitError>
struct Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera>
struct Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[]>
struct Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Collider
struct Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.GUI_WindowFunction
struct WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C : public Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4
{
public:
public:
};
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// Vuforia.VuforiaConfiguration
struct VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// Vuforia.VuforiaConfiguration_GenericVuforiaConfiguration Vuforia.VuforiaConfiguration::vuforia
GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * ___vuforia_6;
// Vuforia.VuforiaConfiguration_DatabaseConfiguration Vuforia.VuforiaConfiguration::database
DatabaseConfiguration_t0B1E7EF9676AD0191B8AFA87BFD43EB9F141928A * ___database_7;
// Vuforia.VuforiaConfiguration_VideoBackgroundConfiguration Vuforia.VuforiaConfiguration::videoBackground
VideoBackgroundConfiguration_tCC24E374B966B79D018C14F6807A6DDA47302F17 * ___videoBackground_8;
// Vuforia.VuforiaConfiguration_DeviceTrackerConfiguration Vuforia.VuforiaConfiguration::deviceTracker
DeviceTrackerConfiguration_tC11D2DA49200D3693731D6AFF3F793E4315D1E3F * ___deviceTracker_9;
// Vuforia.VuforiaConfiguration_PlayModeConfiguration Vuforia.VuforiaConfiguration::playmode
PlayModeConfiguration_t8E172BDEC861CAC69CEDA8CD753C68A4B7960260 * ___playmode_10;
// Vuforia.VuforiaConfiguration_WebCamConfiguration Vuforia.VuforiaConfiguration::webcam
WebCamConfiguration_t0A5BD19A86D3AA8B68FB79C1EA8A5855A6C9F321 * ___webcam_11;
public:
inline static int32_t get_offset_of_vuforia_6() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___vuforia_6)); }
inline GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * get_vuforia_6() const { return ___vuforia_6; }
inline GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 ** get_address_of_vuforia_6() { return &___vuforia_6; }
inline void set_vuforia_6(GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * value)
{
___vuforia_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vuforia_6), (void*)value);
}
inline static int32_t get_offset_of_database_7() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___database_7)); }
inline DatabaseConfiguration_t0B1E7EF9676AD0191B8AFA87BFD43EB9F141928A * get_database_7() const { return ___database_7; }
inline DatabaseConfiguration_t0B1E7EF9676AD0191B8AFA87BFD43EB9F141928A ** get_address_of_database_7() { return &___database_7; }
inline void set_database_7(DatabaseConfiguration_t0B1E7EF9676AD0191B8AFA87BFD43EB9F141928A * value)
{
___database_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___database_7), (void*)value);
}
inline static int32_t get_offset_of_videoBackground_8() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___videoBackground_8)); }
inline VideoBackgroundConfiguration_tCC24E374B966B79D018C14F6807A6DDA47302F17 * get_videoBackground_8() const { return ___videoBackground_8; }
inline VideoBackgroundConfiguration_tCC24E374B966B79D018C14F6807A6DDA47302F17 ** get_address_of_videoBackground_8() { return &___videoBackground_8; }
inline void set_videoBackground_8(VideoBackgroundConfiguration_tCC24E374B966B79D018C14F6807A6DDA47302F17 * value)
{
___videoBackground_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoBackground_8), (void*)value);
}
inline static int32_t get_offset_of_deviceTracker_9() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___deviceTracker_9)); }
inline DeviceTrackerConfiguration_tC11D2DA49200D3693731D6AFF3F793E4315D1E3F * get_deviceTracker_9() const { return ___deviceTracker_9; }
inline DeviceTrackerConfiguration_tC11D2DA49200D3693731D6AFF3F793E4315D1E3F ** get_address_of_deviceTracker_9() { return &___deviceTracker_9; }
inline void set_deviceTracker_9(DeviceTrackerConfiguration_tC11D2DA49200D3693731D6AFF3F793E4315D1E3F * value)
{
___deviceTracker_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceTracker_9), (void*)value);
}
inline static int32_t get_offset_of_playmode_10() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___playmode_10)); }
inline PlayModeConfiguration_t8E172BDEC861CAC69CEDA8CD753C68A4B7960260 * get_playmode_10() const { return ___playmode_10; }
inline PlayModeConfiguration_t8E172BDEC861CAC69CEDA8CD753C68A4B7960260 ** get_address_of_playmode_10() { return &___playmode_10; }
inline void set_playmode_10(PlayModeConfiguration_t8E172BDEC861CAC69CEDA8CD753C68A4B7960260 * value)
{
___playmode_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playmode_10), (void*)value);
}
inline static int32_t get_offset_of_webcam_11() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82, ___webcam_11)); }
inline WebCamConfiguration_t0A5BD19A86D3AA8B68FB79C1EA8A5855A6C9F321 * get_webcam_11() const { return ___webcam_11; }
inline WebCamConfiguration_t0A5BD19A86D3AA8B68FB79C1EA8A5855A6C9F321 ** get_address_of_webcam_11() { return &___webcam_11; }
inline void set_webcam_11(WebCamConfiguration_t0A5BD19A86D3AA8B68FB79C1EA8A5855A6C9F321 * value)
{
___webcam_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___webcam_11), (void*)value);
}
};
struct VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82_StaticFields
{
public:
// Vuforia.VuforiaConfiguration Vuforia.VuforiaConfiguration::mInstance
VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * ___mInstance_4;
// System.Object Vuforia.VuforiaConfiguration::mPadlock
RuntimeObject * ___mPadlock_5;
public:
inline static int32_t get_offset_of_mInstance_4() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82_StaticFields, ___mInstance_4)); }
inline VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * get_mInstance_4() const { return ___mInstance_4; }
inline VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 ** get_address_of_mInstance_4() { return &___mInstance_4; }
inline void set_mInstance_4(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * value)
{
___mInstance_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mInstance_4), (void*)value);
}
inline static int32_t get_offset_of_mPadlock_5() { return static_cast<int32_t>(offsetof(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82_StaticFields, ___mPadlock_5)); }
inline RuntimeObject * get_mPadlock_5() const { return ___mPadlock_5; }
inline RuntimeObject ** get_address_of_mPadlock_5() { return &___mPadlock_5; }
inline void set_mPadlock_5(RuntimeObject * value)
{
___mPadlock_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mPadlock_5), (void*)value);
}
};
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields
{
public:
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreCull
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPreCull_4;
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreRender
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPreRender_5;
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPostRender
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPostRender_6;
public:
inline static int32_t get_offset_of_onPreCull_4() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPreCull_4)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPreCull_4() const { return ___onPreCull_4; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPreCull_4() { return &___onPreCull_4; }
inline void set_onPreCull_4(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPreCull_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreCull_4), (void*)value);
}
inline static int32_t get_offset_of_onPreRender_5() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPreRender_5)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPreRender_5() const { return ___onPreRender_5; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPreRender_5() { return &___onPreRender_5; }
inline void set_onPreRender_5(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPreRender_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreRender_5), (void*)value);
}
inline static int32_t get_offset_of_onPostRender_6() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPostRender_6)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPostRender_6() const { return ___onPostRender_6; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPostRender_6() { return &___onPostRender_6; }
inline void set_onPostRender_6(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPostRender_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPostRender_6), (void*)value);
}
};
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields
{
public:
// UnityEngine.Canvas_WillRenderCanvases UnityEngine.Canvas::willRenderCanvases
WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * ___willRenderCanvases_4;
public:
inline static int32_t get_offset_of_willRenderCanvases_4() { return static_cast<int32_t>(offsetof(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields, ___willRenderCanvases_4)); }
inline WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * get_willRenderCanvases_4() const { return ___willRenderCanvases_4; }
inline WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE ** get_address_of_willRenderCanvases_4() { return &___willRenderCanvases_4; }
inline void set_willRenderCanvases_4(WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * value)
{
___willRenderCanvases_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___willRenderCanvases_4), (void*)value);
}
};
// UnityEngine.MeshRenderer
struct MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED : public Renderer_t0556D67DD582620D1F495627EDE30D03284151F4
{
public:
public:
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// BoundingBoxRenderer
struct BoundingBoxRenderer_t687A36FDD509AC21A29D0CF70359619EFD251AFB : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.Material BoundingBoxRenderer::mLineMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___mLineMaterial_4;
public:
inline static int32_t get_offset_of_mLineMaterial_4() { return static_cast<int32_t>(offsetof(BoundingBoxRenderer_t687A36FDD509AC21A29D0CF70359619EFD251AFB, ___mLineMaterial_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_mLineMaterial_4() const { return ___mLineMaterial_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_mLineMaterial_4() { return &___mLineMaterial_4; }
inline void set_mLineMaterial_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___mLineMaterial_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mLineMaterial_4), (void*)value);
}
};
// DefaultTrackableEventHandler
struct DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// DefaultTrackableEventHandler_TrackingStatusFilter DefaultTrackableEventHandler::StatusFilter
int32_t ___StatusFilter_4;
// UnityEngine.Events.UnityEvent DefaultTrackableEventHandler::OnTargetFound
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___OnTargetFound_5;
// UnityEngine.Events.UnityEvent DefaultTrackableEventHandler::OnTargetLost
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * ___OnTargetLost_6;
// Vuforia.TrackableBehaviour DefaultTrackableEventHandler::mTrackableBehaviour
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * ___mTrackableBehaviour_7;
// Vuforia.TrackableBehaviour_Status DefaultTrackableEventHandler::m_PreviousStatus
int32_t ___m_PreviousStatus_8;
// Vuforia.TrackableBehaviour_Status DefaultTrackableEventHandler::m_NewStatus
int32_t ___m_NewStatus_9;
// System.Boolean DefaultTrackableEventHandler::m_CallbackReceivedOnce
bool ___m_CallbackReceivedOnce_10;
public:
inline static int32_t get_offset_of_StatusFilter_4() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___StatusFilter_4)); }
inline int32_t get_StatusFilter_4() const { return ___StatusFilter_4; }
inline int32_t* get_address_of_StatusFilter_4() { return &___StatusFilter_4; }
inline void set_StatusFilter_4(int32_t value)
{
___StatusFilter_4 = value;
}
inline static int32_t get_offset_of_OnTargetFound_5() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___OnTargetFound_5)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_OnTargetFound_5() const { return ___OnTargetFound_5; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_OnTargetFound_5() { return &___OnTargetFound_5; }
inline void set_OnTargetFound_5(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___OnTargetFound_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnTargetFound_5), (void*)value);
}
inline static int32_t get_offset_of_OnTargetLost_6() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___OnTargetLost_6)); }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * get_OnTargetLost_6() const { return ___OnTargetLost_6; }
inline UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F ** get_address_of_OnTargetLost_6() { return &___OnTargetLost_6; }
inline void set_OnTargetLost_6(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * value)
{
___OnTargetLost_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnTargetLost_6), (void*)value);
}
inline static int32_t get_offset_of_mTrackableBehaviour_7() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___mTrackableBehaviour_7)); }
inline TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * get_mTrackableBehaviour_7() const { return ___mTrackableBehaviour_7; }
inline TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 ** get_address_of_mTrackableBehaviour_7() { return &___mTrackableBehaviour_7; }
inline void set_mTrackableBehaviour_7(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * value)
{
___mTrackableBehaviour_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mTrackableBehaviour_7), (void*)value);
}
inline static int32_t get_offset_of_m_PreviousStatus_8() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___m_PreviousStatus_8)); }
inline int32_t get_m_PreviousStatus_8() const { return ___m_PreviousStatus_8; }
inline int32_t* get_address_of_m_PreviousStatus_8() { return &___m_PreviousStatus_8; }
inline void set_m_PreviousStatus_8(int32_t value)
{
___m_PreviousStatus_8 = value;
}
inline static int32_t get_offset_of_m_NewStatus_9() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___m_NewStatus_9)); }
inline int32_t get_m_NewStatus_9() const { return ___m_NewStatus_9; }
inline int32_t* get_address_of_m_NewStatus_9() { return &___m_NewStatus_9; }
inline void set_m_NewStatus_9(int32_t value)
{
___m_NewStatus_9 = value;
}
inline static int32_t get_offset_of_m_CallbackReceivedOnce_10() { return static_cast<int32_t>(offsetof(DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022, ___m_CallbackReceivedOnce_10)); }
inline bool get_m_CallbackReceivedOnce_10() const { return ___m_CallbackReceivedOnce_10; }
inline bool* get_address_of_m_CallbackReceivedOnce_10() { return &___m_CallbackReceivedOnce_10; }
inline void set_m_CallbackReceivedOnce_10(bool value)
{
___m_CallbackReceivedOnce_10 = value;
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// Vuforia.VuforiaMonoBehaviour
struct VuforiaMonoBehaviour_tF7F5C56A8081EC294AB1D066607A1BEE140F7F75 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// DefaultInitializationErrorHandler
struct DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 : public VuforiaMonoBehaviour_tF7F5C56A8081EC294AB1D066607A1BEE140F7F75
{
public:
// System.String DefaultInitializationErrorHandler::mErrorText
String_t* ___mErrorText_4;
// System.Boolean DefaultInitializationErrorHandler::mErrorOccurred
bool ___mErrorOccurred_5;
// UnityEngine.GUIStyle DefaultInitializationErrorHandler::bodyStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___bodyStyle_7;
// UnityEngine.GUIStyle DefaultInitializationErrorHandler::headerStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___headerStyle_8;
// UnityEngine.GUIStyle DefaultInitializationErrorHandler::footerStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___footerStyle_9;
// UnityEngine.Texture2D DefaultInitializationErrorHandler::bodyTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___bodyTexture_10;
// UnityEngine.Texture2D DefaultInitializationErrorHandler::headerTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___headerTexture_11;
// UnityEngine.Texture2D DefaultInitializationErrorHandler::footerTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___footerTexture_12;
public:
inline static int32_t get_offset_of_mErrorText_4() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___mErrorText_4)); }
inline String_t* get_mErrorText_4() const { return ___mErrorText_4; }
inline String_t** get_address_of_mErrorText_4() { return &___mErrorText_4; }
inline void set_mErrorText_4(String_t* value)
{
___mErrorText_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mErrorText_4), (void*)value);
}
inline static int32_t get_offset_of_mErrorOccurred_5() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___mErrorOccurred_5)); }
inline bool get_mErrorOccurred_5() const { return ___mErrorOccurred_5; }
inline bool* get_address_of_mErrorOccurred_5() { return &___mErrorOccurred_5; }
inline void set_mErrorOccurred_5(bool value)
{
___mErrorOccurred_5 = value;
}
inline static int32_t get_offset_of_bodyStyle_7() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___bodyStyle_7)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_bodyStyle_7() const { return ___bodyStyle_7; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_bodyStyle_7() { return &___bodyStyle_7; }
inline void set_bodyStyle_7(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___bodyStyle_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bodyStyle_7), (void*)value);
}
inline static int32_t get_offset_of_headerStyle_8() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___headerStyle_8)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_headerStyle_8() const { return ___headerStyle_8; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_headerStyle_8() { return &___headerStyle_8; }
inline void set_headerStyle_8(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___headerStyle_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___headerStyle_8), (void*)value);
}
inline static int32_t get_offset_of_footerStyle_9() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___footerStyle_9)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_footerStyle_9() const { return ___footerStyle_9; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_footerStyle_9() { return &___footerStyle_9; }
inline void set_footerStyle_9(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___footerStyle_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___footerStyle_9), (void*)value);
}
inline static int32_t get_offset_of_bodyTexture_10() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___bodyTexture_10)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_bodyTexture_10() const { return ___bodyTexture_10; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_bodyTexture_10() { return &___bodyTexture_10; }
inline void set_bodyTexture_10(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___bodyTexture_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bodyTexture_10), (void*)value);
}
inline static int32_t get_offset_of_headerTexture_11() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___headerTexture_11)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_headerTexture_11() const { return ___headerTexture_11; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_headerTexture_11() { return &___headerTexture_11; }
inline void set_headerTexture_11(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___headerTexture_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___headerTexture_11), (void*)value);
}
inline static int32_t get_offset_of_footerTexture_12() { return static_cast<int32_t>(offsetof(DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38, ___footerTexture_12)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_footerTexture_12() const { return ___footerTexture_12; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_footerTexture_12() { return &___footerTexture_12; }
inline void set_footerTexture_12(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___footerTexture_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___footerTexture_12), (void*)value);
}
};
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule> UnityEngine.EventSystems.EventSystem::m_SystemInputModules
List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * ___m_SystemInputModules_4;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::m_CurrentInputModule
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * ___m_CurrentInputModule_5;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_FirstSelected
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_FirstSelected_7;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_sendNavigationEvents
bool ___m_sendNavigationEvents_8;
// System.Int32 UnityEngine.EventSystems.EventSystem::m_DragThreshold
int32_t ___m_DragThreshold_9;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_CurrentSelected
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_CurrentSelected_10;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_HasFocus
bool ___m_HasFocus_11;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_SelectionGuard
bool ___m_SelectionGuard_12;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::m_DummyData
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___m_DummyData_13;
public:
inline static int32_t get_offset_of_m_SystemInputModules_4() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_SystemInputModules_4)); }
inline List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * get_m_SystemInputModules_4() const { return ___m_SystemInputModules_4; }
inline List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 ** get_address_of_m_SystemInputModules_4() { return &___m_SystemInputModules_4; }
inline void set_m_SystemInputModules_4(List_1_t4FB5BF302DAD74D690156A022C4FA4D4081E9B26 * value)
{
___m_SystemInputModules_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SystemInputModules_4), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentInputModule_5() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_CurrentInputModule_5)); }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * get_m_CurrentInputModule_5() const { return ___m_CurrentInputModule_5; }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 ** get_address_of_m_CurrentInputModule_5() { return &___m_CurrentInputModule_5; }
inline void set_m_CurrentInputModule_5(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * value)
{
___m_CurrentInputModule_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentInputModule_5), (void*)value);
}
inline static int32_t get_offset_of_m_FirstSelected_7() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_FirstSelected_7)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_FirstSelected_7() const { return ___m_FirstSelected_7; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_FirstSelected_7() { return &___m_FirstSelected_7; }
inline void set_m_FirstSelected_7(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_FirstSelected_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FirstSelected_7), (void*)value);
}
inline static int32_t get_offset_of_m_sendNavigationEvents_8() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_sendNavigationEvents_8)); }
inline bool get_m_sendNavigationEvents_8() const { return ___m_sendNavigationEvents_8; }
inline bool* get_address_of_m_sendNavigationEvents_8() { return &___m_sendNavigationEvents_8; }
inline void set_m_sendNavigationEvents_8(bool value)
{
___m_sendNavigationEvents_8 = value;
}
inline static int32_t get_offset_of_m_DragThreshold_9() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_DragThreshold_9)); }
inline int32_t get_m_DragThreshold_9() const { return ___m_DragThreshold_9; }
inline int32_t* get_address_of_m_DragThreshold_9() { return &___m_DragThreshold_9; }
inline void set_m_DragThreshold_9(int32_t value)
{
___m_DragThreshold_9 = value;
}
inline static int32_t get_offset_of_m_CurrentSelected_10() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_CurrentSelected_10)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_CurrentSelected_10() const { return ___m_CurrentSelected_10; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_CurrentSelected_10() { return &___m_CurrentSelected_10; }
inline void set_m_CurrentSelected_10(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_CurrentSelected_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentSelected_10), (void*)value);
}
inline static int32_t get_offset_of_m_HasFocus_11() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_HasFocus_11)); }
inline bool get_m_HasFocus_11() const { return ___m_HasFocus_11; }
inline bool* get_address_of_m_HasFocus_11() { return &___m_HasFocus_11; }
inline void set_m_HasFocus_11(bool value)
{
___m_HasFocus_11 = value;
}
inline static int32_t get_offset_of_m_SelectionGuard_12() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_SelectionGuard_12)); }
inline bool get_m_SelectionGuard_12() const { return ___m_SelectionGuard_12; }
inline bool* get_address_of_m_SelectionGuard_12() { return &___m_SelectionGuard_12; }
inline void set_m_SelectionGuard_12(bool value)
{
___m_SelectionGuard_12 = value;
}
inline static int32_t get_offset_of_m_DummyData_13() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_DummyData_13)); }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * get_m_DummyData_13() const { return ___m_DummyData_13; }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 ** get_address_of_m_DummyData_13() { return &___m_DummyData_13; }
inline void set_m_DummyData_13(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * value)
{
___m_DummyData_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DummyData_13), (void*)value);
}
};
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem> UnityEngine.EventSystems.EventSystem::m_EventSystems
List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * ___m_EventSystems_6;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.EventSystem::s_RaycastComparer
Comparison_1_t32541D3F4C935BBA3800256BD21A7CA8148AAC13 * ___s_RaycastComparer_14;
public:
inline static int32_t get_offset_of_m_EventSystems_6() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields, ___m_EventSystems_6)); }
inline List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * get_m_EventSystems_6() const { return ___m_EventSystems_6; }
inline List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B ** get_address_of_m_EventSystems_6() { return &___m_EventSystems_6; }
inline void set_m_EventSystems_6(List_1_t882412D5BE0B5BFC1900366319F8B2EB544BDD8B * value)
{
___m_EventSystems_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystems_6), (void*)value);
}
inline static int32_t get_offset_of_s_RaycastComparer_14() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields, ___s_RaycastComparer_14)); }
inline Comparison_1_t32541D3F4C935BBA3800256BD21A7CA8148AAC13 * get_s_RaycastComparer_14() const { return ___s_RaycastComparer_14; }
inline Comparison_1_t32541D3F4C935BBA3800256BD21A7CA8148AAC13 ** get_address_of_s_RaycastComparer_14() { return &___s_RaycastComparer_14; }
inline void set_s_RaycastComparer_14(Comparison_1_t32541D3F4C935BBA3800256BD21A7CA8148AAC13 * value)
{
___s_RaycastComparer_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_RaycastComparer_14), (void*)value);
}
};
// Vuforia.TrackableBehaviour
struct TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 : public VuforiaMonoBehaviour_tF7F5C56A8081EC294AB1D066607A1BEE140F7F75
{
public:
// System.Double Vuforia.TrackableBehaviour::<TimeStamp>k__BackingField
double ___U3CTimeStampU3Ek__BackingField_4;
// System.String Vuforia.TrackableBehaviour::mTrackableName
String_t* ___mTrackableName_5;
// System.Boolean Vuforia.TrackableBehaviour::mInitializedInEditor
bool ___mInitializedInEditor_6;
// Vuforia.TrackableBehaviour_Status Vuforia.TrackableBehaviour::mStatus
int32_t ___mStatus_7;
// Vuforia.TrackableBehaviour_StatusInfo Vuforia.TrackableBehaviour::mStatusInfo
int32_t ___mStatusInfo_8;
// Vuforia.Trackable Vuforia.TrackableBehaviour::mTrackable
RuntimeObject* ___mTrackable_9;
// System.Collections.Generic.ICollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusChangeResult>> Vuforia.TrackableBehaviour::mStatusChangedEventHandlers
RuntimeObject* ___mStatusChangedEventHandlers_10;
// System.Collections.Generic.ICollection`1<System.Action`1<Vuforia.TrackableBehaviour_StatusInfoChangeResult>> Vuforia.TrackableBehaviour::mStatusInfoChangedEventHandlers
RuntimeObject* ___mStatusInfoChangedEventHandlers_11;
public:
inline static int32_t get_offset_of_U3CTimeStampU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___U3CTimeStampU3Ek__BackingField_4)); }
inline double get_U3CTimeStampU3Ek__BackingField_4() const { return ___U3CTimeStampU3Ek__BackingField_4; }
inline double* get_address_of_U3CTimeStampU3Ek__BackingField_4() { return &___U3CTimeStampU3Ek__BackingField_4; }
inline void set_U3CTimeStampU3Ek__BackingField_4(double value)
{
___U3CTimeStampU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_mTrackableName_5() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mTrackableName_5)); }
inline String_t* get_mTrackableName_5() const { return ___mTrackableName_5; }
inline String_t** get_address_of_mTrackableName_5() { return &___mTrackableName_5; }
inline void set_mTrackableName_5(String_t* value)
{
___mTrackableName_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mTrackableName_5), (void*)value);
}
inline static int32_t get_offset_of_mInitializedInEditor_6() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mInitializedInEditor_6)); }
inline bool get_mInitializedInEditor_6() const { return ___mInitializedInEditor_6; }
inline bool* get_address_of_mInitializedInEditor_6() { return &___mInitializedInEditor_6; }
inline void set_mInitializedInEditor_6(bool value)
{
___mInitializedInEditor_6 = value;
}
inline static int32_t get_offset_of_mStatus_7() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mStatus_7)); }
inline int32_t get_mStatus_7() const { return ___mStatus_7; }
inline int32_t* get_address_of_mStatus_7() { return &___mStatus_7; }
inline void set_mStatus_7(int32_t value)
{
___mStatus_7 = value;
}
inline static int32_t get_offset_of_mStatusInfo_8() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mStatusInfo_8)); }
inline int32_t get_mStatusInfo_8() const { return ___mStatusInfo_8; }
inline int32_t* get_address_of_mStatusInfo_8() { return &___mStatusInfo_8; }
inline void set_mStatusInfo_8(int32_t value)
{
___mStatusInfo_8 = value;
}
inline static int32_t get_offset_of_mTrackable_9() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mTrackable_9)); }
inline RuntimeObject* get_mTrackable_9() const { return ___mTrackable_9; }
inline RuntimeObject** get_address_of_mTrackable_9() { return &___mTrackable_9; }
inline void set_mTrackable_9(RuntimeObject* value)
{
___mTrackable_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mTrackable_9), (void*)value);
}
inline static int32_t get_offset_of_mStatusChangedEventHandlers_10() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mStatusChangedEventHandlers_10)); }
inline RuntimeObject* get_mStatusChangedEventHandlers_10() const { return ___mStatusChangedEventHandlers_10; }
inline RuntimeObject** get_address_of_mStatusChangedEventHandlers_10() { return &___mStatusChangedEventHandlers_10; }
inline void set_mStatusChangedEventHandlers_10(RuntimeObject* value)
{
___mStatusChangedEventHandlers_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mStatusChangedEventHandlers_10), (void*)value);
}
inline static int32_t get_offset_of_mStatusInfoChangedEventHandlers_11() { return static_cast<int32_t>(offsetof(TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4, ___mStatusInfoChangedEventHandlers_11)); }
inline RuntimeObject* get_mStatusInfoChangedEventHandlers_11() const { return ___mStatusInfoChangedEventHandlers_11; }
inline RuntimeObject** get_address_of_mStatusInfoChangedEventHandlers_11() { return &___mStatusInfoChangedEventHandlers_11; }
inline void set_mStatusInfoChangedEventHandlers_11(RuntimeObject* value)
{
___mStatusInfoChangedEventHandlers_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mStatusInfoChangedEventHandlers_11), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Renderer[]
struct RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF : public RuntimeArray
{
public:
ALIGN_FIELD (8) Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * m_Items[1];
public:
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Collider[]
struct ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * m_Items[1];
public:
inline Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Canvas[]
struct CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * m_Items[1];
public:
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Camera[]
struct CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * m_Items[1];
public:
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// !!0 UnityEngine.GameObject::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mE03C66715289D7957CA068A675826B7EE0887BE3_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mABA45A1E0D469C919BA3E91E52598F7CB38EDDE9_gshared (Action_1_tABA1E3BFA092E3309A0ECC53722E4F9826DCE983 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// !!0 UnityEngine.Resources::GetBuiltinResource<System.Object>(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Resources_GetBuiltinResource_TisRuntimeObject_m5459C3C01FC37D2596E5DD115105D9821FEF3599_gshared (String_t* ___path0, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m233A1E6EF90A3BA46CD83BFC568F4E4DB4D93CC9_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C_gshared (Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// !!0[] UnityEngine.Component::GetComponentsInChildren<System.Object>(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInChildren_TisRuntimeObject_m47600682044DD98895C5990A94AC982C05645DC3_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method);
// System.Void System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA0DB136328907462D816597CFACECD44D0324630_gshared (Action_2_t32F71E8647FE911B1610AEA4FAA030ECD601CA0F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.GL::PushMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_PushMatrix_mE47A23F3A906899E88AC525FFE2C3C2BD834DFF9 (const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Component::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// UnityEngine.Matrix4x4 UnityEngine.Transform::get_localToWorldMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA Transform_get_localToWorldMatrix_mBC86B8C7BA6F53DAB8E0120D77729166399A0EED (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GL::MultMatrix(UnityEngine.Matrix4x4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_MultMatrix_m1DFDF696AC702066E319BD72252B7D97E74F3753 (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.GameObject::CreatePrimitive(UnityEngine.PrimitiveType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * GameObject_CreatePrimitive_mA4D35085D817369E4A513FF31D745CEB27B07F6A (int32_t ___type0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.MeshRenderer>()
inline MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED * GameObject_GetComponent_TisMeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED_mFB43D5458906C4005145640D4396FDE5853AFA3A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mE03C66715289D7957CA068A675826B7EE0887BE3_gshared)(__this, method);
}
// UnityEngine.Material UnityEngine.Renderer::get_material()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * Renderer_get_material_m4434513446B652652CE9FD766B0E3D1D34C4A617 (Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Material::.ctor(UnityEngine.Material)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material__ctor_m0171C6D4D3FD04D58C70808F255DBA67D0ED2BDE (Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * __this, Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___source0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color::get_white()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905 (const RuntimeMethod* method);
// System.Void UnityEngine.Material::set_color(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material_set_color_m127EAC5D3CC68359E72D12A2B3CE7428EFBB81C3 (Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Object::Destroy(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_m23B4562495BA35A74266D4372D45368F8C05109A (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Material::SetPass(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Material_SetPass_m4BE0A8FCBF158C83522AA2F69118A2FE33683918 (Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * __this, int32_t ___pass0, const RuntimeMethod* method);
// System.Void UnityEngine.GL::Begin(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Begin_m9A48BD6A2DA850D54250EF638DF5EC61F83E293C (int32_t ___mode0, const RuntimeMethod* method);
// System.Void UnityEngine.GL::Vertex3(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E (float ___x0, float ___y1, float ___z2, const RuntimeMethod* method);
// System.Void UnityEngine.GL::End()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_End_m7EDEB843BD9F7E00BD838FDE074B4688C55C0755 (const RuntimeMethod* method);
// System.Void UnityEngine.GL::PopMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_PopMatrix_mCAA6BC17D97358A4BC329E789AF2CA26C1204112 (const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97 (MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * __this, const RuntimeMethod* method);
// System.Void DefaultInitializationErrorHandler::SetErrorCode(Vuforia.VuforiaUnity/InitError)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetErrorCode_m8D02B872B53162E5CEE1ABD461F59B4F1D642AFE (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, int32_t ___errorCode0, const RuntimeMethod* method);
// System.Void DefaultInitializationErrorHandler::SetErrorOccurred(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetErrorOccurred_m1C60E1BBE9B405868D52BD600246F46DF47B8578 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, bool ___errorOccurred0, const RuntimeMethod* method);
// Vuforia.VuforiaRuntime Vuforia.VuforiaRuntime::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * VuforiaRuntime_get_Instance_m09A801C6052F96463B0F330EE3F2453DFB329607 (const RuntimeMethod* method);
// System.Void System.Action`1<Vuforia.VuforiaUnity/InitError>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B (Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mABA45A1E0D469C919BA3E91E52598F7CB38EDDE9_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Vuforia.VuforiaRuntime::RegisterVuforiaInitErrorCallback(System.Action`1<Vuforia.VuforiaUnity/InitError>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VuforiaRuntime_RegisterVuforiaInitErrorCallback_mF7F4E380601A9B5EC0513D05D3C67BC3E2AB9F45 (VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * __this, Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * ___callback0, const RuntimeMethod* method);
// System.Void DefaultInitializationErrorHandler::SetupGUIStyles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetupGUIStyles_m95161DC5F2ECD9341D49F9AF35D11B36E3FBB8E7 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3 (const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150 (const RuntimeMethod* method);
// System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___x0, float ___y1, float ___width2, float ___height3, const RuntimeMethod* method);
// System.Void UnityEngine.GUI/WindowFunction::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WindowFunction__ctor_m216C357C45DF9A8ABE74056B8BDB1B7F94EE2D81 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// UnityEngine.Rect UnityEngine.GUI::Window(System.Int32,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE GUI_Window_mEB4F2621947A8A1140E495493A5B35DCF92E31C0 (int32_t ___id0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___clientRect1, WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * ___func2, String_t* ___text3, const RuntimeMethod* method);
// System.Void Vuforia.VuforiaRuntime::UnregisterVuforiaInitErrorCallback(System.Action`1<Vuforia.VuforiaUnity/InitError>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VuforiaRuntime_UnregisterVuforiaInitErrorCallback_m2FF760B1813004777AA834B7C5A6381F9AE3EFCE (VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * __this, Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * ___callback0, const RuntimeMethod* method);
// System.Void UnityEngine.GUI::Label(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_Label_m283D6B1DD970038379FBB974BC5A45F87CA727B6 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___position0, String_t* ___text1, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style2, const RuntimeMethod* method);
// System.Boolean UnityEngine.GUI::Button(UnityEngine.Rect,System.String,UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUI_Button_mC39C9F8426A10930825737A6D63B7C8DDF24748B (Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___position0, String_t* ___text1, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style2, const RuntimeMethod* method);
// System.Void UnityEngine.Application::Quit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_Quit_mA005EB22CB989AC3794334754F15E1C0D2FF1C95 (const RuntimeMethod* method);
// System.String DefaultInitializationErrorHandler::getKeyInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.String UnityEngine.Application::get_productName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_productName_m9F65580744751D3771DA955C0D947787F3F5E9A5 (const RuntimeMethod* method);
// System.String System.String::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470 (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29 (RuntimeObject * ___message0, const RuntimeMethod* method);
// Vuforia.VuforiaConfiguration Vuforia.VuforiaConfiguration::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * VuforiaConfiguration_get_Instance_mB41F218B6090038BBA15873FEB67D1132526914C (const RuntimeMethod* method);
// Vuforia.VuforiaConfiguration/GenericVuforiaConfiguration Vuforia.VuforiaConfiguration::get_Vuforia()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * VuforiaConfiguration_get_Vuforia_mAE9E228790390C66CF46E33B874B802D5AA8692D_inline (VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * __this, const RuntimeMethod* method);
// System.String Vuforia.VuforiaConfiguration/GenericVuforiaConfiguration::get_LicenseKey()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* GenericVuforiaConfiguration_get_LicenseKey_mCE40A450374E5C93A2248F96A3290A32C0C4209F_inline (GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * __this, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Single UnityEngine.Screen::get_dpi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3 (const RuntimeMethod* method);
// UnityEngine.Texture2D DefaultInitializationErrorHandler::CreateSinglePixelTexture(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color0, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::InverseLerp(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31 (float ___a0, float ___b1, float ___value2, const RuntimeMethod* method);
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369 (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, float ___r0, float ___g1, float ___b2, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::set_background(UnityEngine.Texture2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_background_m1BB0CD97092DE9CB40908A8061068D83FB2655AF (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.Resources::GetBuiltinResource<UnityEngine.Font>(System.String)
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * Resources_GetBuiltinResource_TisFont_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_m28D7ED0C35D5F51E2A61A4CA162B08923E0837D6 (String_t* ___path0, const RuntimeMethod* method)
{
return (( Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * (*) (String_t*, const RuntimeMethod*))Resources_GetBuiltinResource_TisRuntimeObject_m5459C3C01FC37D2596E5DD115105D9821FEF3599_gshared)(___path0, method);
}
// System.Void UnityEngine.GUIStyle::set_font(UnityEngine.Font)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_font_m348ACE92DE82C381C7AFE216029DB8D87F47E0A0 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_fontSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_fontSize_mA9F9F916A9BC3B81CFEE7460966FFD1E6B67F45F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color::get_black()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_get_black_mEB3C91F45F8AA7E4842238DFCC578BB322723DAF (const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::set_textColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_wordWrap(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_wordWrap_mB35DAD8BA109B812A2FCAED339BC5C6D7C3850C1 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_alignment(UnityEngine.TextAnchor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_alignment_m80647E2DCB359B9521A6D8D53EA457E2648488CF (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectOffset::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset__ctor_mF2A621DBA17A10660FEBE6237ACF4904DA6F9F29 (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, int32_t ___left0, int32_t ___right1, int32_t ___top2, int32_t ___bottom3, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_padding(UnityEngine.RectOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_padding_m125FFFE385BFA7D60E4D9D822053DE9508A7A465 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::.ctor(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle__ctor_m64098019A1065381E9909C513D3B8CA4617EF168 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___other0, const RuntimeMethod* method);
// System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Texture2D__ctor_m22561E039BC96019757E6B2427BE09734AE2C44A (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, int32_t ___width0, int32_t ___height1, int32_t ___textureFormat2, bool ___mipChain3, const RuntimeMethod* method);
// System.Void UnityEngine.Texture2D::SetPixel(System.Int32,System.Int32,UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Texture2D_SetPixel_m8BE87C152447B812D06CB894B3570269CC2DE7C3 (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, int32_t ___x0, int32_t ___y1, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color2, const RuntimeMethod* method);
// System.Void UnityEngine.Texture2D::Apply()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Texture2D_Apply_m0F3B4A4B1B89E44E2AF60ABDEFAA18D93735B5CA (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * __this, const RuntimeMethod* method);
// System.Void Vuforia.VuforiaMonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VuforiaMonoBehaviour__ctor_m72CCD53636BB4976FDD0807270A37B4C667A0940 (VuforiaMonoBehaviour_tF7F5C56A8081EC294AB1D066607A1BEE140F7F75 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<Vuforia.TrackableBehaviour>()
inline TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * Component_GetComponent_TisTrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4_m81E3785465C5B36522D217B045A33CD65B28B229 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m233A1E6EF90A3BA46CD83BFC568F4E4DB4D93CC9_gshared)(__this, method);
}
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___exists0, const RuntimeMethod* method);
// System.Void System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C (Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Vuforia.TrackableBehaviour::RegisterOnTrackableStatusChanged(System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableBehaviour_RegisterOnTrackableStatusChanged_m1ACBF9A14605696EBD1C40D2539645C995ECC2FC (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * ___onTrackableStatusChangedAction0, const RuntimeMethod* method);
// System.Boolean Vuforia.TrackableBehaviour::UnregisterOnTrackableStatusChanged(System.Action`1<Vuforia.TrackableBehaviour/StatusChangeResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableBehaviour_UnregisterOnTrackableStatusChanged_mB30D3A04D24411E61AE13AE194407E06F9A5461B (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * ___onTrackableStatusChangedAction0, const RuntimeMethod* method);
// System.String Vuforia.TrackableBehaviour::get_TrackableName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TrackableBehaviour_get_TrackableName_m04FE2B8C75F6E62F42C6121E61EFB7C3B6676835_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method);
// Vuforia.TrackableBehaviour/Status Vuforia.TrackableBehaviour::get_CurrentStatus()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TrackableBehaviour_get_CurrentStatus_m35788FFDD0156A5C132B5A88244867EE5471350B_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method);
// Vuforia.TrackableBehaviour/StatusInfo Vuforia.TrackableBehaviour::get_CurrentStatusInfo()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TrackableBehaviour_get_CurrentStatusInfo_mCA57BA40593B27965BCD47BC1D90EAF7090AB14A_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogFormat(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogFormat_mB23DDD2CD05B2E66F9CF8CA72ECA66C02DCC209E (String_t* ___format0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Boolean DefaultTrackableEventHandler::ShouldBeRendered(Vuforia.TrackableBehaviour/Status)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016 (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, int32_t ___status0, const RuntimeMethod* method);
// !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Renderer>(System.Boolean)
inline RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
return (( RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))Component_GetComponentsInChildren_TisRuntimeObject_m47600682044DD98895C5990A94AC982C05645DC3_gshared)(__this, ___includeInactive0, method);
}
// !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Collider>(System.Boolean)
inline ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
return (( ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))Component_GetComponentsInChildren_TisRuntimeObject_m47600682044DD98895C5990A94AC982C05645DC3_gshared)(__this, ___includeInactive0, method);
}
// !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Canvas>(System.Boolean)
inline CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, bool ___includeInactive0, const RuntimeMethod* method)
{
return (( CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, bool, const RuntimeMethod*))Component_GetComponentsInChildren_TisRuntimeObject_m47600682044DD98895C5990A94AC982C05645DC3_gshared)(__this, ___includeInactive0, method);
}
// System.Void UnityEngine.Renderer::set_enabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Renderer_set_enabled_m0933766657F2685BAAE3340B0A984C0E63925303 (Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Collider::set_enabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collider_set_enabled_mF84DE8B0C8CAF33ACDB7F29BC055D9C8CFACB57B (Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Behaviour::set_enabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B (Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_Invoke_mB2FA1C76256FE34D5E7F84ABE528AC61CE8A0325 (UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * __this, const RuntimeMethod* method);
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer::InitializeFacade()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeOpenSourceInitializer_InitializeFacade_m083BFFA22FEA65C77B01B5D9941BC9E7B68D17D2 (const RuntimeMethod* method);
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer/OpenSourceUnityRuntimeCompiledFacade::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OpenSourceUnityRuntimeCompiledFacade__ctor_m4A55808613D2E3EF63C75B3643F12AF23CE115AC (OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E * __this, const RuntimeMethod* method);
// System.Void Vuforia.UnityRuntimeCompiled.UnityRuntimeCompiledFacade::set_Instance(Vuforia.UnityRuntimeCompiled.IUnityRuntimeCompiledFacade)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityRuntimeCompiledFacade_set_Instance_mAD789CACB83D18D963C131AFDE2A29DE7B3D5E76_inline (RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD (const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_currentSelectedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer/UnityRenderPipeline::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline__ctor_mC0DC0A838D359359B81315037D4F5C3DF0300349 (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, const RuntimeMethod* method);
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Void System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[]>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m2D505D6723A1143CB5B6878A785D7C4187EB9FF8 (Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA0DB136328907462D816597CFACECD44D0324630_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.Rendering.RenderPipelineManager::add_beginFrameRendering(System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[]>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderPipelineManager_add_beginFrameRendering_mF9896552D7B492FBC22B0D1832C536C91E542B56 (Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 * ___value0, const RuntimeMethod* method);
// System.Void System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m64C09A67B27042FB46779DEC4CFC95C02C80BCA6 (Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA0DB136328907462D816597CFACECD44D0324630_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.Rendering.RenderPipelineManager::add_beginCameraRendering(System.Action`2<UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderPipelineManager_add_beginCameraRendering_m49A42A94633EDC2DDE0B2326AFB16648F3EA4655 (Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 * ___value0, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.Camera>::Invoke(!0)
inline void Action_1_Invoke_mE887C5799BA6B2E278F503E6CFC8959837C8282A (Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * __this, Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *, Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 *, const RuntimeMethod*))Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared)(__this, ___obj0, method);
}
// System.Void System.Action`1<UnityEngine.Camera[]>::Invoke(!0)
inline void Action_1_Invoke_m997E5172E3C900C1B0271D7635EF70333DCE91AD (Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * __this, CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *, CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9*, const RuntimeMethod*))Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared)(__this, ___obj0, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void BoundingBoxRenderer::OnRenderObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundingBoxRenderer_OnRenderObject_mDE8704583C66930554EFF367F283E18E4083B46C (BoundingBoxRenderer_t687A36FDD509AC21A29D0CF70359619EFD251AFB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BoundingBoxRenderer_OnRenderObject_mDE8704583C66930554EFF367F283E18E4083B46C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED * V_2 = NULL;
{
// GL.PushMatrix();
GL_PushMatrix_mE47A23F3A906899E88AC525FFE2C3C2BD834DFF9(/*hidden argument*/NULL);
// GL.MultMatrix(transform.localToWorldMatrix);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_0 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(__this, /*hidden argument*/NULL);
NullCheck(L_0);
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA L_1 = Transform_get_localToWorldMatrix_mBC86B8C7BA6F53DAB8E0120D77729166399A0EED(L_0, /*hidden argument*/NULL);
GL_MultMatrix_m1DFDF696AC702066E319BD72252B7D97E74F3753(L_1, /*hidden argument*/NULL);
// if (mLineMaterial == null)
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_2 = __this->get_mLineMaterial_4();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
V_0 = L_3;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0061;
}
}
{
// var tempObj = GameObject.CreatePrimitive(PrimitiveType.Cube);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = GameObject_CreatePrimitive_mA4D35085D817369E4A513FF31D745CEB27B07F6A(3, /*hidden argument*/NULL);
V_1 = L_5;
// var cubeRenderer = tempObj.GetComponent<MeshRenderer>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = V_1;
NullCheck(L_6);
MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED * L_7 = GameObject_GetComponent_TisMeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED_mFB43D5458906C4005145640D4396FDE5853AFA3A(L_6, /*hidden argument*/GameObject_GetComponent_TisMeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED_mFB43D5458906C4005145640D4396FDE5853AFA3A_RuntimeMethod_var);
V_2 = L_7;
// mLineMaterial = new Material(cubeRenderer.material);
MeshRenderer_t9D67CA54E83315F743623BDE8EADCD5074659EED * L_8 = V_2;
NullCheck(L_8);
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_9 = Renderer_get_material_m4434513446B652652CE9FD766B0E3D1D34C4A617(L_8, /*hidden argument*/NULL);
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_10 = (Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 *)il2cpp_codegen_object_new(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598_il2cpp_TypeInfo_var);
Material__ctor_m0171C6D4D3FD04D58C70808F255DBA67D0ED2BDE(L_10, L_9, /*hidden argument*/NULL);
__this->set_mLineMaterial_4(L_10);
// mLineMaterial.color = Color.white;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_11 = __this->get_mLineMaterial_4();
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_12 = Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905(/*hidden argument*/NULL);
NullCheck(L_11);
Material_set_color_m127EAC5D3CC68359E72D12A2B3CE7428EFBB81C3(L_11, L_12, /*hidden argument*/NULL);
// Destroy(tempObj);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_Destroy_m23B4562495BA35A74266D4372D45368F8C05109A(L_13, /*hidden argument*/NULL);
}
IL_0061:
{
// mLineMaterial.SetPass(0);
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_14 = __this->get_mLineMaterial_4();
NullCheck(L_14);
Material_SetPass_m4BE0A8FCBF158C83522AA2F69118A2FE33683918(L_14, 0, /*hidden argument*/NULL);
// mLineMaterial.color = Color.white;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * L_15 = __this->get_mLineMaterial_4();
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_16 = Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905(/*hidden argument*/NULL);
NullCheck(L_15);
Material_set_color_m127EAC5D3CC68359E72D12A2B3CE7428EFBB81C3(L_15, L_16, /*hidden argument*/NULL);
// GL.Begin(GL.LINES);
GL_Begin_m9A48BD6A2DA850D54250EF638DF5EC61F83E293C(1, /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3( 0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3( 0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, -0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, -0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (-0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, -0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (-0.5f), (0.5f), /*hidden argument*/NULL);
// GL.Vertex3(-0.5f, 0.5f, 0.5f);
GL_Vertex3_mE94809C1522CE96DF4C6CD218B1A26D5E60A114E((-0.5f), (0.5f), (0.5f), /*hidden argument*/NULL);
// GL.End();
GL_End_m7EDEB843BD9F7E00BD838FDE074B4688C55C0755(/*hidden argument*/NULL);
// GL.PopMatrix();
GL_PopMatrix_mCAA6BC17D97358A4BC329E789AF2CA26C1204112(/*hidden argument*/NULL);
// }
return;
}
}
// System.Void BoundingBoxRenderer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundingBoxRenderer__ctor_m54B609CFA7E249CDA58761AF3BC6C79337EF0FEB (BoundingBoxRenderer_t687A36FDD509AC21A29D0CF70359619EFD251AFB * __this, const RuntimeMethod* method)
{
{
// private Material mLineMaterial = null;
__this->set_mLineMaterial_4((Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 *)NULL);
MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void DefaultInitializationErrorHandler::OnVuforiaInitializationError(Vuforia.VuforiaUnity_InitError)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_OnVuforiaInitializationError_m0F4B53613340C11BADBE8E7FADA57096A43F30C0 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, int32_t ___initError0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (initError != VuforiaUnity.InitError.INIT_SUCCESS)
int32_t L_0 = ___initError0;
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)((int32_t)100)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001f;
}
}
{
// SetErrorCode(initError);
int32_t L_2 = ___initError0;
DefaultInitializationErrorHandler_SetErrorCode_m8D02B872B53162E5CEE1ABD461F59B4F1D642AFE(__this, L_2, /*hidden argument*/NULL);
// SetErrorOccurred(true);
DefaultInitializationErrorHandler_SetErrorOccurred_m1C60E1BBE9B405868D52BD600246F46DF47B8578(__this, (bool)1, /*hidden argument*/NULL);
}
IL_001f:
{
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_Awake_mC462A9A2FF6999FAD58B36658BA7F5F4CFEA2885 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_Awake_mC462A9A2FF6999FAD58B36658BA7F5F4CFEA2885_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// VuforiaRuntime.Instance.RegisterVuforiaInitErrorCallback(OnVuforiaInitializationError);
IL2CPP_RUNTIME_CLASS_INIT(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_il2cpp_TypeInfo_var);
VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * L_0 = VuforiaRuntime_get_Instance_m09A801C6052F96463B0F330EE3F2453DFB329607(/*hidden argument*/NULL);
Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * L_1 = (Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD *)il2cpp_codegen_object_new(Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD_il2cpp_TypeInfo_var);
Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B(L_1, __this, (intptr_t)((intptr_t)DefaultInitializationErrorHandler_OnVuforiaInitializationError_m0F4B53613340C11BADBE8E7FADA57096A43F30C0_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B_RuntimeMethod_var);
NullCheck(L_0);
VuforiaRuntime_RegisterVuforiaInitErrorCallback_mF7F4E380601A9B5EC0513D05D3C67BC3E2AB9F45(L_0, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_Start_m1981DCC87B96E05271901E52DE67CDC113757383 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
{
// SetupGUIStyles();
DefaultInitializationErrorHandler_SetupGUIStyles_m95161DC5F2ECD9341D49F9AF35D11B36E3FBB8E7(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::OnGUI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_OnGUI_m0BCBF01D8F93A0D5810B96D01A3C357333ED1305 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_OnGUI_m0BCBF01D8F93A0D5810B96D01A3C357333ED1305_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (mErrorOccurred)
bool L_0 = __this->get_mErrorOccurred_5();
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_003e;
}
}
{
// GUI.Window(0, new Rect(0, 0, Screen.width, Screen.height), DrawWindowContent, "");
int32_t L_2 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_3 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_4;
memset((&L_4), 0, sizeof(L_4));
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((&L_4), (0.0f), (0.0f), (((float)((float)L_2))), (((float)((float)L_3))), /*hidden argument*/NULL);
WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * L_5 = (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 *)il2cpp_codegen_object_new(WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100_il2cpp_TypeInfo_var);
WindowFunction__ctor_m216C357C45DF9A8ABE74056B8BDB1B7F94EE2D81(L_5, __this, (intptr_t)((intptr_t)DefaultInitializationErrorHandler_DrawWindowContent_m114AFA0267557CA2520A32E85061A4BB09F04978_RuntimeMethod_var), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_Window_mEB4F2621947A8A1140E495493A5B35DCF92E31C0(0, L_4, L_5, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
}
IL_003e:
{
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::OnDestroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_OnDestroy_m788237090CDF21C5258502222D398EFC4F0A09FF (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_OnDestroy_m788237090CDF21C5258502222D398EFC4F0A09FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// VuforiaRuntime.Instance.UnregisterVuforiaInitErrorCallback(OnVuforiaInitializationError);
IL2CPP_RUNTIME_CLASS_INIT(VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D_il2cpp_TypeInfo_var);
VuforiaRuntime_t12D46DC6B127017866AA832739B2B22B0612DC1D * L_0 = VuforiaRuntime_get_Instance_m09A801C6052F96463B0F330EE3F2453DFB329607(/*hidden argument*/NULL);
Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD * L_1 = (Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD *)il2cpp_codegen_object_new(Action_1_t998FA6BF20F5FA561589835D396749D5113B03CD_il2cpp_TypeInfo_var);
Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B(L_1, __this, (intptr_t)((intptr_t)DefaultInitializationErrorHandler_OnVuforiaInitializationError_m0F4B53613340C11BADBE8E7FADA57096A43F30C0_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m87CD166689B2817AA72F94D205580418BB7DF29B_RuntimeMethod_var);
NullCheck(L_0);
VuforiaRuntime_UnregisterVuforiaInitErrorCallback_m2FF760B1813004777AA834B7C5A6381F9AE3EFCE(L_0, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::DrawWindowContent(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_DrawWindowContent_m114AFA0267557CA2520A32E85061A4BB09F04978 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, int32_t ___id0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_DrawWindowContent_m114AFA0267557CA2520A32E85061A4BB09F04978_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_0;
memset((&V_0), 0, sizeof(V_0));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_1;
memset((&V_1), 0, sizeof(V_1));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
{
// var headerRect = new Rect(0, 0, Screen.width, Screen.height / 8);
int32_t L_0 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_1 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), (0.0f), (0.0f), (((float)((float)L_0))), (((float)((float)((int32_t)((int32_t)L_1/(int32_t)8))))), /*hidden argument*/NULL);
// var bodyRect = new Rect(0, Screen.height / 8, Screen.width, Screen.height / 8 * 6);
int32_t L_2 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
int32_t L_3 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_4 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_1), (0.0f), (((float)((float)((int32_t)((int32_t)L_2/(int32_t)8))))), (((float)((float)L_3))), (((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_4/(int32_t)8)), (int32_t)6))))), /*hidden argument*/NULL);
// var footerRect = new Rect(0, Screen.height - Screen.height / 8, Screen.width, Screen.height / 8);
int32_t L_5 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
int32_t L_6 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
int32_t L_7 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_8 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_2), (0.0f), (((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)((int32_t)L_6/(int32_t)8))))))), (((float)((float)L_7))), (((float)((float)((int32_t)((int32_t)L_8/(int32_t)8))))), /*hidden argument*/NULL);
// GUI.Label(headerRect, headerLabel, headerStyle);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_9 = V_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_10 = __this->get_headerStyle_8();
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_Label_m283D6B1DD970038379FBB974BC5A45F87CA727B6(L_9, _stringLiteral0049CC276AF37EC0DC4660402BB85EF930E7DA7F, L_10, /*hidden argument*/NULL);
// GUI.Label(bodyRect, mErrorText, bodyStyle);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_11 = V_1;
String_t* L_12 = __this->get_mErrorText_4();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_13 = __this->get_bodyStyle_7();
GUI_Label_m283D6B1DD970038379FBB974BC5A45F87CA727B6(L_11, L_12, L_13, /*hidden argument*/NULL);
// if (GUI.Button(footerRect, "Close", footerStyle))
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_14 = V_2;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_15 = __this->get_footerStyle_9();
bool L_16 = GUI_Button_mC39C9F8426A10930825737A6D63B7C8DDF24748B(L_14, _stringLiteralBBFA773E5A63A5EA58C9B6207E608CA0120E592A, L_15, /*hidden argument*/NULL);
V_3 = L_16;
bool L_17 = V_3;
if (!L_17)
{
goto IL_00ae;
}
}
{
// Application.Quit();
Application_Quit_mA005EB22CB989AC3794334754F15E1C0D2FF1C95(/*hidden argument*/NULL);
}
IL_00ae:
{
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::SetErrorCode(Vuforia.VuforiaUnity_InitError)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetErrorCode_m8D02B872B53162E5CEE1ABD461F59B4F1D642AFE (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, int32_t ___errorCode0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_SetErrorCode_m8D02B872B53162E5CEE1ABD461F59B4F1D642AFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
// switch (errorCode)
int32_t L_0 = ___errorCode0;
V_1 = L_0;
int32_t L_1 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)-10))))
{
case 0:
{
goto IL_0039;
}
case 1:
{
goto IL_00a6;
}
case 2:
{
goto IL_008e;
}
case 3:
{
goto IL_0074;
}
case 4:
{
goto IL_0081;
}
case 5:
{
goto IL_0059;
}
case 6:
{
goto IL_0049;
}
case 7:
{
goto IL_00c3;
}
case 8:
{
goto IL_00df;
}
case 9:
{
goto IL_00ec;
}
}
}
{
goto IL_00f9;
}
IL_0039:
{
// mErrorText =
// "Failed to initialize the Vuforia Engine because this " +
// "device is not docked with required external hardware.";
__this->set_mErrorText_4(_stringLiteralF0069E5A5B01320A0272820D95849D17CA9E7BAE);
// break;
goto IL_00f9;
}
IL_0049:
{
// mErrorText =
// "Vuforia Engine App key is missing. Please get a valid key " +
// "by logging into your account at developer.vuforia.com " +
// "and creating a new project.";
__this->set_mErrorText_4(_stringLiteral5A187E91D3F02EC741DFB98FC6C73DAAF9DBB023);
// break;
goto IL_00f9;
}
IL_0059:
{
// mErrorText =
// "Vuforia Engine App key is invalid. " +
// "Please get a valid key by logging into your account at " +
// "developer.vuforia.com and creating a new project. \n\n" +
// getKeyInfo();
String_t* L_2 = DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC(__this, /*hidden argument*/NULL);
String_t* L_3 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralFA323761E549CD8DEB8C83797B725C220D84F261, L_2, /*hidden argument*/NULL);
__this->set_mErrorText_4(L_3);
// break;
goto IL_00f9;
}
IL_0074:
{
// mErrorText = "Unable to contact server. Please try again later.";
__this->set_mErrorText_4(_stringLiteral368855C3B48C6461C105F7AA11EBE1FD792BE6BF);
// break;
goto IL_00f9;
}
IL_0081:
{
// mErrorText = "No network available. Please make sure you are connected to the Internet.";
__this->set_mErrorText_4(_stringLiteralEF377B931B216AE61345F4D7136A8873D40DCB6B);
// break;
goto IL_00f9;
}
IL_008e:
{
// mErrorText =
// "This App license key has been cancelled and may no longer be used. " +
// "Please get a new license key. \n\n" +
// getKeyInfo();
String_t* L_4 = DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC(__this, /*hidden argument*/NULL);
String_t* L_5 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral4C8A375D0F1708E37C1F10C81E8A8EADDCF1422F, L_4, /*hidden argument*/NULL);
__this->set_mErrorText_4(L_5);
// break;
goto IL_00f9;
}
IL_00a6:
{
// mErrorText =
// "Vuforia Engine App key is not valid for this product. Please get a valid key " +
// "by logging into your account at developer.vuforia.com and choosing the " +
// "right product type during project creation. \n\n" +
// getKeyInfo() + " \n\n" +
// "Note that Universal Windows Platform (UWP) apps require " +
// "a license key created on or after August 9th, 2016.";
String_t* L_6 = DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC(__this, /*hidden argument*/NULL);
String_t* L_7 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralD56CC950FC69A94976F20D9F0707460863B34898, L_6, _stringLiteralE1A26226E225524718652DAB2A25B6F6ED567B4E, /*hidden argument*/NULL);
__this->set_mErrorText_4(L_7);
// break;
goto IL_00f9;
}
IL_00c3:
{
// mErrorText =
// "User denied Camera access to this app.\n" +
// "To restore, enable Camera access in Settings:\n" +
// "Settings > Privacy > Camera > " + Application.productName + "\n" +
// "Also verify that the Camera is enabled in:\n" +
// "Settings > General > Restrictions.";
String_t* L_8 = Application_get_productName_m9F65580744751D3771DA955C0D947787F3F5E9A5(/*hidden argument*/NULL);
String_t* L_9 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralF20D8C26DA74DE4466E64B5213AE19C080FADD5E, L_8, _stringLiteralA5C50226661674EB4C0B1740C606FA2451271989, /*hidden argument*/NULL);
__this->set_mErrorText_4(L_9);
// break;
goto IL_00f9;
}
IL_00df:
{
// mErrorText = "Failed to initialize Vuforia Engine because this device is not supported.";
__this->set_mErrorText_4(_stringLiteral0CB1FE567326D29F5946A5B648199591A4620539);
// break;
goto IL_00f9;
}
IL_00ec:
{
// mErrorText = "Failed to initialize Vuforia Engine.";
__this->set_mErrorText_4(_stringLiteral463AEBF964605A060C143944B09AB6F45BA4D8BF);
// break;
goto IL_00f9;
}
IL_00f9:
{
// mErrorText = "<color=red>" + errorCode.ToString().Replace("_", " ") + "</color>\n\n" + mErrorText;
RuntimeObject * L_10 = Box(InitError_t486F7D53F5B0B7943D4E22BE2D32F4913D4A0431_il2cpp_TypeInfo_var, (&___errorCode0));
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
___errorCode0 = *(int32_t*)UnBox(L_10);
NullCheck(L_11);
String_t* L_12 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_11, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
String_t* L_13 = __this->get_mErrorText_4();
String_t* L_14 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral1561AEF8B532C2B1664689CD3DEB85C31F3B9692, L_12, _stringLiteralDADF5911397D06A03A60E28AE30A0F473FE2B810, L_13, /*hidden argument*/NULL);
__this->set_mErrorText_4(L_14);
// var errorTextConsole = mErrorText.Replace("<color=red>", "").Replace("</color>", "");
String_t* L_15 = __this->get_mErrorText_4();
NullCheck(L_15);
String_t* L_16 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_15, _stringLiteral1561AEF8B532C2B1664689CD3DEB85C31F3B9692, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
NullCheck(L_16);
String_t* L_17 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_16, _stringLiteral7AB1A22C152A21E59C89CBA73DA7DCB91237992A, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
V_0 = L_17;
// Debug.LogError("Vuforia Engine initialization failed: " + errorCode + "\n\n" + errorTextConsole);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteral4BACB2BC0DE4E962B29B5436C04D5785D4E912DD);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral4BACB2BC0DE4E962B29B5436C04D5785D4E912DD);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
int32_t L_21 = ___errorCode0;
int32_t L_22 = L_21;
RuntimeObject * L_23 = Box(InitError_t486F7D53F5B0B7943D4E22BE2D32F4913D4A0431_il2cpp_TypeInfo_var, &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_23);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_20;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, _stringLiteral71853C6197A6A7F222DB0F1978C7CB232B87C5EE);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral71853C6197A6A7F222DB0F1978C7CB232B87C5EE);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_24;
String_t* L_26 = V_0;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_26);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_26);
String_t* L_27 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_25, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_27, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void DefaultInitializationErrorHandler::SetErrorOccurred(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetErrorOccurred_m1C60E1BBE9B405868D52BD600246F46DF47B8578 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, bool ___errorOccurred0, const RuntimeMethod* method)
{
{
// mErrorOccurred = errorOccurred;
bool L_0 = ___errorOccurred0;
__this->set_mErrorOccurred_5(L_0);
// }
return;
}
}
// System.String DefaultInitializationErrorHandler::getKeyInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_getKeyInfo_m2810070CDC373FC5667406EA32A1B060E067E2DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
String_t* V_3 = NULL;
{
// string key = VuforiaConfiguration.Instance.Vuforia.LicenseKey;
IL2CPP_RUNTIME_CLASS_INIT(VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82_il2cpp_TypeInfo_var);
VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * L_0 = VuforiaConfiguration_get_Instance_mB41F218B6090038BBA15873FEB67D1132526914C(/*hidden argument*/NULL);
NullCheck(L_0);
GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * L_1 = VuforiaConfiguration_get_Vuforia_mAE9E228790390C66CF46E33B874B802D5AA8692D_inline(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = GenericVuforiaConfiguration_get_LicenseKey_mCE40A450374E5C93A2248F96A3290A32C0C4209F_inline(L_1, /*hidden argument*/NULL);
V_0 = L_2;
// if (key.Length > 10)
String_t* L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
V_2 = (bool)((((int32_t)L_4) > ((int32_t)((int32_t)10)))? 1 : 0);
bool L_5 = V_2;
if (!L_5)
{
goto IL_0078;
}
}
{
// keyInfo =
// "Your current key is <color=red>" + key.Length + "</color> characters in length. " +
// "It begins with <color=red>" + key.Substring(0, 5) + "</color> " +
// "and ends with <color=red>" + key.Substring(key.Length - 5, 5) + "</color>.";
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral55B91F52D8FEC72F2D5BBC45A4C7444CF770FBBD);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral55B91F52D8FEC72F2D5BBC45A4C7444CF770FBBD);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7;
String_t* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_12);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_8;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral044603D8671032519EBDE55C39570454D34DA7EF);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral044603D8671032519EBDE55C39570454D34DA7EF);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
String_t* L_15 = V_0;
NullCheck(L_15);
String_t* L_16 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_15, 0, 5, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_14;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral661EA0491F0E7BED843FF5C5C2C407A8494948C2);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral661EA0491F0E7BED843FF5C5C2C407A8494948C2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17;
String_t* L_19 = V_0;
String_t* L_20 = V_0;
NullCheck(L_20);
int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_20, /*hidden argument*/NULL);
NullCheck(L_19);
String_t* L_22 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_19, ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)5)), 5, /*hidden argument*/NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_22);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_22);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_18;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral3A2524B609E886EDA2270A78B1F1D5DF105A613E);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteral3A2524B609E886EDA2270A78B1F1D5DF105A613E);
String_t* L_24 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_23, /*hidden argument*/NULL);
V_1 = L_24;
goto IL_00ae;
}
IL_0078:
{
// keyInfo =
// "Your current key is <color=red>" + key.Length + "</color> characters in length. \n" +
// "The key is: <color=red>" + key + "</color>.";
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_25;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral55B91F52D8FEC72F2D5BBC45A4C7444CF770FBBD);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral55B91F52D8FEC72F2D5BBC45A4C7444CF770FBBD);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = L_26;
String_t* L_28 = V_0;
NullCheck(L_28);
int32_t L_29 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_28, /*hidden argument*/NULL);
int32_t L_30 = L_29;
RuntimeObject * L_31 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_30);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_31);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_31);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = L_27;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, _stringLiteralE9D15606A3059B500ED24D58BAEE69DD511A6EC2);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralE9D15606A3059B500ED24D58BAEE69DD511A6EC2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_32;
String_t* L_34 = V_0;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_34);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_33;
NullCheck(L_35);
ArrayElementTypeCheck (L_35, _stringLiteral3A2524B609E886EDA2270A78B1F1D5DF105A613E);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral3A2524B609E886EDA2270A78B1F1D5DF105A613E);
String_t* L_36 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_35, /*hidden argument*/NULL);
V_1 = L_36;
}
IL_00ae:
{
// return keyInfo;
String_t* L_37 = V_1;
V_3 = L_37;
goto IL_00b2;
}
IL_00b2:
{
// }
String_t* L_38 = V_3;
return L_38;
}
}
// System.Void DefaultInitializationErrorHandler::SetupGUIStyles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler_SetupGUIStyles_m95161DC5F2ECD9341D49F9AF35D11B36E3FBB8E7 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_SetupGUIStyles_m95161DC5F2ECD9341D49F9AF35D11B36E3FBB8E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
float V_1 = 0.0f;
int32_t V_2 = 0;
int32_t G_B3_0 = 0;
int32_t G_B6_0 = 0;
{
// var shortSidePixels = Screen.width < Screen.height ? Screen.width : Screen.height;
int32_t L_0 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_1 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
int32_t L_2 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_0019;
}
IL_0014:
{
int32_t L_3 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
G_B3_0 = L_3;
}
IL_0019:
{
V_0 = G_B3_0;
// var shortSideInches = shortSidePixels / Screen.dpi;
int32_t L_4 = V_0;
float L_5 = Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3(/*hidden argument*/NULL);
V_1 = ((float)((float)(((float)((float)L_4)))/(float)L_5));
// var physicalSizeMultiplier = shortSideInches > 4.0f ? 2 : 1;
float L_6 = V_1;
if ((((float)L_6) > ((float)(4.0f))))
{
goto IL_002e;
}
}
{
G_B6_0 = 1;
goto IL_002f;
}
IL_002e:
{
G_B6_0 = 2;
}
IL_002f:
{
V_2 = G_B6_0;
// bodyTexture = CreateSinglePixelTexture(Color.white);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_7 = Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905(/*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_8 = DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6(__this, L_7, /*hidden argument*/NULL);
__this->set_bodyTexture_10(L_8);
// headerTexture = CreateSinglePixelTexture(new Color(
// Mathf.InverseLerp(0, 255, 220),
// Mathf.InverseLerp(0, 255, 220),
// Mathf.InverseLerp(0, 255, 220))); // RGB(220)
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_9 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (220.0f), /*hidden argument*/NULL);
float L_10 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (220.0f), /*hidden argument*/NULL);
float L_11 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (220.0f), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_12;
memset((&L_12), 0, sizeof(L_12));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_12), L_9, L_10, L_11, /*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_13 = DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6(__this, L_12, /*hidden argument*/NULL);
__this->set_headerTexture_11(L_13);
// footerTexture = CreateSinglePixelTexture(new Color(
// Mathf.InverseLerp(0, 255, 35),
// Mathf.InverseLerp(0, 255, 178),
// Mathf.InverseLerp(0, 255, 0))); // RGB(35,178,0)
float L_14 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (35.0f), /*hidden argument*/NULL);
float L_15 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (178.0f), /*hidden argument*/NULL);
float L_16 = Mathf_InverseLerp_m7054CDF25056E9B27D2467F91C95D628508F1F31((0.0f), (255.0f), (0.0f), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_17;
memset((&L_17), 0, sizeof(L_17));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_17), L_14, L_15, L_16, /*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_18 = DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6(__this, L_17, /*hidden argument*/NULL);
__this->set_footerTexture_12(L_18);
// bodyStyle = new GUIStyle();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_19 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_19, /*hidden argument*/NULL);
__this->set_bodyStyle_7(L_19);
// bodyStyle.normal.background = bodyTexture;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_20 = __this->get_bodyStyle_7();
NullCheck(L_20);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_21 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_20, /*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_22 = __this->get_bodyTexture_10();
NullCheck(L_21);
GUIStyleState_set_background_m1BB0CD97092DE9CB40908A8061068D83FB2655AF(L_21, L_22, /*hidden argument*/NULL);
// bodyStyle.font = Resources.GetBuiltinResource<Font>("Arial.ttf");
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_23 = __this->get_bodyStyle_7();
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_24 = Resources_GetBuiltinResource_TisFont_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_m28D7ED0C35D5F51E2A61A4CA162B08923E0837D6(_stringLiteralAD01E3847AA5918933113DC21A22AF4AD31DD4B7, /*hidden argument*/Resources_GetBuiltinResource_TisFont_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_m28D7ED0C35D5F51E2A61A4CA162B08923E0837D6_RuntimeMethod_var);
NullCheck(L_23);
GUIStyle_set_font_m348ACE92DE82C381C7AFE216029DB8D87F47E0A0(L_23, L_24, /*hidden argument*/NULL);
// bodyStyle.fontSize = (int) (18 * physicalSizeMultiplier * Screen.dpi / 160);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_25 = __this->get_bodyStyle_7();
int32_t L_26 = V_2;
float L_27 = Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3(/*hidden argument*/NULL);
NullCheck(L_25);
GUIStyle_set_fontSize_mA9F9F916A9BC3B81CFEE7460966FFD1E6B67F45F(L_25, (((int32_t)((int32_t)((float)((float)((float)il2cpp_codegen_multiply((float)(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)18), (int32_t)L_26))))), (float)L_27))/(float)(160.0f)))))), /*hidden argument*/NULL);
// bodyStyle.normal.textColor = Color.black;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_28 = __this->get_bodyStyle_7();
NullCheck(L_28);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_29 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_28, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_30 = Color_get_black_mEB3C91F45F8AA7E4842238DFCC578BB322723DAF(/*hidden argument*/NULL);
NullCheck(L_29);
GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983(L_29, L_30, /*hidden argument*/NULL);
// bodyStyle.wordWrap = true;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_31 = __this->get_bodyStyle_7();
NullCheck(L_31);
GUIStyle_set_wordWrap_mB35DAD8BA109B812A2FCAED339BC5C6D7C3850C1(L_31, (bool)1, /*hidden argument*/NULL);
// bodyStyle.alignment = TextAnchor.MiddleCenter;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_32 = __this->get_bodyStyle_7();
NullCheck(L_32);
GUIStyle_set_alignment_m80647E2DCB359B9521A6D8D53EA457E2648488CF(L_32, 4, /*hidden argument*/NULL);
// bodyStyle.padding = new RectOffset(40, 40, 0, 0);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_33 = __this->get_bodyStyle_7();
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_34 = (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A *)il2cpp_codegen_object_new(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_il2cpp_TypeInfo_var);
RectOffset__ctor_mF2A621DBA17A10660FEBE6237ACF4904DA6F9F29(L_34, ((int32_t)40), ((int32_t)40), 0, 0, /*hidden argument*/NULL);
NullCheck(L_33);
GUIStyle_set_padding_m125FFFE385BFA7D60E4D9D822053DE9508A7A465(L_33, L_34, /*hidden argument*/NULL);
// headerStyle = new GUIStyle(bodyStyle);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_35 = __this->get_bodyStyle_7();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_36 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m64098019A1065381E9909C513D3B8CA4617EF168(L_36, L_35, /*hidden argument*/NULL);
__this->set_headerStyle_8(L_36);
// headerStyle.normal.background = headerTexture;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_37 = __this->get_headerStyle_8();
NullCheck(L_37);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_38 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_37, /*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_39 = __this->get_headerTexture_11();
NullCheck(L_38);
GUIStyleState_set_background_m1BB0CD97092DE9CB40908A8061068D83FB2655AF(L_38, L_39, /*hidden argument*/NULL);
// headerStyle.fontSize = (int) (24 * physicalSizeMultiplier * Screen.dpi / 160);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_40 = __this->get_headerStyle_8();
int32_t L_41 = V_2;
float L_42 = Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3(/*hidden argument*/NULL);
NullCheck(L_40);
GUIStyle_set_fontSize_mA9F9F916A9BC3B81CFEE7460966FFD1E6B67F45F(L_40, (((int32_t)((int32_t)((float)((float)((float)il2cpp_codegen_multiply((float)(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)24), (int32_t)L_41))))), (float)L_42))/(float)(160.0f)))))), /*hidden argument*/NULL);
// footerStyle = new GUIStyle(bodyStyle);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_43 = __this->get_bodyStyle_7();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_44 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m64098019A1065381E9909C513D3B8CA4617EF168(L_44, L_43, /*hidden argument*/NULL);
__this->set_footerStyle_9(L_44);
// footerStyle.normal.background = footerTexture;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_45 = __this->get_footerStyle_9();
NullCheck(L_45);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_46 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_45, /*hidden argument*/NULL);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_47 = __this->get_footerTexture_12();
NullCheck(L_46);
GUIStyleState_set_background_m1BB0CD97092DE9CB40908A8061068D83FB2655AF(L_46, L_47, /*hidden argument*/NULL);
// footerStyle.normal.textColor = Color.white;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_48 = __this->get_footerStyle_9();
NullCheck(L_48);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_49 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_48, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_50 = Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905(/*hidden argument*/NULL);
NullCheck(L_49);
GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983(L_49, L_50, /*hidden argument*/NULL);
// footerStyle.fontSize = (int) (28 * physicalSizeMultiplier * Screen.dpi / 160);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_51 = __this->get_footerStyle_9();
int32_t L_52 = V_2;
float L_53 = Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3(/*hidden argument*/NULL);
NullCheck(L_51);
GUIStyle_set_fontSize_mA9F9F916A9BC3B81CFEE7460966FFD1E6B67F45F(L_51, (((int32_t)((int32_t)((float)((float)((float)il2cpp_codegen_multiply((float)(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)28), (int32_t)L_52))))), (float)L_53))/(float)(160.0f)))))), /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.Texture2D DefaultInitializationErrorHandler::CreateSinglePixelTexture(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler_CreateSinglePixelTexture_m314E1B3B003A6F0253FD1A13070B93BCE6415AD6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * V_0 = NULL;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * V_1 = NULL;
{
// var texture = new Texture2D(1, 1, TextureFormat.ARGB32, false);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_0 = (Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C *)il2cpp_codegen_object_new(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C_il2cpp_TypeInfo_var);
Texture2D__ctor_m22561E039BC96019757E6B2427BE09734AE2C44A(L_0, 1, 1, 5, (bool)0, /*hidden argument*/NULL);
V_0 = L_0;
// texture.SetPixel(0, 0, color);
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_1 = V_0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_2 = ___color0;
NullCheck(L_1);
Texture2D_SetPixel_m8BE87C152447B812D06CB894B3570269CC2DE7C3(L_1, 0, 0, L_2, /*hidden argument*/NULL);
// texture.Apply();
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_3 = V_0;
NullCheck(L_3);
Texture2D_Apply_m0F3B4A4B1B89E44E2AF60ABDEFAA18D93735B5CA(L_3, /*hidden argument*/NULL);
// return texture;
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_4 = V_0;
V_1 = L_4;
goto IL_0020;
}
IL_0020:
{
// }
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * L_5 = V_1;
return L_5;
}
}
// System.Void DefaultInitializationErrorHandler::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultInitializationErrorHandler__ctor_m63E4F5C46CEF6A1D36DB1999995CFAF271895876 (DefaultInitializationErrorHandler_t7C0EE05C3D7BF5C7A141BC322D2F0B950B101D38 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultInitializationErrorHandler__ctor_m63E4F5C46CEF6A1D36DB1999995CFAF271895876_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// string mErrorText = "";
__this->set_mErrorText_4(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
VuforiaMonoBehaviour__ctor_m72CCD53636BB4976FDD0807270A37B4C667A0940(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void DefaultTrackableEventHandler::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_Start_mF3B83475AAE698302E8A037B49DA2297894216DE (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultTrackableEventHandler_Start_mF3B83475AAE698302E8A037B49DA2297894216DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// mTrackableBehaviour = GetComponent<TrackableBehaviour>();
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_0 = Component_GetComponent_TisTrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4_m81E3785465C5B36522D217B045A33CD65B28B229(__this, /*hidden argument*/Component_GetComponent_TisTrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4_m81E3785465C5B36522D217B045A33CD65B28B229_RuntimeMethod_var);
__this->set_mTrackableBehaviour_7(L_0);
// if (mTrackableBehaviour)
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_1 = __this->get_mTrackableBehaviour_7();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_1, /*hidden argument*/NULL);
V_0 = L_2;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0036;
}
}
{
// mTrackableBehaviour.RegisterOnTrackableStatusChanged(OnTrackableStatusChanged);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_4 = __this->get_mTrackableBehaviour_7();
Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * L_5 = (Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C *)il2cpp_codegen_object_new(Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C_il2cpp_TypeInfo_var);
Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C(L_5, __this, (intptr_t)((intptr_t)DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C_RuntimeMethod_var);
NullCheck(L_4);
TrackableBehaviour_RegisterOnTrackableStatusChanged_m1ACBF9A14605696EBD1C40D2539645C995ECC2FC(L_4, L_5, /*hidden argument*/NULL);
}
IL_0036:
{
// }
return;
}
}
// System.Void DefaultTrackableEventHandler::OnDestroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_OnDestroy_m5E62349849150C8A7D3805322622A958505710AC (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultTrackableEventHandler_OnDestroy_m5E62349849150C8A7D3805322622A958505710AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (mTrackableBehaviour)
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_0 = __this->get_mTrackableBehaviour_7();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002a;
}
}
{
// mTrackableBehaviour.UnregisterOnTrackableStatusChanged(OnTrackableStatusChanged);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_3 = __this->get_mTrackableBehaviour_7();
Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C * L_4 = (Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C *)il2cpp_codegen_object_new(Action_1_tC1665C34A5AFA06FE50136154D05E87F6E61011C_il2cpp_TypeInfo_var);
Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C(L_4, __this, (intptr_t)((intptr_t)DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m6239C5C309E8A57721CD442304F25477703B572C_RuntimeMethod_var);
NullCheck(L_3);
TrackableBehaviour_UnregisterOnTrackableStatusChanged_mB30D3A04D24411E61AE13AE194407E06F9A5461B(L_3, L_4, /*hidden argument*/NULL);
}
IL_002a:
{
// }
return;
}
}
// System.Void DefaultTrackableEventHandler::OnTrackableStatusChanged(Vuforia.TrackableBehaviour_StatusChangeResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397 (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD ___statusChangeResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultTrackableEventHandler_OnTrackableStatusChanged_mD0151888A5964EC20FE420CBFDD44825E8D41397_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_PreviousStatus = statusChangeResult.PreviousStatus;
StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD L_0 = ___statusChangeResult0;
int32_t L_1 = L_0.get_PreviousStatus_0();
__this->set_m_PreviousStatus_8(L_1);
// m_NewStatus = statusChangeResult.NewStatus;
StatusChangeResult_t26BCCB9FD43A87C976F92CB50CF2E129F16248FD L_2 = ___statusChangeResult0;
int32_t L_3 = L_2.get_NewStatus_1();
__this->set_m_NewStatus_9(L_3);
// Debug.LogFormat("Trackable {0} {1} -- {2}",
// mTrackableBehaviour.TrackableName,
// mTrackableBehaviour.CurrentStatus,
// mTrackableBehaviour.CurrentStatusInfo);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_4;
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_6 = __this->get_mTrackableBehaviour_7();
NullCheck(L_6);
String_t* L_7 = TrackableBehaviour_get_TrackableName_m04FE2B8C75F6E62F42C6121E61EFB7C3B6676835_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_5;
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_9 = __this->get_mTrackableBehaviour_7();
NullCheck(L_9);
int32_t L_10 = TrackableBehaviour_get_CurrentStatus_m35788FFDD0156A5C132B5A88244867EE5471350B_inline(L_9, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(Status_t9B64F0BA3AD7E64C80B7CD10F61ECC24F20EC092_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_12);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_8;
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_14 = __this->get_mTrackableBehaviour_7();
NullCheck(L_14);
int32_t L_15 = TrackableBehaviour_get_CurrentStatusInfo_mCA57BA40593B27965BCD47BC1D90EAF7090AB14A_inline(L_14, /*hidden argument*/NULL);
int32_t L_16 = L_15;
RuntimeObject * L_17 = Box(StatusInfo_t5507FB8CC09640E7771385EBE27221431A2FEB4E_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_17);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_17);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogFormat_mB23DDD2CD05B2E66F9CF8CA72ECA66C02DCC209E(_stringLiteral8DA4D8B24EC5D777C7AE833C2411988A6C67013B, L_13, /*hidden argument*/NULL);
// HandleTrackableStatusChanged();
VirtActionInvoker0::Invoke(6 /* System.Void DefaultTrackableEventHandler::HandleTrackableStatusChanged() */, __this);
// }
return;
}
}
// System.Void DefaultTrackableEventHandler::HandleTrackableStatusChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_HandleTrackableStatusChanged_m0AC43383522D51C8B0EC79A780954FA2E6E3C36E (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B13_0 = 0;
{
// if (!ShouldBeRendered(m_PreviousStatus) &&
// ShouldBeRendered(m_NewStatus))
int32_t L_0 = __this->get_m_PreviousStatus_8();
bool L_1 = DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016(__this, L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001d;
}
}
{
int32_t L_2 = __this->get_m_NewStatus_9();
bool L_3 = DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016(__this, L_2, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_001e;
}
IL_001d:
{
G_B3_0 = 0;
}
IL_001e:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_002d;
}
}
{
// OnTrackingFound();
VirtActionInvoker0::Invoke(7 /* System.Void DefaultTrackableEventHandler::OnTrackingFound() */, __this);
goto IL_0085;
}
IL_002d:
{
// else if (ShouldBeRendered(m_PreviousStatus) &&
// !ShouldBeRendered(m_NewStatus))
int32_t L_5 = __this->get_m_PreviousStatus_8();
bool L_6 = DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016(__this, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_004c;
}
}
{
int32_t L_7 = __this->get_m_NewStatus_9();
bool L_8 = DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016(__this, L_7, /*hidden argument*/NULL);
G_B8_0 = ((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
goto IL_004d;
}
IL_004c:
{
G_B8_0 = 0;
}
IL_004d:
{
V_1 = (bool)G_B8_0;
bool L_9 = V_1;
if (!L_9)
{
goto IL_005c;
}
}
{
// OnTrackingLost();
VirtActionInvoker0::Invoke(8 /* System.Void DefaultTrackableEventHandler::OnTrackingLost() */, __this);
goto IL_0085;
}
IL_005c:
{
// if (!m_CallbackReceivedOnce && !ShouldBeRendered(m_NewStatus))
bool L_10 = __this->get_m_CallbackReceivedOnce_10();
if (L_10)
{
goto IL_0076;
}
}
{
int32_t L_11 = __this->get_m_NewStatus_9();
bool L_12 = DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016(__this, L_11, /*hidden argument*/NULL);
G_B13_0 = ((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
goto IL_0077;
}
IL_0076:
{
G_B13_0 = 0;
}
IL_0077:
{
V_2 = (bool)G_B13_0;
bool L_13 = V_2;
if (!L_13)
{
goto IL_0084;
}
}
{
// OnTrackingLost();
VirtActionInvoker0::Invoke(8 /* System.Void DefaultTrackableEventHandler::OnTrackingLost() */, __this);
}
IL_0084:
{
}
IL_0085:
{
// m_CallbackReceivedOnce = true;
__this->set_m_CallbackReceivedOnce_10((bool)1);
// }
return;
}
}
// System.Boolean DefaultTrackableEventHandler::ShouldBeRendered(Vuforia.TrackableBehaviour_Status)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultTrackableEventHandler_ShouldBeRendered_mC843946809525636F02A702A00348AF8E505E016 (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, int32_t ___status0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
int32_t G_B3_0 = 0;
int32_t G_B13_0 = 0;
{
// if (status == TrackableBehaviour.Status.DETECTED ||
// status == TrackableBehaviour.Status.TRACKED)
int32_t L_0 = ___status0;
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_000b;
}
}
{
int32_t L_1 = ___status0;
G_B3_0 = ((((int32_t)L_1) == ((int32_t)3))? 1 : 0);
goto IL_000c;
}
IL_000b:
{
G_B3_0 = 1;
}
IL_000c:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0015;
}
}
{
// return true;
V_1 = (bool)1;
goto IL_005c;
}
IL_0015:
{
// if (StatusFilter == TrackingStatusFilter.Tracked_ExtendedTracked)
int32_t L_3 = __this->get_StatusFilter_4();
V_2 = (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0031;
}
}
{
// if (status == TrackableBehaviour.Status.EXTENDED_TRACKED)
int32_t L_5 = ___status0;
V_3 = (bool)((((int32_t)L_5) == ((int32_t)4))? 1 : 0);
bool L_6 = V_3;
if (!L_6)
{
goto IL_0030;
}
}
{
// return true;
V_1 = (bool)1;
goto IL_005c;
}
IL_0030:
{
}
IL_0031:
{
// if (StatusFilter == TrackingStatusFilter.Tracked_ExtendedTracked_Limited)
int32_t L_7 = __this->get_StatusFilter_4();
V_4 = (bool)((((int32_t)L_7) == ((int32_t)2))? 1 : 0);
bool L_8 = V_4;
if (!L_8)
{
goto IL_0058;
}
}
{
// if (status == TrackableBehaviour.Status.EXTENDED_TRACKED ||
// status == TrackableBehaviour.Status.LIMITED)
int32_t L_9 = ___status0;
if ((((int32_t)L_9) == ((int32_t)4)))
{
goto IL_004b;
}
}
{
int32_t L_10 = ___status0;
G_B13_0 = ((((int32_t)L_10) == ((int32_t)1))? 1 : 0);
goto IL_004c;
}
IL_004b:
{
G_B13_0 = 1;
}
IL_004c:
{
V_5 = (bool)G_B13_0;
bool L_11 = V_5;
if (!L_11)
{
goto IL_0057;
}
}
{
// return true;
V_1 = (bool)1;
goto IL_005c;
}
IL_0057:
{
}
IL_0058:
{
// return false;
V_1 = (bool)0;
goto IL_005c;
}
IL_005c:
{
// }
bool L_12 = V_1;
return L_12;
}
}
// System.Void DefaultTrackableEventHandler::OnTrackingFound()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_OnTrackingFound_m4A4E9931C2178216A864B8E341B6A923711EE8B1 (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultTrackableEventHandler_OnTrackingFound_m4A4E9931C2178216A864B8E341B6A923711EE8B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* V_1 = NULL;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* V_2 = NULL;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* V_3 = NULL;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* V_4 = NULL;
int32_t V_5 = 0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * V_6 = NULL;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* V_7 = NULL;
int32_t V_8 = 0;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * V_9 = NULL;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* V_10 = NULL;
int32_t V_11 = 0;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_12 = NULL;
bool V_13 = false;
{
// if (mTrackableBehaviour)
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_0 = __this->get_mTrackableBehaviour_7();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_00b1;
}
}
{
// var rendererComponents = mTrackableBehaviour.GetComponentsInChildren<Renderer>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_3 = __this->get_mTrackableBehaviour_7();
NullCheck(L_3);
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_4 = Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F(L_3, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F_RuntimeMethod_var);
V_1 = L_4;
// var colliderComponents = mTrackableBehaviour.GetComponentsInChildren<Collider>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_5 = __this->get_mTrackableBehaviour_7();
NullCheck(L_5);
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_6 = Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047(L_5, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047_RuntimeMethod_var);
V_2 = L_6;
// var canvasComponents = mTrackableBehaviour.GetComponentsInChildren<Canvas>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_7 = __this->get_mTrackableBehaviour_7();
NullCheck(L_7);
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_8 = Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2(L_7, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2_RuntimeMethod_var);
V_3 = L_8;
// foreach (var component in rendererComponents)
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_9 = V_1;
V_4 = L_9;
V_5 = 0;
goto IL_005a;
}
IL_0044:
{
// foreach (var component in rendererComponents)
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_10 = V_4;
int32_t L_11 = V_5;
NullCheck(L_10);
int32_t L_12 = L_11;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_6 = L_13;
// component.enabled = true;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * L_14 = V_6;
NullCheck(L_14);
Renderer_set_enabled_m0933766657F2685BAAE3340B0A984C0E63925303(L_14, (bool)1, /*hidden argument*/NULL);
int32_t L_15 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_005a:
{
// foreach (var component in rendererComponents)
int32_t L_16 = V_5;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_17 = V_4;
NullCheck(L_17);
if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_0044;
}
}
{
// foreach (var component in colliderComponents)
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_18 = V_2;
V_7 = L_18;
V_8 = 0;
goto IL_0081;
}
IL_006b:
{
// foreach (var component in colliderComponents)
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_19 = V_7;
int32_t L_20 = V_8;
NullCheck(L_19);
int32_t L_21 = L_20;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_9 = L_22;
// component.enabled = true;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * L_23 = V_9;
NullCheck(L_23);
Collider_set_enabled_mF84DE8B0C8CAF33ACDB7F29BC055D9C8CFACB57B(L_23, (bool)1, /*hidden argument*/NULL);
int32_t L_24 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0081:
{
// foreach (var component in colliderComponents)
int32_t L_25 = V_8;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_26 = V_7;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))))
{
goto IL_006b;
}
}
{
// foreach (var component in canvasComponents)
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_27 = V_3;
V_10 = L_27;
V_11 = 0;
goto IL_00a8;
}
IL_0092:
{
// foreach (var component in canvasComponents)
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_28 = V_10;
int32_t L_29 = V_11;
NullCheck(L_28);
int32_t L_30 = L_29;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
V_12 = L_31;
// component.enabled = true;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_32 = V_12;
NullCheck(L_32);
Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B(L_32, (bool)1, /*hidden argument*/NULL);
int32_t L_33 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_00a8:
{
// foreach (var component in canvasComponents)
int32_t L_34 = V_11;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_35 = V_10;
NullCheck(L_35);
if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))))
{
goto IL_0092;
}
}
{
}
IL_00b1:
{
// if (OnTargetFound != null)
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * L_36 = __this->get_OnTargetFound_5();
V_13 = (bool)((!(((RuntimeObject*)(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F *)L_36) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_37 = V_13;
if (!L_37)
{
goto IL_00cc;
}
}
{
// OnTargetFound.Invoke();
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * L_38 = __this->get_OnTargetFound_5();
NullCheck(L_38);
UnityEvent_Invoke_mB2FA1C76256FE34D5E7F84ABE528AC61CE8A0325(L_38, /*hidden argument*/NULL);
}
IL_00cc:
{
// }
return;
}
}
// System.Void DefaultTrackableEventHandler::OnTrackingLost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler_OnTrackingLost_m26ACF13397E907EF90414CAEF8FEEDB3324C4E95 (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultTrackableEventHandler_OnTrackingLost_m26ACF13397E907EF90414CAEF8FEEDB3324C4E95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* V_1 = NULL;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* V_2 = NULL;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* V_3 = NULL;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* V_4 = NULL;
int32_t V_5 = 0;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * V_6 = NULL;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* V_7 = NULL;
int32_t V_8 = 0;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * V_9 = NULL;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* V_10 = NULL;
int32_t V_11 = 0;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_12 = NULL;
bool V_13 = false;
{
// if (mTrackableBehaviour)
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_0 = __this->get_mTrackableBehaviour_7();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_00b1;
}
}
{
// var rendererComponents = mTrackableBehaviour.GetComponentsInChildren<Renderer>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_3 = __this->get_mTrackableBehaviour_7();
NullCheck(L_3);
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_4 = Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F(L_3, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisRenderer_t0556D67DD582620D1F495627EDE30D03284151F4_mBBE5710DB941BDD90C838F333EB584AAC8B9B73F_RuntimeMethod_var);
V_1 = L_4;
// var colliderComponents = mTrackableBehaviour.GetComponentsInChildren<Collider>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_5 = __this->get_mTrackableBehaviour_7();
NullCheck(L_5);
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_6 = Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047(L_5, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisCollider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF_m7690C204F64DA6D651AA724E2656C12499849047_RuntimeMethod_var);
V_2 = L_6;
// var canvasComponents = mTrackableBehaviour.GetComponentsInChildren<Canvas>(true);
TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * L_7 = __this->get_mTrackableBehaviour_7();
NullCheck(L_7);
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_8 = Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2(L_7, (bool)1, /*hidden argument*/Component_GetComponentsInChildren_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m0DCB451DDA382B4BF6D882CBA43DBDD200C1FCF2_RuntimeMethod_var);
V_3 = L_8;
// foreach (var component in rendererComponents)
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_9 = V_1;
V_4 = L_9;
V_5 = 0;
goto IL_005a;
}
IL_0044:
{
// foreach (var component in rendererComponents)
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_10 = V_4;
int32_t L_11 = V_5;
NullCheck(L_10);
int32_t L_12 = L_11;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_6 = L_13;
// component.enabled = false;
Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * L_14 = V_6;
NullCheck(L_14);
Renderer_set_enabled_m0933766657F2685BAAE3340B0A984C0E63925303(L_14, (bool)0, /*hidden argument*/NULL);
int32_t L_15 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_005a:
{
// foreach (var component in rendererComponents)
int32_t L_16 = V_5;
RendererU5BU5D_tF85DA3E8016B6D367A055C3BF54C575FDA7DAEEF* L_17 = V_4;
NullCheck(L_17);
if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_0044;
}
}
{
// foreach (var component in colliderComponents)
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_18 = V_2;
V_7 = L_18;
V_8 = 0;
goto IL_0081;
}
IL_006b:
{
// foreach (var component in colliderComponents)
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_19 = V_7;
int32_t L_20 = V_8;
NullCheck(L_19);
int32_t L_21 = L_20;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_9 = L_22;
// component.enabled = false;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * L_23 = V_9;
NullCheck(L_23);
Collider_set_enabled_mF84DE8B0C8CAF33ACDB7F29BC055D9C8CFACB57B(L_23, (bool)0, /*hidden argument*/NULL);
int32_t L_24 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0081:
{
// foreach (var component in colliderComponents)
int32_t L_25 = V_8;
ColliderU5BU5D_t70D1FDAE17E4359298B2BAA828048D1B7CFFE252* L_26 = V_7;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))))
{
goto IL_006b;
}
}
{
// foreach (var component in canvasComponents)
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_27 = V_3;
V_10 = L_27;
V_11 = 0;
goto IL_00a8;
}
IL_0092:
{
// foreach (var component in canvasComponents)
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_28 = V_10;
int32_t L_29 = V_11;
NullCheck(L_28);
int32_t L_30 = L_29;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
V_12 = L_31;
// component.enabled = false;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_32 = V_12;
NullCheck(L_32);
Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B(L_32, (bool)0, /*hidden argument*/NULL);
int32_t L_33 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_00a8:
{
// foreach (var component in canvasComponents)
int32_t L_34 = V_11;
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* L_35 = V_10;
NullCheck(L_35);
if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))))
{
goto IL_0092;
}
}
{
}
IL_00b1:
{
// if (OnTargetLost != null)
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * L_36 = __this->get_OnTargetLost_6();
V_13 = (bool)((!(((RuntimeObject*)(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F *)L_36) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_37 = V_13;
if (!L_37)
{
goto IL_00cc;
}
}
{
// OnTargetLost.Invoke();
UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * L_38 = __this->get_OnTargetLost_6();
NullCheck(L_38);
UnityEvent_Invoke_mB2FA1C76256FE34D5E7F84ABE528AC61CE8A0325(L_38, /*hidden argument*/NULL);
}
IL_00cc:
{
// }
return;
}
}
// System.Void DefaultTrackableEventHandler::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultTrackableEventHandler__ctor_m3C2014411A75507754273235A44F881C354C2B6C (DefaultTrackableEventHandler_t6997E0A19AC0FABC165FB7264F57DF2EDF4E8022 * __this, const RuntimeMethod* method)
{
{
// public TrackingStatusFilter StatusFilter = TrackingStatusFilter.Tracked_ExtendedTracked_Limited;
__this->set_StatusFilter_4(2);
// protected bool m_CallbackReceivedOnce = false;
__this->set_m_CallbackReceivedOnce_10((bool)0);
MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer::OnRuntimeMethodLoad()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeOpenSourceInitializer_OnRuntimeMethodLoad_mE08391C6FC46E78E60FD1306F9D26F707D8F01E3 (const RuntimeMethod* method)
{
{
// InitializeFacade();
RuntimeOpenSourceInitializer_InitializeFacade_m083BFFA22FEA65C77B01B5D9941BC9E7B68D17D2(/*hidden argument*/NULL);
// }
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer::InitializeFacade()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeOpenSourceInitializer_InitializeFacade_m083BFFA22FEA65C77B01B5D9941BC9E7B68D17D2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RuntimeOpenSourceInitializer_InitializeFacade_m083BFFA22FEA65C77B01B5D9941BC9E7B68D17D2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (sFacade != null) return;
RuntimeObject* L_0 = ((RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_il2cpp_TypeInfo_var))->get_sFacade_0();
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_000f;
}
}
{
// if (sFacade != null) return;
goto IL_0024;
}
IL_000f:
{
// sFacade = new OpenSourceUnityRuntimeCompiledFacade();
OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E * L_2 = (OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E *)il2cpp_codegen_object_new(OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E_il2cpp_TypeInfo_var);
OpenSourceUnityRuntimeCompiledFacade__ctor_m4A55808613D2E3EF63C75B3643F12AF23CE115AC(L_2, /*hidden argument*/NULL);
((RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_il2cpp_TypeInfo_var))->set_sFacade_0(L_2);
// UnityRuntimeCompiledFacade.Instance = sFacade;
RuntimeObject* L_3 = ((RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822_il2cpp_TypeInfo_var))->get_sFacade_0();
UnityRuntimeCompiledFacade_set_Instance_mAD789CACB83D18D963C131AFDE2A29DE7B3D5E76_inline(L_3, /*hidden argument*/NULL);
}
IL_0024:
{
// }
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeOpenSourceInitializer__ctor_m488E798B9B5D5BE011A8E71825655A418D62B371 (RuntimeOpenSourceInitializer_t7748A8C16E130F7EA553A9FFFBA8ADC6A484C822 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Vuforia.UnityRuntimeCompiled.IUnityRenderPipeline Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_OpenSourceUnityRuntimeCompiledFacade::get_UnityRenderPipeline()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OpenSourceUnityRuntimeCompiledFacade_get_UnityRenderPipeline_m897AD15D21E5C34F8A71D17CB080E20E12B64549 (OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E * __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
// get { return mUnityRenderPipeline; }
RuntimeObject* L_0 = __this->get_mUnityRenderPipeline_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
// get { return mUnityRenderPipeline; }
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Boolean Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_OpenSourceUnityRuntimeCompiledFacade::IsUnityUICurrentlySelected()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OpenSourceUnityRuntimeCompiledFacade_IsUnityUICurrentlySelected_m53A682864DC4AEFA3CE9587636D4C0345B8229A9 (OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (OpenSourceUnityRuntimeCompiledFacade_IsUnityUICurrentlySelected_m53A682864DC4AEFA3CE9587636D4C0345B8229A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
// return !(EventSystem.current == null || EventSystem.current.currentSelectedGameObject == null);
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0023;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_2 = EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD(/*hidden argument*/NULL);
NullCheck(L_2);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
goto IL_0024;
}
IL_0023:
{
G_B3_0 = 0;
}
IL_0024:
{
V_0 = (bool)G_B3_0;
goto IL_0027;
}
IL_0027:
{
// }
bool L_5 = V_0;
return L_5;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_OpenSourceUnityRuntimeCompiledFacade::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OpenSourceUnityRuntimeCompiledFacade__ctor_m4A55808613D2E3EF63C75B3643F12AF23CE115AC (OpenSourceUnityRuntimeCompiledFacade_tCAC8AA3DCC66518FFD9340FC13EEEAE47CB17D6E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (OpenSourceUnityRuntimeCompiledFacade__ctor_m4A55808613D2E3EF63C75B3643F12AF23CE115AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// readonly IUnityRenderPipeline mUnityRenderPipeline = new UnityRenderPipeline();
UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * L_0 = (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B *)il2cpp_codegen_object_new(UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B_il2cpp_TypeInfo_var);
UnityRenderPipeline__ctor_mC0DC0A838D359359B81315037D4F5C3DF0300349(L_0, /*hidden argument*/NULL);
__this->set_mUnityRenderPipeline_0(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::add_BeginFrameRendering(System.Action`1<UnityEngine.Camera[]>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_add_BeginFrameRendering_m9D41146607F13FD13B4E95F10F02C52D992090C0 (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_add_BeginFrameRendering_m9D41146607F13FD13B4E95F10F02C52D992090C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_0 = NULL;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_1 = NULL;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_2 = NULL;
{
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_0 = __this->get_BeginFrameRendering_0();
V_0 = L_0;
}
IL_0007:
{
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_1 = V_0;
V_1 = L_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_2 = V_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)CastclassSealed((RuntimeObject*)L_4, Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50_il2cpp_TypeInfo_var));
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 ** L_5 = __this->get_address_of_BeginFrameRendering_0();
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_6 = V_2;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_7 = V_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_8 = InterlockedCompareExchangeImpl<Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *>((Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 **)L_5, L_6, L_7);
V_0 = L_8;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_9 = V_0;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)L_9) == ((RuntimeObject*)(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::remove_BeginFrameRendering(System.Action`1<UnityEngine.Camera[]>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_remove_BeginFrameRendering_m9EE84137E3B60A3C5F6F67D492E1DF4B319E267E (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_remove_BeginFrameRendering_m9EE84137E3B60A3C5F6F67D492E1DF4B319E267E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_0 = NULL;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_1 = NULL;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * V_2 = NULL;
{
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_0 = __this->get_BeginFrameRendering_0();
V_0 = L_0;
}
IL_0007:
{
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_1 = V_0;
V_1 = L_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_2 = V_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)CastclassSealed((RuntimeObject*)L_4, Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50_il2cpp_TypeInfo_var));
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 ** L_5 = __this->get_address_of_BeginFrameRendering_0();
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_6 = V_2;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_7 = V_1;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_8 = InterlockedCompareExchangeImpl<Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *>((Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 **)L_5, L_6, L_7);
V_0 = L_8;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_9 = V_0;
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)L_9) == ((RuntimeObject*)(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::add_BeginCameraRendering(System.Action`1<UnityEngine.Camera>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_add_BeginCameraRendering_m9791F732ACA9C59CB31D1D3C70E154895579CDFD (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_add_BeginCameraRendering_m9791F732ACA9C59CB31D1D3C70E154895579CDFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_0 = NULL;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_1 = NULL;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_2 = NULL;
{
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_0 = __this->get_BeginCameraRendering_1();
V_0 = L_0;
}
IL_0007:
{
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_1 = V_0;
V_1 = L_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_2 = V_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)CastclassSealed((RuntimeObject*)L_4, Action_1_t24CBC129F44B85416642527CE472755C01C43AA7_il2cpp_TypeInfo_var));
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 ** L_5 = __this->get_address_of_BeginCameraRendering_1();
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_6 = V_2;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_7 = V_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_8 = InterlockedCompareExchangeImpl<Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *>((Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 **)L_5, L_6, L_7);
V_0 = L_8;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_9 = V_0;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)L_9) == ((RuntimeObject*)(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::remove_BeginCameraRendering(System.Action`1<UnityEngine.Camera>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_remove_BeginCameraRendering_m7F5A6A4D49445026620B996DF97994CABE443A50 (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_remove_BeginCameraRendering_m7F5A6A4D49445026620B996DF97994CABE443A50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_0 = NULL;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_1 = NULL;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * V_2 = NULL;
{
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_0 = __this->get_BeginCameraRendering_1();
V_0 = L_0;
}
IL_0007:
{
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_1 = V_0;
V_1 = L_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_2 = V_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_3 = ___value0;
Delegate_t * L_4 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)CastclassSealed((RuntimeObject*)L_4, Action_1_t24CBC129F44B85416642527CE472755C01C43AA7_il2cpp_TypeInfo_var));
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 ** L_5 = __this->get_address_of_BeginCameraRendering_1();
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_6 = V_2;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_7 = V_1;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_8 = InterlockedCompareExchangeImpl<Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *>((Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 **)L_5, L_6, L_7);
V_0 = L_8;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_9 = V_0;
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_10 = V_1;
if ((!(((RuntimeObject*)(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)L_9) == ((RuntimeObject*)(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)L_10))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline__ctor_mC0DC0A838D359359B81315037D4F5C3DF0300349 (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline__ctor_mC0DC0A838D359359B81315037D4F5C3DF0300349_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public UnityRenderPipeline()
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
// UnityEngine.Rendering.RenderPipelineManager.beginFrameRendering += OnBeginFrameRendering;
Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 * L_0 = (Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5 *)il2cpp_codegen_object_new(Action_2_t11D263E8C52BF70BBCED2592B3AA25E25AE2E2F5_il2cpp_TypeInfo_var);
Action_2__ctor_m2D505D6723A1143CB5B6878A785D7C4187EB9FF8(L_0, __this, (intptr_t)((intptr_t)UnityRenderPipeline_OnBeginFrameRendering_m6C5660780B920DCAB00731E8C9BDBC8D7C71164B_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m2D505D6723A1143CB5B6878A785D7C4187EB9FF8_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(RenderPipelineManager_t618E1790ED285941068D460521F7CF830D39B8CC_il2cpp_TypeInfo_var);
RenderPipelineManager_add_beginFrameRendering_mF9896552D7B492FBC22B0D1832C536C91E542B56(L_0, /*hidden argument*/NULL);
// UnityEngine.Rendering.RenderPipelineManager.beginCameraRendering += OnBeginCameraRendering;
Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 * L_1 = (Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04 *)il2cpp_codegen_object_new(Action_2_t9F55CDD4158CA55A03F1D448889BDD8A9C4D7E04_il2cpp_TypeInfo_var);
Action_2__ctor_m64C09A67B27042FB46779DEC4CFC95C02C80BCA6(L_1, __this, (intptr_t)((intptr_t)UnityRenderPipeline_OnBeginCameraRendering_m87B76CC95E538C583E21D4D6BC720FC0EBDC445F_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m64C09A67B27042FB46779DEC4CFC95C02C80BCA6_RuntimeMethod_var);
RenderPipelineManager_add_beginCameraRendering_m49A42A94633EDC2DDE0B2326AFB16648F3EA4655(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::OnBeginCameraRendering(UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_OnBeginCameraRendering_m87B76CC95E538C583E21D4D6BC720FC0EBDC445F (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B ___context0, Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_OnBeginCameraRendering_m87B76CC95E538C583E21D4D6BC720FC0EBDC445F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (BeginCameraRendering != null)
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_0 = __this->get_BeginCameraRendering_1();
V_0 = (bool)((!(((RuntimeObject*)(Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
// BeginCameraRendering(camera);
Action_1_t24CBC129F44B85416642527CE472755C01C43AA7 * L_2 = __this->get_BeginCameraRendering_1();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_3 = ___camera1;
NullCheck(L_2);
Action_1_Invoke_mE887C5799BA6B2E278F503E6CFC8959837C8282A(L_2, L_3, /*hidden argument*/Action_1_Invoke_mE887C5799BA6B2E278F503E6CFC8959837C8282A_RuntimeMethod_var);
}
IL_001b:
{
// }
return;
}
}
// System.Void Vuforia.UnityRuntimeCompiled.RuntimeOpenSourceInitializer_UnityRenderPipeline::OnBeginFrameRendering(UnityEngine.Rendering.ScriptableRenderContext,UnityEngine.Camera[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityRenderPipeline_OnBeginFrameRendering_m6C5660780B920DCAB00731E8C9BDBC8D7C71164B (UnityRenderPipeline_tD9B64EDAAD4B2C983FBCF34C4025F85962D07B4B * __this, ScriptableRenderContext_t7A3C889E3516E8C79C1C0327D33ED9601D163A2B ___context0, CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* ___cameras1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRenderPipeline_OnBeginFrameRendering_m6C5660780B920DCAB00731E8C9BDBC8D7C71164B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// if (BeginFrameRendering != null)
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_0 = __this->get_BeginFrameRendering_0();
V_0 = (bool)((!(((RuntimeObject*)(Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
// BeginFrameRendering(cameras);
Action_1_t65851B82FA5B1C6B08060B3443C6BD855CB1AC50 * L_2 = __this->get_BeginFrameRendering_0();
CameraU5BU5D_t2A1957E88FB79357C12B87941970D776D30E90F9* L_3 = ___cameras1;
NullCheck(L_2);
Action_1_Invoke_m997E5172E3C900C1B0271D7635EF70333DCE91AD(L_2, L_3, /*hidden argument*/Action_1_Invoke_m997E5172E3C900C1B0271D7635EF70333DCE91AD_RuntimeMethod_var);
}
IL_001b:
{
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * VuforiaConfiguration_get_Vuforia_mAE9E228790390C66CF46E33B874B802D5AA8692D_inline (VuforiaConfiguration_t389C464955859AB411F51B7950ACBAA6DCAFCD82 * __this, const RuntimeMethod* method)
{
{
GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * L_0 = __this->get_vuforia_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* GenericVuforiaConfiguration_get_LicenseKey_mCE40A450374E5C93A2248F96A3290A32C0C4209F_inline (GenericVuforiaConfiguration_t6FBB0036347CB878A938375817103A20CDD59064 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_vuforiaLicenseKey_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TrackableBehaviour_get_TrackableName_m04FE2B8C75F6E62F42C6121E61EFB7C3B6676835_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_mTrackableName_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TrackableBehaviour_get_CurrentStatus_m35788FFDD0156A5C132B5A88244867EE5471350B_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_mStatus_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TrackableBehaviour_get_CurrentStatusInfo_mCA57BA40593B27965BCD47BC1D90EAF7090AB14A_inline (TrackableBehaviour_t579D75AAFEF7B2D69F4B68931D5A58074E80A7E4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_mStatusInfo_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityRuntimeCompiledFacade_set_Instance_mAD789CACB83D18D963C131AFDE2A29DE7B3D5E76_inline (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityRuntimeCompiledFacade_set_Instance_mAD789CACB83D18D963C131AFDE2A29DE7B3D5E76VuforiaScripts_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
((UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046_StaticFields*)il2cpp_codegen_static_fields_for(UnityRuntimeCompiledFacade_tE947D132B425690A047FA8CF6B865C2A94A8A046_il2cpp_TypeInfo_var))->set_sInstance_0(L_0);
return;
}
}