説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UnityEngine.VFXModule.cpp 104KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. #include "pch-cpp.hpp"
  2. struct Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A;
  3. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  4. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  5. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  6. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  7. struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
  8. struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7;
  9. struct CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A;
  10. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  11. struct Exception_t;
  12. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  13. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  14. struct MethodInfo_t;
  15. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
  16. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  17. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
  18. struct String_t;
  19. struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700;
  20. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518;
  21. struct VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5;
  22. struct VFXSpawnerCallbacks_t047450F52C1C8F2F74DF560269C803FCD61AF9F7;
  23. struct VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281;
  24. struct VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0;
  25. struct VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688;
  26. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  27. struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
  28. IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
  29. IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
  30. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  31. IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
  32. IL2CPP_EXTERN_C RuntimeClass* VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_il2cpp_TypeInfo_var;
  33. IL2CPP_EXTERN_C RuntimeClass* VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_il2cpp_TypeInfo_var;
  34. IL2CPP_EXTERN_C RuntimeClass* VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var;
  35. IL2CPP_EXTERN_C RuntimeClass* VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_il2cpp_TypeInfo_var;
  36. IL2CPP_EXTERN_C RuntimeClass* VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_il2cpp_TypeInfo_var;
  37. IL2CPP_EXTERN_C String_t* _stringLiteral49368FB5069A33D81E54BC6B2CC50811BBD8D856;
  38. IL2CPP_EXTERN_C String_t* _stringLiteral4EBC86E0EACFCA522AEB82874860D0E248D782A5;
  39. IL2CPP_EXTERN_C String_t* _stringLiteral51A0C417C7235FF0A4099CB1E645148600EE362A;
  40. IL2CPP_EXTERN_C String_t* _stringLiteral55CE32F73183782A9E356F9B9E36223057BA0BA3;
  41. IL2CPP_EXTERN_C String_t* _stringLiteralC2149138D4858815F0CE2A684D1424F63B8B965D;
  42. IL2CPP_EXTERN_C String_t* _stringLiteralDD6A1C41DBA2920AB3C87C187F0272E6380C0AAA;
  43. IL2CPP_EXTERN_C String_t* _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B;
  44. IL2CPP_EXTERN_C const RuntimeMethod* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_RuntimeMethod_var;
  45. IL2CPP_EXTERN_C const RuntimeMethod* MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var;
  46. IL2CPP_EXTERN_C const RuntimeMethod* MarshalledUnityObject_MarshalNotNull_TisVisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0_m57836753B4B7DEF5E3925BF5564FCD606542F077_RuntimeMethod_var;
  47. IL2CPP_EXTERN_C const RuntimeMethod* MarshalledUnityObject_Marshal_TisTexture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_m0517D1A69A087C6E07CFDC89032285B81B12BF9C_RuntimeMethod_var;
  48. IL2CPP_EXTERN_C const RuntimeMethod* MarshalledUnityObject_Marshal_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m7B2F96E955EB6F7DDF793EF34F41EBF240CB151C_RuntimeMethod_var;
  49. IL2CPP_EXTERN_C const RuntimeMethod* Unmarshal_UnmarshalUnityObject_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m77DABBB2D20B699FB5303D09BC073B5252D82597_RuntimeMethod_var;
  50. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var;
  51. IL2CPP_EXTERN_C const RuntimeMethod* VFXEventAttribute_SetWrapValue_mB74CE4A4E6203AA7E95F9446AC2CC043E21CB757_RuntimeMethod_var;
  52. IL2CPP_EXTERN_C const RuntimeMethod* VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F_RuntimeMethod_var;
  53. IL2CPP_EXTERN_C const RuntimeMethod* VFXSpawnerState_SetWrapValue_m84E0796288A032B26ADCEF35AE94F5CC95A3FAB5_RuntimeMethod_var;
  54. struct Delegate_t_marshaled_com;
  55. struct Delegate_t_marshaled_pinvoke;
  56. struct Exception_t_marshaled_com;
  57. struct Exception_t_marshaled_pinvoke;
  58. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518;;
  59. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com;
  60. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com;;
  61. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke;
  62. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke;;
  63. IL2CPP_EXTERN_C_BEGIN
  64. IL2CPP_EXTERN_C_END
  65. #ifdef __clang__
  66. #pragma clang diagnostic push
  67. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  68. #pragma clang diagnostic ignored "-Wunused-variable"
  69. #endif
  70. struct U3CModuleU3E_t50CE09CC30E47E354E78834E8E0D69647274F4B8
  71. {
  72. };
  73. struct String_t : public RuntimeObject
  74. {
  75. int32_t ____stringLength;
  76. Il2CppChar ____firstChar;
  77. };
  78. struct VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E : public RuntimeObject
  79. {
  80. };
  81. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  82. {
  83. };
  84. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  85. {
  86. };
  87. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  88. {
  89. };
  90. struct BindingsMarshaller_t83C2670C243D70DB012B2CA95F16AE91ACA39F5D : public RuntimeObject
  91. {
  92. };
  93. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  94. {
  95. bool ___m_value;
  96. };
  97. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  98. {
  99. };
  100. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  101. {
  102. };
  103. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  104. {
  105. };
  106. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  107. {
  108. int32_t ___m_value;
  109. };
  110. struct IntPtr_t
  111. {
  112. void* ___m_value;
  113. };
  114. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  115. {
  116. uint32_t ___m_value;
  117. };
  118. struct VFXBatchInfo_t8E6084B732F522146481D1D45F41ACB6B8EF0790
  119. {
  120. uint32_t ___capacity;
  121. uint32_t ___activeInstanceCount;
  122. };
  123. struct VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48
  124. {
  125. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___vfxAsset;
  126. uint32_t ___activeBatchCount;
  127. uint32_t ___inactiveBatchCount;
  128. uint32_t ___activeInstanceCount;
  129. uint32_t ___unbatchedInstanceCount;
  130. uint32_t ___totalInstanceCapacity;
  131. uint32_t ___maxInstancePerBatchCapacity;
  132. uint64_t ___totalGPUSizeInBytes;
  133. uint64_t ___totalCPUSizeInBytes;
  134. };
  135. struct VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_pinvoke
  136. {
  137. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___vfxAsset;
  138. uint32_t ___activeBatchCount;
  139. uint32_t ___inactiveBatchCount;
  140. uint32_t ___activeInstanceCount;
  141. uint32_t ___unbatchedInstanceCount;
  142. uint32_t ___totalInstanceCapacity;
  143. uint32_t ___maxInstancePerBatchCapacity;
  144. uint64_t ___totalGPUSizeInBytes;
  145. uint64_t ___totalCPUSizeInBytes;
  146. };
  147. struct VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_com
  148. {
  149. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___vfxAsset;
  150. uint32_t ___activeBatchCount;
  151. uint32_t ___inactiveBatchCount;
  152. uint32_t ___activeInstanceCount;
  153. uint32_t ___unbatchedInstanceCount;
  154. uint32_t ___totalInstanceCapacity;
  155. uint32_t ___maxInstancePerBatchCapacity;
  156. uint64_t ___totalGPUSizeInBytes;
  157. uint64_t ___totalCPUSizeInBytes;
  158. };
  159. struct VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92
  160. {
  161. uint32_t ___viewTotal;
  162. uint32_t ___viewCount;
  163. uint32_t ___viewOffset;
  164. };
  165. struct VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40
  166. {
  167. int32_t ___U3CnameIdU3Ek__BackingField;
  168. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___U3CeventAttributeU3Ek__BackingField;
  169. };
  170. struct VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_pinvoke
  171. {
  172. int32_t ___U3CnameIdU3Ek__BackingField;
  173. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke* ___U3CeventAttributeU3Ek__BackingField;
  174. };
  175. struct VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_com
  176. {
  177. int32_t ___U3CnameIdU3Ek__BackingField;
  178. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com* ___U3CeventAttributeU3Ek__BackingField;
  179. };
  180. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  181. {
  182. union
  183. {
  184. struct
  185. {
  186. };
  187. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  188. };
  189. };
  190. struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7 : public RuntimeObject
  191. {
  192. intptr_t ___m_Ptr;
  193. };
  194. struct CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267
  195. {
  196. intptr_t ___ptr;
  197. CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A* ___m_AllocationInfo;
  198. };
  199. struct Delegate_t : public RuntimeObject
  200. {
  201. intptr_t ___method_ptr;
  202. intptr_t ___invoke_impl;
  203. RuntimeObject* ___m_target;
  204. intptr_t ___method;
  205. intptr_t ___delegate_trampoline;
  206. intptr_t ___extra_arg;
  207. intptr_t ___method_code;
  208. intptr_t ___interp_method;
  209. intptr_t ___interp_invoke_impl;
  210. MethodInfo_t* ___method_info;
  211. MethodInfo_t* ___original_method_info;
  212. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  213. bool ___method_is_virtual;
  214. };
  215. struct Delegate_t_marshaled_pinvoke
  216. {
  217. intptr_t ___method_ptr;
  218. intptr_t ___invoke_impl;
  219. Il2CppIUnknown* ___m_target;
  220. intptr_t ___method;
  221. intptr_t ___delegate_trampoline;
  222. intptr_t ___extra_arg;
  223. intptr_t ___method_code;
  224. intptr_t ___interp_method;
  225. intptr_t ___interp_invoke_impl;
  226. MethodInfo_t* ___method_info;
  227. MethodInfo_t* ___original_method_info;
  228. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  229. int32_t ___method_is_virtual;
  230. };
  231. struct Delegate_t_marshaled_com
  232. {
  233. intptr_t ___method_ptr;
  234. intptr_t ___invoke_impl;
  235. Il2CppIUnknown* ___m_target;
  236. intptr_t ___method;
  237. intptr_t ___delegate_trampoline;
  238. intptr_t ___extra_arg;
  239. intptr_t ___method_code;
  240. intptr_t ___interp_method;
  241. intptr_t ___interp_invoke_impl;
  242. MethodInfo_t* ___method_info;
  243. MethodInfo_t* ___original_method_info;
  244. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  245. int32_t ___method_is_virtual;
  246. };
  247. struct Exception_t : public RuntimeObject
  248. {
  249. String_t* ____className;
  250. String_t* ____message;
  251. RuntimeObject* ____data;
  252. Exception_t* ____innerException;
  253. String_t* ____helpURL;
  254. RuntimeObject* ____stackTrace;
  255. String_t* ____stackTraceString;
  256. String_t* ____remoteStackTraceString;
  257. int32_t ____remoteStackIndex;
  258. RuntimeObject* ____dynamicMethods;
  259. int32_t ____HResult;
  260. String_t* ____source;
  261. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  262. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  263. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  264. int32_t ___caught_in_unmanaged;
  265. };
  266. struct Exception_t_marshaled_pinvoke
  267. {
  268. char* ____className;
  269. char* ____message;
  270. RuntimeObject* ____data;
  271. Exception_t_marshaled_pinvoke* ____innerException;
  272. char* ____helpURL;
  273. Il2CppIUnknown* ____stackTrace;
  274. char* ____stackTraceString;
  275. char* ____remoteStackTraceString;
  276. int32_t ____remoteStackIndex;
  277. Il2CppIUnknown* ____dynamicMethods;
  278. int32_t ____HResult;
  279. char* ____source;
  280. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  281. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  282. Il2CppSafeArray* ___native_trace_ips;
  283. int32_t ___caught_in_unmanaged;
  284. };
  285. struct Exception_t_marshaled_com
  286. {
  287. Il2CppChar* ____className;
  288. Il2CppChar* ____message;
  289. RuntimeObject* ____data;
  290. Exception_t_marshaled_com* ____innerException;
  291. Il2CppChar* ____helpURL;
  292. Il2CppIUnknown* ____stackTrace;
  293. Il2CppChar* ____stackTraceString;
  294. Il2CppChar* ____remoteStackTraceString;
  295. int32_t ____remoteStackIndex;
  296. Il2CppIUnknown* ____dynamicMethods;
  297. int32_t ____HResult;
  298. Il2CppChar* ____source;
  299. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  300. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  301. Il2CppSafeArray* ___native_trace_ips;
  302. int32_t ___caught_in_unmanaged;
  303. };
  304. struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
  305. {
  306. intptr_t ___handle;
  307. };
  308. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  309. {
  310. intptr_t ___m_CachedPtr;
  311. };
  312. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  313. {
  314. intptr_t ___m_CachedPtr;
  315. };
  316. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  317. {
  318. intptr_t ___m_CachedPtr;
  319. };
  320. struct VFXCameraBufferTypes_tB2A685C8F14B79B609D1EBA82D45B18ED4546CE8
  321. {
  322. int32_t ___value__;
  323. };
  324. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518 : public RuntimeObject
  325. {
  326. intptr_t ___m_Ptr;
  327. bool ___m_Owner;
  328. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___m_VfxAsset;
  329. };
  330. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke
  331. {
  332. intptr_t ___m_Ptr;
  333. int32_t ___m_Owner;
  334. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___m_VfxAsset;
  335. };
  336. struct VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com
  337. {
  338. intptr_t ___m_Ptr;
  339. int32_t ___m_Owner;
  340. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___m_VfxAsset;
  341. };
  342. struct VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5 : public RuntimeObject
  343. {
  344. intptr_t ___m_Ptr;
  345. };
  346. struct VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_pinvoke
  347. {
  348. intptr_t ___m_Ptr;
  349. };
  350. struct VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_com
  351. {
  352. intptr_t ___m_Ptr;
  353. };
  354. struct VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281 : public RuntimeObject
  355. {
  356. intptr_t ___m_Ptr;
  357. bool ___m_Owner;
  358. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___m_WrapEventAttribute;
  359. };
  360. struct VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_pinvoke
  361. {
  362. intptr_t ___m_Ptr;
  363. int32_t ___m_Owner;
  364. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke* ___m_WrapEventAttribute;
  365. };
  366. struct VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_com
  367. {
  368. intptr_t ___m_Ptr;
  369. int32_t ___m_Owner;
  370. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com* ___m_WrapEventAttribute;
  371. };
  372. struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  373. {
  374. };
  375. struct MulticastDelegate_t : public Delegate_t
  376. {
  377. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  378. };
  379. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  380. {
  381. Delegate_t_marshaled_pinvoke** ___delegates;
  382. };
  383. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  384. {
  385. Delegate_t_marshaled_com** ___delegates;
  386. };
  387. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  388. {
  389. };
  390. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  391. {
  392. };
  393. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  394. {
  395. };
  396. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  397. {
  398. };
  399. struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  400. {
  401. };
  402. struct VisualEffectObject_t05DA11D8B79185E02344C115C8075FC95E7623BE : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  403. {
  404. };
  405. struct Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A : public MulticastDelegate_t
  406. {
  407. };
  408. struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
  409. {
  410. };
  411. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  412. {
  413. };
  414. struct VFXSpawnerCallbacks_t047450F52C1C8F2F74DF560269C803FCD61AF9F7 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
  415. {
  416. };
  417. struct VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688 : public VisualEffectObject_t05DA11D8B79185E02344C115C8075FC95E7623BE
  418. {
  419. };
  420. struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  421. {
  422. uint32_t ___m_NonSerializedVersion;
  423. };
  424. struct VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  425. {
  426. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___m_cachedEventAttribute;
  427. Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* ___outputEventReceived;
  428. };
  429. struct String_t_StaticFields
  430. {
  431. String_t* ___Empty;
  432. };
  433. struct VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_StaticFields
  434. {
  435. VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 ___kDefaultCameraXRSettings;
  436. };
  437. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  438. {
  439. String_t* ___TrueString;
  440. String_t* ___FalseString;
  441. };
  442. struct IntPtr_t_StaticFields
  443. {
  444. intptr_t ___Zero;
  445. };
  446. struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7_StaticFields
  447. {
  448. bool ___ThrowOnSetRenderTarget;
  449. };
  450. struct Exception_t_StaticFields
  451. {
  452. RuntimeObject* ___s_EDILock;
  453. };
  454. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
  455. {
  456. int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
  457. };
  458. struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_StaticFields
  459. {
  460. int32_t ___GenerateAllMips;
  461. };
  462. struct VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_StaticFields
  463. {
  464. int32_t ___PlayEventID;
  465. int32_t ___StopEventID;
  466. };
  467. struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
  468. {
  469. CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull;
  470. CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender;
  471. CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender;
  472. };
  473. #ifdef __clang__
  474. #pragma clang diagnostic pop
  475. #endif
  476. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled);
  477. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke_back(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled);
  478. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke_cleanup(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled);
  479. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled);
  480. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com_back(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled);
  481. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com_cleanup(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled);
  482. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_Marshal_TisRuntimeObject_m286B34400A212037E8EBD53DBFEAD7D23CDE8051_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  483. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  484. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Unmarshal_UnmarshalUnityObject_TisRuntimeObject_m2B04FEB8E4BB254DD6F827F3111C91F2AF16D04A_gshared_inline (intptr_t ___0_gcHandlePtr, const RuntimeMethod* method) ;
  485. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_gshared_inline (Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* __this, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40 ___0_obj, const RuntimeMethod* method) ;
  486. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline (intptr_t* ___0_from, const RuntimeMethod* method) ;
  487. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  488. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute__ctor_m08E26E4F79DA1062FC43501FDFE00B9EF3ED3AE1 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, intptr_t ___0_ptr, bool ___1_owner, VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___2_vfxAsset, const RuntimeMethod* method) ;
  489. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  490. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157 (const RuntimeMethod* method) ;
  491. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_InitFromAsset_mFA13F75CCECE6D2DAD270E37126F211724D5EFD2 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___0_vfxAsset, const RuntimeMethod* method) ;
  492. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m91059026EFB50B8F90927D1B45D857C3FA02CB1F_inline (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___0_eventAttibute, const RuntimeMethod* method) ;
  493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  494. inline intptr_t MarshalledUnityObject_Marshal_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m7B2F96E955EB6F7DDF793EF34F41EBF240CB151C_inline (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___0_obj, const RuntimeMethod* method)
  495. {
  496. return (( intptr_t (*) (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688*, const RuntimeMethod*))MarshalledUnityObject_Marshal_TisRuntimeObject_m286B34400A212037E8EBD53DBFEAD7D23CDE8051_gshared_inline)(___0_obj, method);
  497. }
  498. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3 (intptr_t ___0__unity_self, intptr_t ___1_vfxAsset, const RuntimeMethod* method) ;
  499. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  500. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E (intptr_t ___0_ptr, const RuntimeMethod* method) ;
  501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  502. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Release_m959FB9B7EEC401D763A16AC1188F18B7F5B2D8F2 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, const RuntimeMethod* method) ;
  503. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXExpressionValues__ctor_mB5923888F1BBEEE55955E24514A69629D932DDD0 (VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* __this, const RuntimeMethod* method) ;
  505. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_Internal_ProcessCameraCommand_mD1E50A787623A201B74EA5C6B68B02A35CA1DFC9 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_cam, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___1_cmd, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 ___2_camXRSettings, intptr_t ___3_cullResults, const RuntimeMethod* method) ;
  506. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01 (RuntimeObject* ___0_obj, String_t* ___1_parameterName, const RuntimeMethod* method) ;
  507. inline intptr_t MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_inline (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_obj, const RuntimeMethod* method)
  508. {
  509. return (( intptr_t (*) (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*, const RuntimeMethod*))MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline)(___0_obj, method);
  510. }
  511. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mAA01170CFDC728A3BBFDB5E6953B9649292A4D08_inline (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_commandBuffer, const RuntimeMethod* method) ;
  512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755 (intptr_t ___0_cam, intptr_t ___1_cmd, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* ___2_camXRSettings, intptr_t ___3_cullResults, const RuntimeMethod* method) ;
  513. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4 (intptr_t ___0_cam, const RuntimeMethod* method) ;
  514. inline intptr_t MarshalledUnityObject_Marshal_TisTexture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_m0517D1A69A087C6E07CFDC89032285B81B12BF9C_inline (Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___0_obj, const RuntimeMethod* method)
  515. {
  516. return (( intptr_t (*) (Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700*, const RuntimeMethod*))MarshalledUnityObject_Marshal_TisRuntimeObject_m286B34400A212037E8EBD53DBFEAD7D23CDE8051_gshared_inline)(___0_obj, method);
  517. }
  518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012 (intptr_t ___0_cam, int32_t ___1_type, intptr_t ___2_buffer, int32_t ___3_x, int32_t ___4_y, int32_t ___5_width, int32_t ___6_height, const RuntimeMethod* method) ;
  519. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF (ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* __this, const RuntimeMethod* method) ;
  520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState__ctor_mDF51A64C76B610ED8B1BF46C3CB6F8224B246392 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, intptr_t ___0_ptr, bool ___1_owner, const RuntimeMethod* method) ;
  521. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method) ;
  522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VFXEventAttribute_CreateEventAttributeWrapper_m8875BE7EF5B016C001E79C5CC228969A98EA846A (const RuntimeMethod* method) ;
  523. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_SetWrapValue_mB74CE4A4E6203AA7E95F9446AC2CC043E21CB757 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, intptr_t ___0_ptrToEventAttribute, const RuntimeMethod* method) ;
  524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE (intptr_t ___0_ptr, const RuntimeMethod* method) ;
  525. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Release_m59F57A6E6C6C8FCA65E61C9D856847493997DBF8 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method) ;
  526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Shader_PropertyToID_mE98523D50F5656CAE89B30695C458253EB8956CA (String_t* ___0_name, const RuntimeMethod* method) ;
  527. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXOutputEventArgs__ctor_m4A6030F4BF7E27F5F682E0FC4211F53DF866ED56 (VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40* __this, int32_t ___0_nameId, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___1_eventAttribute, const RuntimeMethod* method) ;
  528. inline intptr_t MarshalledUnityObject_MarshalNotNull_TisVisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0_m57836753B4B7DEF5E3925BF5564FCD606542F077_inline (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* ___0_obj, const RuntimeMethod* method)
  529. {
  530. return (( intptr_t (*) (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0*, const RuntimeMethod*))MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline)(___0_obj, method);
  531. }
  532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  533. inline VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* Unmarshal_UnmarshalUnityObject_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m77DABBB2D20B699FB5303D09BC073B5252D82597_inline (intptr_t ___0_gcHandlePtr, const RuntimeMethod* method)
  534. {
  535. return (( VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* (*) (intptr_t, const RuntimeMethod*))Unmarshal_UnmarshalUnityObject_TisRuntimeObject_m2B04FEB8E4BB254DD6F827F3111C91F2AF16D04A_gshared_inline)(___0_gcHandlePtr, method);
  536. }
  537. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* VisualEffect_get_visualEffectAsset_m301FCE98B138CAB2E16B46CE365538ECA8AF5F00 (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* __this, const RuntimeMethod* method) ;
  538. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
  539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VFXEventAttribute_Internal_InstanciateVFXEventAttribute_m67D4914621592C8A2F54808E0F77F15831A63FE6 (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___0_vfxAsset, const RuntimeMethod* method) ;
  540. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VisualEffect_CreateVFXEventAttribute_mC4611FC064DF24028BA3E60D3D450B95541BEB6E (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* __this, const RuntimeMethod* method) ;
  541. inline void Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_inline (Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* __this, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40 ___0_obj, const RuntimeMethod* method)
  542. {
  543. (( void (*) (Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A*, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40, const RuntimeMethod*))Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_gshared_inline)(__this, ___0_obj, method);
  544. }
  545. inline intptr_t MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method)
  546. {
  547. return (( intptr_t (*) (RuntimeObject*, const RuntimeMethod*))MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline)(___0_obj, method);
  548. }
  549. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  550. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC Unmarshal_FromIntPtrUnsafe_mB304834C5EC431CC0FBE13C6BB97066F222BC55C_inline (intptr_t ___0_gcHandle, const RuntimeMethod* method) ;
  551. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  552. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline (intptr_t* ___0_from, const RuntimeMethod* method)
  553. {
  554. return (( GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* (*) (intptr_t*, const RuntimeMethod*))UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline)(___0_from, method);
  555. }
  556. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  557. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  558. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline (intptr_t ___0_handle, const RuntimeMethod* method) ;
  559. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline (intptr_t ___0_handle, const RuntimeMethod* method) ;
  560. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetTarget_mE0AF851834410E2AEA6285B2497751570236C794 (intptr_t ___0_handle, const RuntimeMethod* method) ;
  561. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF (intptr_t ___0_value, const RuntimeMethod* method) ;
  562. #ifdef __clang__
  563. #pragma clang diagnostic push
  564. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  565. #pragma clang diagnostic ignored "-Wunused-variable"
  566. #endif
  567. #ifdef __clang__
  568. #pragma clang diagnostic pop
  569. #endif
  570. #ifdef __clang__
  571. #pragma clang diagnostic push
  572. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  573. #pragma clang diagnostic ignored "-Wunused-variable"
  574. #endif
  575. #ifdef __clang__
  576. #pragma clang diagnostic pop
  577. #endif
  578. #ifdef __clang__
  579. #pragma clang diagnostic push
  580. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  581. #pragma clang diagnostic ignored "-Wunused-variable"
  582. #endif
  583. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled)
  584. {
  585. Exception_t* ___m_VfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_VfxAsset' of type 'VFXEventAttribute': Reference type field marshaling is not supported.");
  586. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_VfxAssetException, NULL);
  587. }
  588. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke_back(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled)
  589. {
  590. Exception_t* ___m_VfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_VfxAsset' of type 'VFXEventAttribute': Reference type field marshaling is not supported.");
  591. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_VfxAssetException, NULL);
  592. }
  593. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_pinvoke_cleanup(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_pinvoke& marshaled)
  594. {
  595. }
  596. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled)
  597. {
  598. Exception_t* ___m_VfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_VfxAsset' of type 'VFXEventAttribute': Reference type field marshaling is not supported.");
  599. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_VfxAssetException, NULL);
  600. }
  601. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com_back(const VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518& unmarshaled)
  602. {
  603. Exception_t* ___m_VfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_VfxAsset' of type 'VFXEventAttribute': Reference type field marshaling is not supported.");
  604. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_VfxAssetException, NULL);
  605. }
  606. IL2CPP_EXTERN_C void VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshal_com_cleanup(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_marshaled_com& marshaled)
  607. {
  608. }
  609. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute__ctor_m08E26E4F79DA1062FC43501FDFE00B9EF3ED3AE1 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, intptr_t ___0_ptr, bool ___1_owner, VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___2_vfxAsset, const RuntimeMethod* method)
  610. {
  611. {
  612. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  613. intptr_t L_0 = ___0_ptr;
  614. __this->___m_Ptr = L_0;
  615. bool L_1 = ___1_owner;
  616. __this->___m_Owner = L_1;
  617. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_2 = ___2_vfxAsset;
  618. __this->___m_VfxAsset = L_2;
  619. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_VfxAsset), (void*)L_2);
  620. return;
  621. }
  622. }
  623. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VFXEventAttribute_CreateEventAttributeWrapper_m8875BE7EF5B016C001E79C5CC228969A98EA846A (const RuntimeMethod* method)
  624. {
  625. static bool s_Il2CppMethodInitialized;
  626. if (!s_Il2CppMethodInitialized)
  627. {
  628. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_il2cpp_TypeInfo_var);
  629. s_Il2CppMethodInitialized = true;
  630. }
  631. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_0 = NULL;
  632. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_1 = NULL;
  633. {
  634. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_0 = (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)il2cpp_codegen_object_new(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_il2cpp_TypeInfo_var);
  635. VFXEventAttribute__ctor_m08E26E4F79DA1062FC43501FDFE00B9EF3ED3AE1(L_0, 0, (bool)0, (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688*)NULL, NULL);
  636. V_0 = L_0;
  637. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_1 = V_0;
  638. V_1 = L_1;
  639. goto IL_0012;
  640. }
  641. IL_0012:
  642. {
  643. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_2 = V_1;
  644. return L_2;
  645. }
  646. }
  647. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_SetWrapValue_mB74CE4A4E6203AA7E95F9446AC2CC043E21CB757 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, intptr_t ___0_ptrToEventAttribute, const RuntimeMethod* method)
  648. {
  649. bool V_0 = false;
  650. {
  651. bool L_0 = __this->___m_Owner;
  652. V_0 = L_0;
  653. bool L_1 = V_0;
  654. if (!L_1)
  655. {
  656. goto IL_0016;
  657. }
  658. }
  659. {
  660. Exception_t* L_2 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  661. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2149138D4858815F0CE2A684D1424F63B8B965D)), NULL);
  662. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VFXEventAttribute_SetWrapValue_mB74CE4A4E6203AA7E95F9446AC2CC043E21CB757_RuntimeMethod_var)));
  663. }
  664. IL_0016:
  665. {
  666. intptr_t L_3 = ___0_ptrToEventAttribute;
  667. __this->___m_Ptr = L_3;
  668. return;
  669. }
  670. }
  671. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157 (const RuntimeMethod* method)
  672. {
  673. typedef intptr_t (*VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157_ftn) ();
  674. static VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157_ftn _il2cpp_icall_func;
  675. if (!_il2cpp_icall_func)
  676. _il2cpp_icall_func = (VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXEventAttribute::Internal_Create()");
  677. intptr_t icallRetVal = _il2cpp_icall_func();
  678. return icallRetVal;
  679. }
  680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VFXEventAttribute_Internal_InstanciateVFXEventAttribute_m67D4914621592C8A2F54808E0F77F15831A63FE6 (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___0_vfxAsset, const RuntimeMethod* method)
  681. {
  682. static bool s_Il2CppMethodInitialized;
  683. if (!s_Il2CppMethodInitialized)
  684. {
  685. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_il2cpp_TypeInfo_var);
  686. s_Il2CppMethodInitialized = true;
  687. }
  688. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_0 = NULL;
  689. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_1 = NULL;
  690. {
  691. intptr_t L_0;
  692. L_0 = VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157(NULL);
  693. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_1 = ___0_vfxAsset;
  694. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_2 = (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)il2cpp_codegen_object_new(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518_il2cpp_TypeInfo_var);
  695. VFXEventAttribute__ctor_m08E26E4F79DA1062FC43501FDFE00B9EF3ED3AE1(L_2, L_0, (bool)1, L_1, NULL);
  696. V_0 = L_2;
  697. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_3 = V_0;
  698. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_4 = ___0_vfxAsset;
  699. NullCheck(L_3);
  700. VFXEventAttribute_Internal_InitFromAsset_mFA13F75CCECE6D2DAD270E37126F211724D5EFD2(L_3, L_4, NULL);
  701. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_5 = V_0;
  702. V_1 = L_5;
  703. goto IL_001a;
  704. }
  705. IL_001a:
  706. {
  707. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_6 = V_1;
  708. return L_6;
  709. }
  710. }
  711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_InitFromAsset_mFA13F75CCECE6D2DAD270E37126F211724D5EFD2 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* ___0_vfxAsset, const RuntimeMethod* method)
  712. {
  713. static bool s_Il2CppMethodInitialized;
  714. if (!s_Il2CppMethodInitialized)
  715. {
  716. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_Marshal_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m7B2F96E955EB6F7DDF793EF34F41EBF240CB151C_RuntimeMethod_var);
  717. s_Il2CppMethodInitialized = true;
  718. }
  719. intptr_t G_B2_0;
  720. memset((&G_B2_0), 0, sizeof(G_B2_0));
  721. intptr_t G_B1_0;
  722. memset((&G_B1_0), 0, sizeof(G_B1_0));
  723. {
  724. intptr_t L_0;
  725. L_0 = BindingsMarshaller_ConvertToNative_m91059026EFB50B8F90927D1B45D857C3FA02CB1F_inline(__this, NULL);
  726. intptr_t L_1 = L_0;
  727. if (L_1)
  728. {
  729. G_B2_0 = L_1;
  730. goto IL_000f;
  731. }
  732. G_B1_0 = L_1;
  733. }
  734. {
  735. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  736. G_B2_0 = G_B1_0;
  737. }
  738. IL_000f:
  739. {
  740. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_2 = ___0_vfxAsset;
  741. intptr_t L_3;
  742. L_3 = MarshalledUnityObject_Marshal_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m7B2F96E955EB6F7DDF793EF34F41EBF240CB151C_inline(L_2, MarshalledUnityObject_Marshal_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m7B2F96E955EB6F7DDF793EF34F41EBF240CB151C_RuntimeMethod_var);
  743. VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3(G_B2_0, L_3, NULL);
  744. return;
  745. }
  746. }
  747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Release_m959FB9B7EEC401D763A16AC1188F18B7F5B2D8F2 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, const RuntimeMethod* method)
  748. {
  749. bool V_0 = false;
  750. int32_t G_B3_0 = 0;
  751. {
  752. bool L_0 = __this->___m_Owner;
  753. if (!L_0)
  754. {
  755. goto IL_001b;
  756. }
  757. }
  758. {
  759. intptr_t L_1 = __this->___m_Ptr;
  760. bool L_2;
  761. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_1, 0, NULL);
  762. G_B3_0 = ((int32_t)(L_2));
  763. goto IL_001c;
  764. }
  765. IL_001b:
  766. {
  767. G_B3_0 = 0;
  768. }
  769. IL_001c:
  770. {
  771. V_0 = (bool)G_B3_0;
  772. bool L_3 = V_0;
  773. if (!L_3)
  774. {
  775. goto IL_002e;
  776. }
  777. }
  778. {
  779. intptr_t L_4 = __this->___m_Ptr;
  780. VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E(L_4, NULL);
  781. }
  782. IL_002e:
  783. {
  784. __this->___m_Ptr = 0;
  785. __this->___m_VfxAsset = (VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688*)NULL;
  786. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_VfxAsset), (void*)(VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688*)NULL);
  787. return;
  788. }
  789. }
  790. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Finalize_m7922B5B3EF84DB5BE447C5A6F4F6B5F00B3E4AA4 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, const RuntimeMethod* method)
  791. {
  792. {
  793. }
  794. {
  795. auto __finallyBlock = il2cpp::utils::Finally([&]
  796. {
  797. FINALLY_000b:
  798. {
  799. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  800. return;
  801. }
  802. });
  803. try
  804. {
  805. VFXEventAttribute_Release_m959FB9B7EEC401D763A16AC1188F18B7F5B2D8F2(__this, NULL);
  806. goto IL_0013;
  807. }
  808. catch(Il2CppExceptionWrapper& e)
  809. {
  810. __finallyBlock.StoreException(e.ex);
  811. }
  812. }
  813. IL_0013:
  814. {
  815. return;
  816. }
  817. }
  818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Dispose_m172293D888316328F19F4C7E03D50CD178E0EB36 (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* __this, const RuntimeMethod* method)
  819. {
  820. static bool s_Il2CppMethodInitialized;
  821. if (!s_Il2CppMethodInitialized)
  822. {
  823. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  824. s_Il2CppMethodInitialized = true;
  825. }
  826. {
  827. VFXEventAttribute_Release_m959FB9B7EEC401D763A16AC1188F18B7F5B2D8F2(__this, NULL);
  828. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  829. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  830. return;
  831. }
  832. }
  833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E (intptr_t ___0_ptr, const RuntimeMethod* method)
  834. {
  835. typedef void (*VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E_ftn) (intptr_t);
  836. static VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E_ftn _il2cpp_icall_func;
  837. if (!_il2cpp_icall_func)
  838. _il2cpp_icall_func = (VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXEventAttribute::Internal_Destroy(System.IntPtr)");
  839. _il2cpp_icall_func(___0_ptr);
  840. }
  841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3 (intptr_t ___0__unity_self, intptr_t ___1_vfxAsset, const RuntimeMethod* method)
  842. {
  843. typedef void (*VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3_ftn) (intptr_t, intptr_t);
  844. static VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3_ftn _il2cpp_icall_func;
  845. if (!_il2cpp_icall_func)
  846. _il2cpp_icall_func = (VFXEventAttribute_Internal_InitFromAsset_Injected_m94813F7077B5F2BE8F5D83D1883825F33B03E5B3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXEventAttribute::Internal_InitFromAsset_Injected(System.IntPtr,System.IntPtr)");
  847. _il2cpp_icall_func(___0__unity_self, ___1_vfxAsset);
  848. }
  849. #ifdef __clang__
  850. #pragma clang diagnostic pop
  851. #endif
  852. #ifdef __clang__
  853. #pragma clang diagnostic push
  854. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  855. #pragma clang diagnostic ignored "-Wunused-variable"
  856. #endif
  857. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m91059026EFB50B8F90927D1B45D857C3FA02CB1F (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___0_eventAttibute, const RuntimeMethod* method)
  858. {
  859. {
  860. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_0 = ___0_eventAttibute;
  861. NullCheck(L_0);
  862. intptr_t L_1 = L_0->___m_Ptr;
  863. return L_1;
  864. }
  865. }
  866. #ifdef __clang__
  867. #pragma clang diagnostic pop
  868. #endif
  869. #ifdef __clang__
  870. #pragma clang diagnostic push
  871. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  872. #pragma clang diagnostic ignored "-Wunused-variable"
  873. #endif
  874. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_pinvoke(const VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5& unmarshaled, VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_pinvoke& marshaled)
  875. {
  876. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  877. }
  878. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_pinvoke_back(const VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_pinvoke& marshaled, VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5& unmarshaled)
  879. {
  880. intptr_t unmarshaledm_Ptr_temp_0;
  881. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  882. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  883. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  884. }
  885. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_pinvoke_cleanup(VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_pinvoke& marshaled)
  886. {
  887. }
  888. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_com(const VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5& unmarshaled, VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_com& marshaled)
  889. {
  890. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  891. }
  892. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_com_back(const VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_com& marshaled, VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5& unmarshaled)
  893. {
  894. intptr_t unmarshaledm_Ptr_temp_0;
  895. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  896. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  897. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  898. }
  899. IL2CPP_EXTERN_C void VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshal_com_cleanup(VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_marshaled_com& marshaled)
  900. {
  901. }
  902. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXExpressionValues__ctor_mB5923888F1BBEEE55955E24514A69629D932DDD0 (VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* __this, const RuntimeMethod* method)
  903. {
  904. {
  905. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  906. return;
  907. }
  908. }
  909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* VFXExpressionValues_CreateExpressionValuesWrapper_m94D1AD2FD2FF7D005B0AEF2D22333D321631AACE (intptr_t ___0_ptr, const RuntimeMethod* method)
  910. {
  911. static bool s_Il2CppMethodInitialized;
  912. if (!s_Il2CppMethodInitialized)
  913. {
  914. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_il2cpp_TypeInfo_var);
  915. s_Il2CppMethodInitialized = true;
  916. }
  917. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* V_0 = NULL;
  918. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* V_1 = NULL;
  919. {
  920. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* L_0 = (VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5*)il2cpp_codegen_object_new(VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5_il2cpp_TypeInfo_var);
  921. VFXExpressionValues__ctor_mB5923888F1BBEEE55955E24514A69629D932DDD0(L_0, NULL);
  922. V_0 = L_0;
  923. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* L_1 = V_0;
  924. intptr_t L_2 = ___0_ptr;
  925. NullCheck(L_1);
  926. L_1->___m_Ptr = L_2;
  927. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* L_3 = V_0;
  928. V_1 = L_3;
  929. goto IL_0012;
  930. }
  931. IL_0012:
  932. {
  933. VFXExpressionValues_t361C45D33F7B5E9D85F8185EF47AA9ACF43063F5* L_4 = V_1;
  934. return L_4;
  935. }
  936. }
  937. #ifdef __clang__
  938. #pragma clang diagnostic pop
  939. #endif
  940. #ifdef __clang__
  941. #pragma clang diagnostic push
  942. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  943. #pragma clang diagnostic ignored "-Wunused-variable"
  944. #endif
  945. #ifdef __clang__
  946. #pragma clang diagnostic pop
  947. #endif
  948. #ifdef __clang__
  949. #pragma clang diagnostic push
  950. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  951. #pragma clang diagnostic ignored "-Wunused-variable"
  952. #endif
  953. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_pinvoke(const VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48& unmarshaled, VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_pinvoke& marshaled)
  954. {
  955. Exception_t* ___vfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'vfxAsset' of type 'VFXBatchedEffectInfo': Reference type field marshaling is not supported.");
  956. IL2CPP_RAISE_MANAGED_EXCEPTION(___vfxAssetException, NULL);
  957. }
  958. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_pinvoke_back(const VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_pinvoke& marshaled, VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48& unmarshaled)
  959. {
  960. Exception_t* ___vfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'vfxAsset' of type 'VFXBatchedEffectInfo': Reference type field marshaling is not supported.");
  961. IL2CPP_RAISE_MANAGED_EXCEPTION(___vfxAssetException, NULL);
  962. }
  963. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_pinvoke_cleanup(VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_pinvoke& marshaled)
  964. {
  965. }
  966. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_com(const VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48& unmarshaled, VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_com& marshaled)
  967. {
  968. Exception_t* ___vfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'vfxAsset' of type 'VFXBatchedEffectInfo': Reference type field marshaling is not supported.");
  969. IL2CPP_RAISE_MANAGED_EXCEPTION(___vfxAssetException, NULL);
  970. }
  971. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_com_back(const VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_com& marshaled, VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48& unmarshaled)
  972. {
  973. Exception_t* ___vfxAssetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'vfxAsset' of type 'VFXBatchedEffectInfo': Reference type field marshaling is not supported.");
  974. IL2CPP_RAISE_MANAGED_EXCEPTION(___vfxAssetException, NULL);
  975. }
  976. IL2CPP_EXTERN_C void VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshal_com_cleanup(VFXBatchedEffectInfo_t9FD17831A7E3BF5267119337DDDA16BAEAF64D48_marshaled_com& marshaled)
  977. {
  978. }
  979. #ifdef __clang__
  980. #pragma clang diagnostic pop
  981. #endif
  982. #ifdef __clang__
  983. #pragma clang diagnostic push
  984. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  985. #pragma clang diagnostic ignored "-Wunused-variable"
  986. #endif
  987. #ifdef __clang__
  988. #pragma clang diagnostic pop
  989. #endif
  990. #ifdef __clang__
  991. #pragma clang diagnostic push
  992. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  993. #pragma clang diagnostic ignored "-Wunused-variable"
  994. #endif
  995. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_ProcessCameraCommand_m58F378DDAE272DC813C6E8D7C8E4926D709A0BA1 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_cam, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___1_cmd, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 ___2_camXRSettings, CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___3_results, const RuntimeMethod* method)
  996. {
  997. static bool s_Il2CppMethodInitialized;
  998. if (!s_Il2CppMethodInitialized)
  999. {
  1000. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1001. s_Il2CppMethodInitialized = true;
  1002. }
  1003. {
  1004. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_cam;
  1005. CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_1 = ___1_cmd;
  1006. VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 L_2 = ___2_camXRSettings;
  1007. CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_3 = ___3_results;
  1008. intptr_t L_4 = L_3.___ptr;
  1009. il2cpp_codegen_runtime_class_init_inline(VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1010. VFXManager_Internal_ProcessCameraCommand_mD1E50A787623A201B74EA5C6B68B02A35CA1DFC9(L_0, L_1, L_2, L_4, NULL);
  1011. return;
  1012. }
  1013. }
  1014. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_Internal_ProcessCameraCommand_mD1E50A787623A201B74EA5C6B68B02A35CA1DFC9 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_cam, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___1_cmd, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 ___2_camXRSettings, intptr_t ___3_cullResults, const RuntimeMethod* method)
  1015. {
  1016. static bool s_Il2CppMethodInitialized;
  1017. if (!s_Il2CppMethodInitialized)
  1018. {
  1019. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1020. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1021. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B);
  1022. s_Il2CppMethodInitialized = true;
  1023. }
  1024. intptr_t G_B4_0;
  1025. memset((&G_B4_0), 0, sizeof(G_B4_0));
  1026. intptr_t G_B3_0;
  1027. memset((&G_B3_0), 0, sizeof(G_B3_0));
  1028. intptr_t G_B6_0;
  1029. memset((&G_B6_0), 0, sizeof(G_B6_0));
  1030. intptr_t G_B5_0;
  1031. memset((&G_B5_0), 0, sizeof(G_B5_0));
  1032. intptr_t G_B7_0;
  1033. memset((&G_B7_0), 0, sizeof(G_B7_0));
  1034. intptr_t G_B7_1;
  1035. memset((&G_B7_1), 0, sizeof(G_B7_1));
  1036. {
  1037. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_cam;
  1038. if (L_0)
  1039. {
  1040. goto IL_000e;
  1041. }
  1042. }
  1043. {
  1044. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = ___0_cam;
  1045. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_1, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1046. }
  1047. IL_000e:
  1048. {
  1049. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2 = ___0_cam;
  1050. intptr_t L_3;
  1051. L_3 = MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_inline(L_2, MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1052. intptr_t L_4 = L_3;
  1053. if (L_4)
  1054. {
  1055. G_B4_0 = L_4;
  1056. goto IL_0023;
  1057. }
  1058. G_B3_0 = L_4;
  1059. }
  1060. {
  1061. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5 = ___0_cam;
  1062. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_5, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1063. G_B4_0 = G_B3_0;
  1064. }
  1065. IL_0023:
  1066. {
  1067. CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_6 = ___1_cmd;
  1068. if (!L_6)
  1069. {
  1070. G_B6_0 = G_B4_0;
  1071. goto IL_002f;
  1072. }
  1073. G_B5_0 = G_B4_0;
  1074. }
  1075. {
  1076. CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_7 = ___1_cmd;
  1077. intptr_t L_8;
  1078. L_8 = BindingsMarshaller_ConvertToNative_mAA01170CFDC728A3BBFDB5E6953B9649292A4D08_inline(L_7, NULL);
  1079. G_B7_0 = L_8;
  1080. G_B7_1 = G_B5_0;
  1081. goto IL_0032;
  1082. }
  1083. IL_002f:
  1084. {
  1085. G_B7_0 = ((intptr_t)0);
  1086. G_B7_1 = G_B6_0;
  1087. }
  1088. IL_0032:
  1089. {
  1090. intptr_t L_9 = ___3_cullResults;
  1091. il2cpp_codegen_runtime_class_init_inline(VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1092. VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755(G_B7_1, G_B7_0, (&___2_camXRSettings), L_9, NULL);
  1093. return;
  1094. }
  1095. }
  1096. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VFXManager_IsCameraBufferNeeded_m91EC688346FAC7B993581D199FB4E8A84BF0EF2E (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_cam, const RuntimeMethod* method)
  1097. {
  1098. static bool s_Il2CppMethodInitialized;
  1099. if (!s_Il2CppMethodInitialized)
  1100. {
  1101. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1102. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1103. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B);
  1104. s_Il2CppMethodInitialized = true;
  1105. }
  1106. intptr_t G_B4_0;
  1107. memset((&G_B4_0), 0, sizeof(G_B4_0));
  1108. intptr_t G_B3_0;
  1109. memset((&G_B3_0), 0, sizeof(G_B3_0));
  1110. {
  1111. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_cam;
  1112. if (L_0)
  1113. {
  1114. goto IL_000e;
  1115. }
  1116. }
  1117. {
  1118. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = ___0_cam;
  1119. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_1, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1120. }
  1121. IL_000e:
  1122. {
  1123. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2 = ___0_cam;
  1124. intptr_t L_3;
  1125. L_3 = MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_inline(L_2, MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1126. intptr_t L_4 = L_3;
  1127. if (L_4)
  1128. {
  1129. G_B4_0 = L_4;
  1130. goto IL_0023;
  1131. }
  1132. G_B3_0 = L_4;
  1133. }
  1134. {
  1135. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5 = ___0_cam;
  1136. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_5, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1137. G_B4_0 = G_B3_0;
  1138. }
  1139. IL_0023:
  1140. {
  1141. il2cpp_codegen_runtime_class_init_inline(VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1142. int32_t L_6;
  1143. L_6 = VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4(G_B4_0, NULL);
  1144. return L_6;
  1145. }
  1146. }
  1147. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_SetCameraBuffer_mCFA9702671C450459EF72FFC7054BA9D37412F36 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_cam, int32_t ___1_type, Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___2_buffer, int32_t ___3_x, int32_t ___4_y, int32_t ___5_width, int32_t ___6_height, const RuntimeMethod* method)
  1148. {
  1149. static bool s_Il2CppMethodInitialized;
  1150. if (!s_Il2CppMethodInitialized)
  1151. {
  1152. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1153. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_Marshal_TisTexture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_m0517D1A69A087C6E07CFDC89032285B81B12BF9C_RuntimeMethod_var);
  1154. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1155. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B);
  1156. s_Il2CppMethodInitialized = true;
  1157. }
  1158. intptr_t G_B4_0;
  1159. memset((&G_B4_0), 0, sizeof(G_B4_0));
  1160. intptr_t G_B3_0;
  1161. memset((&G_B3_0), 0, sizeof(G_B3_0));
  1162. {
  1163. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_cam;
  1164. if (L_0)
  1165. {
  1166. goto IL_000e;
  1167. }
  1168. }
  1169. {
  1170. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = ___0_cam;
  1171. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_1, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1172. }
  1173. IL_000e:
  1174. {
  1175. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2 = ___0_cam;
  1176. intptr_t L_3;
  1177. L_3 = MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_inline(L_2, MarshalledUnityObject_MarshalNotNull_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m15924AC4F274B53871C5D6A6938813258F728905_RuntimeMethod_var);
  1178. intptr_t L_4 = L_3;
  1179. if (L_4)
  1180. {
  1181. G_B4_0 = L_4;
  1182. goto IL_0023;
  1183. }
  1184. G_B3_0 = L_4;
  1185. }
  1186. {
  1187. Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5 = ___0_cam;
  1188. ThrowHelper_ThrowArgumentNullException_m57232D0804E4F65D1C0D86129C5BFD0DC950CA01(L_5, _stringLiteralF0A5D0D997E726FCE49EBAE43774530FA71B1A0B, NULL);
  1189. G_B4_0 = G_B3_0;
  1190. }
  1191. IL_0023:
  1192. {
  1193. int32_t L_6 = ___1_type;
  1194. Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_7 = ___2_buffer;
  1195. intptr_t L_8;
  1196. L_8 = MarshalledUnityObject_Marshal_TisTexture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_m0517D1A69A087C6E07CFDC89032285B81B12BF9C_inline(L_7, MarshalledUnityObject_Marshal_TisTexture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_m0517D1A69A087C6E07CFDC89032285B81B12BF9C_RuntimeMethod_var);
  1197. int32_t L_9 = ___3_x;
  1198. int32_t L_10 = ___4_y;
  1199. int32_t L_11 = ___5_width;
  1200. int32_t L_12 = ___6_height;
  1201. il2cpp_codegen_runtime_class_init_inline(VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1202. VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012(G_B4_0, L_6, L_8, L_9, L_10, L_11, L_12, NULL);
  1203. return;
  1204. }
  1205. }
  1206. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager__cctor_mAD02D20E3B33A9A3C291A9C79D3B243AA54CADC0 (const RuntimeMethod* method)
  1207. {
  1208. static bool s_Il2CppMethodInitialized;
  1209. if (!s_Il2CppMethodInitialized)
  1210. {
  1211. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var);
  1212. s_Il2CppMethodInitialized = true;
  1213. }
  1214. VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 V_0;
  1215. memset((&V_0), 0, sizeof(V_0));
  1216. {
  1217. il2cpp_codegen_initobj((&V_0), sizeof(VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92));
  1218. (&V_0)->___viewTotal = 1;
  1219. (&V_0)->___viewCount = 1;
  1220. (&V_0)->___viewOffset = 0;
  1221. VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 L_0 = V_0;
  1222. ((VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_StaticFields*)il2cpp_codegen_static_fields_for(VFXManager_tBD98CA24D5E15AFD9DAA3AF6B51F348C173A7E2E_il2cpp_TypeInfo_var))->___kDefaultCameraXRSettings = L_0;
  1223. return;
  1224. }
  1225. }
  1226. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755 (intptr_t ___0_cam, intptr_t ___1_cmd, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* ___2_camXRSettings, intptr_t ___3_cullResults, const RuntimeMethod* method)
  1227. {
  1228. typedef void (*VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755_ftn) (intptr_t, intptr_t, VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92*, intptr_t);
  1229. static VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755_ftn _il2cpp_icall_func;
  1230. if (!_il2cpp_icall_func)
  1231. _il2cpp_icall_func = (VFXManager_Internal_ProcessCameraCommand_Injected_mFE3E3C4C23D574F846F23FCD14D4F0E6FF352755_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXManager::Internal_ProcessCameraCommand_Injected(System.IntPtr,System.IntPtr,UnityEngine.VFX.VFXCameraXRSettings&,System.IntPtr)");
  1232. _il2cpp_icall_func(___0_cam, ___1_cmd, ___2_camXRSettings, ___3_cullResults);
  1233. }
  1234. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4 (intptr_t ___0_cam, const RuntimeMethod* method)
  1235. {
  1236. typedef int32_t (*VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4_ftn) (intptr_t);
  1237. static VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4_ftn _il2cpp_icall_func;
  1238. if (!_il2cpp_icall_func)
  1239. _il2cpp_icall_func = (VFXManager_IsCameraBufferNeeded_Injected_m31A255F72EF385A5C0638FBFF7CCD4C37B476BE4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXManager::IsCameraBufferNeeded_Injected(System.IntPtr)");
  1240. int32_t icallRetVal = _il2cpp_icall_func(___0_cam);
  1241. return icallRetVal;
  1242. }
  1243. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012 (intptr_t ___0_cam, int32_t ___1_type, intptr_t ___2_buffer, int32_t ___3_x, int32_t ___4_y, int32_t ___5_width, int32_t ___6_height, const RuntimeMethod* method)
  1244. {
  1245. typedef void (*VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012_ftn) (intptr_t, int32_t, intptr_t, int32_t, int32_t, int32_t, int32_t);
  1246. static VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012_ftn _il2cpp_icall_func;
  1247. if (!_il2cpp_icall_func)
  1248. _il2cpp_icall_func = (VFXManager_SetCameraBuffer_Injected_m0DA32902D12E05270744FE39BEF7FCE338648012_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXManager::SetCameraBuffer_Injected(System.IntPtr,UnityEngine.VFX.VFXCameraBufferTypes,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)");
  1249. _il2cpp_icall_func(___0_cam, ___1_type, ___2_buffer, ___3_x, ___4_y, ___5_width, ___6_height);
  1250. }
  1251. #ifdef __clang__
  1252. #pragma clang diagnostic pop
  1253. #endif
  1254. #ifdef __clang__
  1255. #pragma clang diagnostic push
  1256. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1257. #pragma clang diagnostic ignored "-Wunused-variable"
  1258. #endif
  1259. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerCallbacks__ctor_mF8C2AB380D2D25B5309E22DA5A0F48ECE40BAAEB (VFXSpawnerCallbacks_t047450F52C1C8F2F74DF560269C803FCD61AF9F7* __this, const RuntimeMethod* method)
  1260. {
  1261. {
  1262. ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF(__this, NULL);
  1263. return;
  1264. }
  1265. }
  1266. #ifdef __clang__
  1267. #pragma clang diagnostic pop
  1268. #endif
  1269. #ifdef __clang__
  1270. #pragma clang diagnostic push
  1271. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1272. #pragma clang diagnostic ignored "-Wunused-variable"
  1273. #endif
  1274. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_pinvoke(const VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281& unmarshaled, VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_pinvoke& marshaled)
  1275. {
  1276. Exception_t* ___m_WrapEventAttributeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_WrapEventAttribute' of type 'VFXSpawnerState': Reference type field marshaling is not supported.");
  1277. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_WrapEventAttributeException, NULL);
  1278. }
  1279. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_pinvoke_back(const VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_pinvoke& marshaled, VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281& unmarshaled)
  1280. {
  1281. Exception_t* ___m_WrapEventAttributeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_WrapEventAttribute' of type 'VFXSpawnerState': Reference type field marshaling is not supported.");
  1282. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_WrapEventAttributeException, NULL);
  1283. }
  1284. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_pinvoke_cleanup(VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_pinvoke& marshaled)
  1285. {
  1286. }
  1287. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_com(const VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281& unmarshaled, VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_com& marshaled)
  1288. {
  1289. Exception_t* ___m_WrapEventAttributeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_WrapEventAttribute' of type 'VFXSpawnerState': Reference type field marshaling is not supported.");
  1290. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_WrapEventAttributeException, NULL);
  1291. }
  1292. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_com_back(const VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_com& marshaled, VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281& unmarshaled)
  1293. {
  1294. Exception_t* ___m_WrapEventAttributeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_WrapEventAttribute' of type 'VFXSpawnerState': Reference type field marshaling is not supported.");
  1295. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_WrapEventAttributeException, NULL);
  1296. }
  1297. IL2CPP_EXTERN_C void VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshal_com_cleanup(VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_marshaled_com& marshaled)
  1298. {
  1299. }
  1300. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState__ctor_mDF51A64C76B610ED8B1BF46C3CB6F8224B246392 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, intptr_t ___0_ptr, bool ___1_owner, const RuntimeMethod* method)
  1301. {
  1302. {
  1303. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1304. intptr_t L_0 = ___0_ptr;
  1305. __this->___m_Ptr = L_0;
  1306. bool L_1 = ___1_owner;
  1307. __this->___m_Owner = L_1;
  1308. return;
  1309. }
  1310. }
  1311. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* VFXSpawnerState_CreateSpawnerStateWrapper_mDB5B5B796BD1A60A20A1EDC2F959490804D0E0EA (const RuntimeMethod* method)
  1312. {
  1313. static bool s_Il2CppMethodInitialized;
  1314. if (!s_Il2CppMethodInitialized)
  1315. {
  1316. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_il2cpp_TypeInfo_var);
  1317. s_Il2CppMethodInitialized = true;
  1318. }
  1319. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* V_0 = NULL;
  1320. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* V_1 = NULL;
  1321. {
  1322. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* L_0 = (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281*)il2cpp_codegen_object_new(VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281_il2cpp_TypeInfo_var);
  1323. VFXSpawnerState__ctor_mDF51A64C76B610ED8B1BF46C3CB6F8224B246392(L_0, 0, (bool)0, NULL);
  1324. V_0 = L_0;
  1325. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* L_1 = V_0;
  1326. NullCheck(L_1);
  1327. VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F(L_1, NULL);
  1328. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* L_2 = V_0;
  1329. V_1 = L_2;
  1330. goto IL_0018;
  1331. }
  1332. IL_0018:
  1333. {
  1334. VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* L_3 = V_1;
  1335. return L_3;
  1336. }
  1337. }
  1338. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method)
  1339. {
  1340. bool V_0 = false;
  1341. bool V_1 = false;
  1342. {
  1343. bool L_0 = __this->___m_Owner;
  1344. V_0 = L_0;
  1345. bool L_1 = V_0;
  1346. if (!L_1)
  1347. {
  1348. goto IL_0016;
  1349. }
  1350. }
  1351. {
  1352. Exception_t* L_2 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1353. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2149138D4858815F0CE2A684D1424F63B8B965D)), NULL);
  1354. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F_RuntimeMethod_var)));
  1355. }
  1356. IL_0016:
  1357. {
  1358. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_3 = __this->___m_WrapEventAttribute;
  1359. V_1 = (bool)((!(((RuntimeObject*)(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  1360. bool L_4 = V_1;
  1361. if (!L_4)
  1362. {
  1363. goto IL_002e;
  1364. }
  1365. }
  1366. {
  1367. Exception_t* L_5 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1368. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49368FB5069A33D81E54BC6B2CC50811BBD8D856)), NULL);
  1369. IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VFXSpawnerState_PrepareWrapper_mB72BD83CBCF670DCF0FB464BBEAFBB2E6D285D5F_RuntimeMethod_var)));
  1370. }
  1371. IL_002e:
  1372. {
  1373. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_6;
  1374. L_6 = VFXEventAttribute_CreateEventAttributeWrapper_m8875BE7EF5B016C001E79C5CC228969A98EA846A(NULL);
  1375. __this->___m_WrapEventAttribute = L_6;
  1376. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_WrapEventAttribute), (void*)L_6);
  1377. return;
  1378. }
  1379. }
  1380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_SetWrapValue_m84E0796288A032B26ADCEF35AE94F5CC95A3FAB5 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, intptr_t ___0_ptrToSpawnerState, intptr_t ___1_ptrToEventAttribute, const RuntimeMethod* method)
  1381. {
  1382. bool V_0 = false;
  1383. bool V_1 = false;
  1384. {
  1385. bool L_0 = __this->___m_Owner;
  1386. V_0 = L_0;
  1387. bool L_1 = V_0;
  1388. if (!L_1)
  1389. {
  1390. goto IL_0016;
  1391. }
  1392. }
  1393. {
  1394. Exception_t* L_2 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1395. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2149138D4858815F0CE2A684D1424F63B8B965D)), NULL);
  1396. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VFXSpawnerState_SetWrapValue_m84E0796288A032B26ADCEF35AE94F5CC95A3FAB5_RuntimeMethod_var)));
  1397. }
  1398. IL_0016:
  1399. {
  1400. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_3 = __this->___m_WrapEventAttribute;
  1401. V_1 = (bool)((((RuntimeObject*)(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1402. bool L_4 = V_1;
  1403. if (!L_4)
  1404. {
  1405. goto IL_002e;
  1406. }
  1407. }
  1408. {
  1409. Exception_t* L_5 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1410. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51A0C417C7235FF0A4099CB1E645148600EE362A)), NULL);
  1411. IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VFXSpawnerState_SetWrapValue_m84E0796288A032B26ADCEF35AE94F5CC95A3FAB5_RuntimeMethod_var)));
  1412. }
  1413. IL_002e:
  1414. {
  1415. intptr_t L_6 = ___0_ptrToSpawnerState;
  1416. __this->___m_Ptr = L_6;
  1417. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_7 = __this->___m_WrapEventAttribute;
  1418. intptr_t L_8 = ___1_ptrToEventAttribute;
  1419. NullCheck(L_7);
  1420. VFXEventAttribute_SetWrapValue_mB74CE4A4E6203AA7E95F9446AC2CC043E21CB757(L_7, L_8, NULL);
  1421. return;
  1422. }
  1423. }
  1424. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Release_m59F57A6E6C6C8FCA65E61C9D856847493997DBF8 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method)
  1425. {
  1426. bool V_0 = false;
  1427. int32_t G_B3_0 = 0;
  1428. {
  1429. intptr_t L_0 = __this->___m_Ptr;
  1430. bool L_1;
  1431. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  1432. if (!L_1)
  1433. {
  1434. goto IL_001b;
  1435. }
  1436. }
  1437. {
  1438. bool L_2 = __this->___m_Owner;
  1439. G_B3_0 = ((int32_t)(L_2));
  1440. goto IL_001c;
  1441. }
  1442. IL_001b:
  1443. {
  1444. G_B3_0 = 0;
  1445. }
  1446. IL_001c:
  1447. {
  1448. V_0 = (bool)G_B3_0;
  1449. bool L_3 = V_0;
  1450. if (!L_3)
  1451. {
  1452. goto IL_002e;
  1453. }
  1454. }
  1455. {
  1456. intptr_t L_4 = __this->___m_Ptr;
  1457. VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE(L_4, NULL);
  1458. }
  1459. IL_002e:
  1460. {
  1461. __this->___m_Ptr = 0;
  1462. __this->___m_WrapEventAttribute = (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)NULL;
  1463. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_WrapEventAttribute), (void*)(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)NULL);
  1464. return;
  1465. }
  1466. }
  1467. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Finalize_mAE69A225C7EC591B6B1DE3B01560F5639C6A7839 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method)
  1468. {
  1469. {
  1470. }
  1471. {
  1472. auto __finallyBlock = il2cpp::utils::Finally([&]
  1473. {
  1474. FINALLY_000b:
  1475. {
  1476. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  1477. return;
  1478. }
  1479. });
  1480. try
  1481. {
  1482. VFXSpawnerState_Release_m59F57A6E6C6C8FCA65E61C9D856847493997DBF8(__this, NULL);
  1483. goto IL_0013;
  1484. }
  1485. catch(Il2CppExceptionWrapper& e)
  1486. {
  1487. __finallyBlock.StoreException(e.ex);
  1488. }
  1489. }
  1490. IL_0013:
  1491. {
  1492. return;
  1493. }
  1494. }
  1495. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Dispose_m7098E99835290AAF0DFFE32EE2D901CA455975A4 (VFXSpawnerState_tCAF49FEA2C8BB3E0BB1E9C3C3F2649576CB64281* __this, const RuntimeMethod* method)
  1496. {
  1497. static bool s_Il2CppMethodInitialized;
  1498. if (!s_Il2CppMethodInitialized)
  1499. {
  1500. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  1501. s_Il2CppMethodInitialized = true;
  1502. }
  1503. {
  1504. VFXSpawnerState_Release_m59F57A6E6C6C8FCA65E61C9D856847493997DBF8(__this, NULL);
  1505. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  1506. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  1507. return;
  1508. }
  1509. }
  1510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE (intptr_t ___0_ptr, const RuntimeMethod* method)
  1511. {
  1512. typedef void (*VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE_ftn) (intptr_t);
  1513. static VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE_ftn _il2cpp_icall_func;
  1514. if (!_il2cpp_icall_func)
  1515. _il2cpp_icall_func = (VFXSpawnerState_Internal_Destroy_m09736C48CDFFFECFDCFEBF16A32E1C98695680AE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VFXSpawnerState::Internal_Destroy(System.IntPtr)");
  1516. _il2cpp_icall_func(___0_ptr);
  1517. }
  1518. #ifdef __clang__
  1519. #pragma clang diagnostic pop
  1520. #endif
  1521. #ifdef __clang__
  1522. #pragma clang diagnostic push
  1523. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1524. #pragma clang diagnostic ignored "-Wunused-variable"
  1525. #endif
  1526. #ifdef __clang__
  1527. #pragma clang diagnostic pop
  1528. #endif
  1529. #ifdef __clang__
  1530. #pragma clang diagnostic push
  1531. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1532. #pragma clang diagnostic ignored "-Wunused-variable"
  1533. #endif
  1534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualEffectAsset__cctor_mFA21B1B8EA5A9FA1BDB43654B4F0CB67E923931A (const RuntimeMethod* method)
  1535. {
  1536. static bool s_Il2CppMethodInitialized;
  1537. if (!s_Il2CppMethodInitialized)
  1538. {
  1539. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_il2cpp_TypeInfo_var);
  1540. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55CE32F73183782A9E356F9B9E36223057BA0BA3);
  1541. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD6A1C41DBA2920AB3C87C187F0272E6380C0AAA);
  1542. s_Il2CppMethodInitialized = true;
  1543. }
  1544. {
  1545. int32_t L_0;
  1546. L_0 = Shader_PropertyToID_mE98523D50F5656CAE89B30695C458253EB8956CA(_stringLiteralDD6A1C41DBA2920AB3C87C187F0272E6380C0AAA, NULL);
  1547. ((VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_StaticFields*)il2cpp_codegen_static_fields_for(VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_il2cpp_TypeInfo_var))->___PlayEventID = L_0;
  1548. int32_t L_1;
  1549. L_1 = Shader_PropertyToID_mE98523D50F5656CAE89B30695C458253EB8956CA(_stringLiteral55CE32F73183782A9E356F9B9E36223057BA0BA3, NULL);
  1550. ((VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_StaticFields*)il2cpp_codegen_static_fields_for(VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_il2cpp_TypeInfo_var))->___StopEventID = L_1;
  1551. return;
  1552. }
  1553. }
  1554. #ifdef __clang__
  1555. #pragma clang diagnostic pop
  1556. #endif
  1557. #ifdef __clang__
  1558. #pragma clang diagnostic push
  1559. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1560. #pragma clang diagnostic ignored "-Wunused-variable"
  1561. #endif
  1562. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_pinvoke(const VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40& unmarshaled, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_pinvoke& marshaled)
  1563. {
  1564. Exception_t* ___U3CeventAttributeU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<eventAttribute>k__BackingField' of type 'VFXOutputEventArgs': Reference type field marshaling is not supported.");
  1565. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CeventAttributeU3Ek__BackingFieldException, NULL);
  1566. }
  1567. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_pinvoke_back(const VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_pinvoke& marshaled, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40& unmarshaled)
  1568. {
  1569. Exception_t* ___U3CeventAttributeU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<eventAttribute>k__BackingField' of type 'VFXOutputEventArgs': Reference type field marshaling is not supported.");
  1570. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CeventAttributeU3Ek__BackingFieldException, NULL);
  1571. }
  1572. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_pinvoke_cleanup(VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_pinvoke& marshaled)
  1573. {
  1574. }
  1575. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_com(const VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40& unmarshaled, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_com& marshaled)
  1576. {
  1577. Exception_t* ___U3CeventAttributeU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<eventAttribute>k__BackingField' of type 'VFXOutputEventArgs': Reference type field marshaling is not supported.");
  1578. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CeventAttributeU3Ek__BackingFieldException, NULL);
  1579. }
  1580. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_com_back(const VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_com& marshaled, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40& unmarshaled)
  1581. {
  1582. Exception_t* ___U3CeventAttributeU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<eventAttribute>k__BackingField' of type 'VFXOutputEventArgs': Reference type field marshaling is not supported.");
  1583. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CeventAttributeU3Ek__BackingFieldException, NULL);
  1584. }
  1585. IL2CPP_EXTERN_C void VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshal_com_cleanup(VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40_marshaled_com& marshaled)
  1586. {
  1587. }
  1588. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VFXOutputEventArgs__ctor_m4A6030F4BF7E27F5F682E0FC4211F53DF866ED56 (VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40* __this, int32_t ___0_nameId, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___1_eventAttribute, const RuntimeMethod* method)
  1589. {
  1590. {
  1591. int32_t L_0 = ___0_nameId;
  1592. __this->___U3CnameIdU3Ek__BackingField = L_0;
  1593. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_1 = ___1_eventAttribute;
  1594. __this->___U3CeventAttributeU3Ek__BackingField = L_1;
  1595. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CeventAttributeU3Ek__BackingField), (void*)L_1);
  1596. return;
  1597. }
  1598. }
  1599. IL2CPP_EXTERN_C void VFXOutputEventArgs__ctor_m4A6030F4BF7E27F5F682E0FC4211F53DF866ED56_AdjustorThunk (RuntimeObject* __this, int32_t ___0_nameId, VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___1_eventAttribute, const RuntimeMethod* method)
  1600. {
  1601. VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40* _thisAdjusted;
  1602. int32_t _offset = 1;
  1603. _thisAdjusted = reinterpret_cast<VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40*>(__this + _offset);
  1604. VFXOutputEventArgs__ctor_m4A6030F4BF7E27F5F682E0FC4211F53DF866ED56(_thisAdjusted, ___0_nameId, ___1_eventAttribute, method);
  1605. }
  1606. #ifdef __clang__
  1607. #pragma clang diagnostic pop
  1608. #endif
  1609. #ifdef __clang__
  1610. #pragma clang diagnostic push
  1611. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1612. #pragma clang diagnostic ignored "-Wunused-variable"
  1613. #endif
  1614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* VisualEffect_get_visualEffectAsset_m301FCE98B138CAB2E16B46CE365538ECA8AF5F00 (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* __this, const RuntimeMethod* method)
  1615. {
  1616. static bool s_Il2CppMethodInitialized;
  1617. if (!s_Il2CppMethodInitialized)
  1618. {
  1619. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisVisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0_m57836753B4B7DEF5E3925BF5564FCD606542F077_RuntimeMethod_var);
  1620. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Unmarshal_UnmarshalUnityObject_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m77DABBB2D20B699FB5303D09BC073B5252D82597_RuntimeMethod_var);
  1621. s_Il2CppMethodInitialized = true;
  1622. }
  1623. intptr_t G_B2_0;
  1624. memset((&G_B2_0), 0, sizeof(G_B2_0));
  1625. intptr_t G_B1_0;
  1626. memset((&G_B1_0), 0, sizeof(G_B1_0));
  1627. {
  1628. intptr_t L_0;
  1629. L_0 = MarshalledUnityObject_MarshalNotNull_TisVisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0_m57836753B4B7DEF5E3925BF5564FCD606542F077_inline(__this, MarshalledUnityObject_MarshalNotNull_TisVisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0_m57836753B4B7DEF5E3925BF5564FCD606542F077_RuntimeMethod_var);
  1630. intptr_t L_1 = L_0;
  1631. if (L_1)
  1632. {
  1633. G_B2_0 = L_1;
  1634. goto IL_000f;
  1635. }
  1636. G_B1_0 = L_1;
  1637. }
  1638. {
  1639. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  1640. G_B2_0 = G_B1_0;
  1641. }
  1642. IL_000f:
  1643. {
  1644. intptr_t L_2;
  1645. L_2 = VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0(G_B2_0, NULL);
  1646. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_3;
  1647. L_3 = Unmarshal_UnmarshalUnityObject_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m77DABBB2D20B699FB5303D09BC073B5252D82597_inline(L_2, Unmarshal_UnmarshalUnityObject_TisVisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688_m77DABBB2D20B699FB5303D09BC073B5252D82597_RuntimeMethod_var);
  1648. return L_3;
  1649. }
  1650. }
  1651. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VisualEffect_CreateVFXEventAttribute_mC4611FC064DF24028BA3E60D3D450B95541BEB6E (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* __this, const RuntimeMethod* method)
  1652. {
  1653. static bool s_Il2CppMethodInitialized;
  1654. if (!s_Il2CppMethodInitialized)
  1655. {
  1656. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1657. s_Il2CppMethodInitialized = true;
  1658. }
  1659. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_0 = NULL;
  1660. bool V_1 = false;
  1661. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_2 = NULL;
  1662. {
  1663. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_0;
  1664. L_0 = VisualEffect_get_visualEffectAsset_m301FCE98B138CAB2E16B46CE365538ECA8AF5F00(__this, NULL);
  1665. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1666. bool L_1;
  1667. L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  1668. V_1 = L_1;
  1669. bool L_2 = V_1;
  1670. if (!L_2)
  1671. {
  1672. goto IL_0015;
  1673. }
  1674. }
  1675. {
  1676. V_2 = (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)NULL;
  1677. goto IL_0025;
  1678. }
  1679. IL_0015:
  1680. {
  1681. VisualEffectAsset_t0CD57FD9980CD68033BD96DA356697F92A69E688* L_3;
  1682. L_3 = VisualEffect_get_visualEffectAsset_m301FCE98B138CAB2E16B46CE365538ECA8AF5F00(__this, NULL);
  1683. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_4;
  1684. L_4 = VFXEventAttribute_Internal_InstanciateVFXEventAttribute_m67D4914621592C8A2F54808E0F77F15831A63FE6(L_3, NULL);
  1685. V_0 = L_4;
  1686. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_5 = V_0;
  1687. V_2 = L_5;
  1688. goto IL_0025;
  1689. }
  1690. IL_0025:
  1691. {
  1692. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_6 = V_2;
  1693. return L_6;
  1694. }
  1695. }
  1696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* VisualEffect_InvokeGetCachedEventAttributeForOutputEvent_Internal_mB2B1867606653A162B31F890AFFAFF2D4569904E (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* ___0_source, const RuntimeMethod* method)
  1697. {
  1698. bool V_0 = false;
  1699. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* V_1 = NULL;
  1700. bool V_2 = false;
  1701. {
  1702. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_0 = ___0_source;
  1703. NullCheck(L_0);
  1704. Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* L_1 = L_0->___outputEventReceived;
  1705. V_0 = (bool)((((RuntimeObject*)(Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1706. bool L_2 = V_0;
  1707. if (!L_2)
  1708. {
  1709. goto IL_0012;
  1710. }
  1711. }
  1712. {
  1713. V_1 = (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)NULL;
  1714. goto IL_0034;
  1715. }
  1716. IL_0012:
  1717. {
  1718. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_3 = ___0_source;
  1719. NullCheck(L_3);
  1720. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_4 = L_3->___m_cachedEventAttribute;
  1721. V_2 = (bool)((((RuntimeObject*)(VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1722. bool L_5 = V_2;
  1723. if (!L_5)
  1724. {
  1725. goto IL_002b;
  1726. }
  1727. }
  1728. {
  1729. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_6 = ___0_source;
  1730. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_7 = ___0_source;
  1731. NullCheck(L_7);
  1732. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_8;
  1733. L_8 = VisualEffect_CreateVFXEventAttribute_mC4611FC064DF24028BA3E60D3D450B95541BEB6E(L_7, NULL);
  1734. NullCheck(L_6);
  1735. L_6->___m_cachedEventAttribute = L_8;
  1736. Il2CppCodeGenWriteBarrier((void**)(&L_6->___m_cachedEventAttribute), (void*)L_8);
  1737. }
  1738. IL_002b:
  1739. {
  1740. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_9 = ___0_source;
  1741. NullCheck(L_9);
  1742. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_10 = L_9->___m_cachedEventAttribute;
  1743. V_1 = L_10;
  1744. goto IL_0034;
  1745. }
  1746. IL_0034:
  1747. {
  1748. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_11 = V_1;
  1749. return L_11;
  1750. }
  1751. }
  1752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualEffect_InvokeOutputEventReceived_Internal_m8F6FCF09BC8F3774FE1DD70A296182909A9CBCA7 (VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* ___0_source, int32_t ___1_eventNameId, const RuntimeMethod* method)
  1753. {
  1754. VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40 V_0;
  1755. memset((&V_0), 0, sizeof(V_0));
  1756. {
  1757. int32_t L_0 = ___1_eventNameId;
  1758. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_1 = ___0_source;
  1759. NullCheck(L_1);
  1760. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_2 = L_1->___m_cachedEventAttribute;
  1761. VFXOutputEventArgs__ctor_m4A6030F4BF7E27F5F682E0FC4211F53DF866ED56((&V_0), L_0, L_2, NULL);
  1762. VisualEffect_t8CF4F0E13AEBF27224BB1323CC103666EDBBCFB0* L_3 = ___0_source;
  1763. NullCheck(L_3);
  1764. Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* L_4 = L_3->___outputEventReceived;
  1765. VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40 L_5 = V_0;
  1766. NullCheck(L_4);
  1767. Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_inline(L_4, L_5, NULL);
  1768. return;
  1769. }
  1770. }
  1771. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  1772. {
  1773. typedef intptr_t (*VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0_ftn) (intptr_t);
  1774. static VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0_ftn _il2cpp_icall_func;
  1775. if (!_il2cpp_icall_func)
  1776. _il2cpp_icall_func = (VisualEffect_get_visualEffectAsset_Injected_m764595B94C5DC2BD82A19676459463A8DCE219F0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.VFX.VisualEffect::get_visualEffectAsset_Injected(System.IntPtr)");
  1777. intptr_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  1778. return icallRetVal;
  1779. }
  1780. #ifdef __clang__
  1781. #pragma clang diagnostic pop
  1782. #endif
  1783. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m91059026EFB50B8F90927D1B45D857C3FA02CB1F_inline (VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* ___0_eventAttibute, const RuntimeMethod* method)
  1784. {
  1785. {
  1786. VFXEventAttribute_tA764A595356174BA39C782A8A64B47B39FB3F518* L_0 = ___0_eventAttibute;
  1787. NullCheck(L_0);
  1788. intptr_t L_1 = L_0->___m_Ptr;
  1789. return L_1;
  1790. }
  1791. }
  1792. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  1793. {
  1794. {
  1795. intptr_t L_0 = ___0_value1;
  1796. intptr_t L_1 = ___1_value2;
  1797. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1798. }
  1799. }
  1800. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mAA01170CFDC728A3BBFDB5E6953B9649292A4D08_inline (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_commandBuffer, const RuntimeMethod* method)
  1801. {
  1802. {
  1803. CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_commandBuffer;
  1804. NullCheck(L_0);
  1805. intptr_t L_1 = L_0->___m_Ptr;
  1806. return L_1;
  1807. }
  1808. }
  1809. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_Marshal_TisRuntimeObject_m286B34400A212037E8EBD53DBFEAD7D23CDE8051_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method)
  1810. {
  1811. il2cpp_rgctx_method_init(method);
  1812. bool V_0 = false;
  1813. intptr_t V_1;
  1814. memset((&V_1), 0, sizeof(V_1));
  1815. {
  1816. RuntimeObject* L_0 = ___0_obj;
  1817. V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1818. bool L_1 = V_0;
  1819. if (!L_1)
  1820. {
  1821. goto IL_0016;
  1822. }
  1823. }
  1824. {
  1825. V_1 = 0;
  1826. goto IL_001f;
  1827. }
  1828. IL_0016:
  1829. {
  1830. RuntimeObject* L_2 = ___0_obj;
  1831. intptr_t L_3;
  1832. L_3 = MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_inline(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
  1833. V_1 = L_3;
  1834. goto IL_001f;
  1835. }
  1836. IL_001f:
  1837. {
  1838. intptr_t L_4 = V_1;
  1839. return L_4;
  1840. }
  1841. }
  1842. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method)
  1843. {
  1844. intptr_t V_0;
  1845. memset((&V_0), 0, sizeof(V_0));
  1846. {
  1847. RuntimeObject* L_0 = ___0_obj;
  1848. NullCheck(L_0);
  1849. intptr_t L_1 = ((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0)->___m_CachedPtr;
  1850. V_0 = L_1;
  1851. goto IL_000f;
  1852. }
  1853. IL_000f:
  1854. {
  1855. intptr_t L_2 = V_0;
  1856. return L_2;
  1857. }
  1858. }
  1859. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Unmarshal_UnmarshalUnityObject_TisRuntimeObject_m2B04FEB8E4BB254DD6F827F3111C91F2AF16D04A_gshared_inline (intptr_t ___0_gcHandlePtr, const RuntimeMethod* method)
  1860. {
  1861. il2cpp_rgctx_method_init(method);
  1862. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
  1863. memset((&V_0), 0, sizeof(V_0));
  1864. RuntimeObject* V_1 = NULL;
  1865. bool V_2 = false;
  1866. RuntimeObject* V_3 = NULL;
  1867. RuntimeObject* V_4 = NULL;
  1868. {
  1869. intptr_t L_0 = ___0_gcHandlePtr;
  1870. bool L_1;
  1871. L_1 = IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline(L_0, 0, NULL);
  1872. V_2 = L_1;
  1873. bool L_2 = V_2;
  1874. if (!L_2)
  1875. {
  1876. goto IL_001d;
  1877. }
  1878. }
  1879. {
  1880. il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject*));
  1881. RuntimeObject* L_3 = V_3;
  1882. V_4 = L_3;
  1883. goto IL_0036;
  1884. }
  1885. IL_001d:
  1886. {
  1887. intptr_t L_4 = ___0_gcHandlePtr;
  1888. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_5;
  1889. L_5 = Unmarshal_FromIntPtrUnsafe_mB304834C5EC431CC0FBE13C6BB97066F222BC55C_inline(L_4, NULL);
  1890. V_0 = L_5;
  1891. RuntimeObject* L_6;
  1892. L_6 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline((&V_0), NULL);
  1893. V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_6, il2cpp_rgctx_data(method->rgctx_data, 0)));
  1894. RuntimeObject* L_7 = V_1;
  1895. V_4 = L_7;
  1896. goto IL_0036;
  1897. }
  1898. IL_0036:
  1899. {
  1900. RuntimeObject* L_8 = V_4;
  1901. return L_8;
  1902. }
  1903. }
  1904. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_gshared_inline (Action_1_tBAC06A706FB1F9A81AEF7EDF6202FC51D1E52C3A* __this, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40 ___0_obj, const RuntimeMethod* method)
  1905. {
  1906. typedef void (*FunctionPointerType) (RuntimeObject*, VFXOutputEventArgs_tA170E0868F4EFA82F5AF0835B297C4AF9E571A40, const RuntimeMethod*);
  1907. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1908. }
  1909. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m7D9CDCDE9DC2A0C2C614633F4921E90187FAB271_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  1910. {
  1911. {
  1912. intptr_t L_0 = ___0_value1;
  1913. intptr_t L_1 = ___1_value2;
  1914. return (bool)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0);
  1915. }
  1916. }
  1917. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC Unmarshal_FromIntPtrUnsafe_mB304834C5EC431CC0FBE13C6BB97066F222BC55C_inline (intptr_t ___0_gcHandle, const RuntimeMethod* method)
  1918. {
  1919. static bool s_Il2CppMethodInitialized;
  1920. if (!s_Il2CppMethodInitialized)
  1921. {
  1922. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1923. s_Il2CppMethodInitialized = true;
  1924. }
  1925. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
  1926. memset((&V_0), 0, sizeof(V_0));
  1927. {
  1928. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_0;
  1929. L_0 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline((&___0_gcHandle), UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1930. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_1 = (*(GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)L_0);
  1931. V_0 = L_1;
  1932. goto IL_0010;
  1933. }
  1934. IL_0010:
  1935. {
  1936. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2 = V_0;
  1937. return L_2;
  1938. }
  1939. }
  1940. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method)
  1941. {
  1942. {
  1943. bool L_0;
  1944. L_0 = GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline(__this, NULL);
  1945. if (L_0)
  1946. {
  1947. goto IL_0013;
  1948. }
  1949. }
  1950. {
  1951. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  1952. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4EBC86E0EACFCA522AEB82874860D0E248D782A5)), NULL);
  1953. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_RuntimeMethod_var)));
  1954. }
  1955. IL_0013:
  1956. {
  1957. intptr_t L_2 = __this->___handle;
  1958. bool L_3;
  1959. L_3 = GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline(L_2, NULL);
  1960. if (!L_3)
  1961. {
  1962. goto IL_002c;
  1963. }
  1964. }
  1965. {
  1966. intptr_t L_4 = __this->___handle;
  1967. RuntimeObject* L_5;
  1968. L_5 = GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline(L_4, NULL);
  1969. return L_5;
  1970. }
  1971. IL_002c:
  1972. {
  1973. intptr_t L_6 = __this->___handle;
  1974. RuntimeObject* L_7;
  1975. L_7 = GCHandle_GetTarget_mE0AF851834410E2AEA6285B2497751570236C794(L_6, NULL);
  1976. return L_7;
  1977. }
  1978. }
  1979. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method)
  1980. {
  1981. {
  1982. intptr_t L_0 = __this->___handle;
  1983. bool L_1;
  1984. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  1985. return L_1;
  1986. }
  1987. }
  1988. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline (intptr_t ___0_handle, const RuntimeMethod* method)
  1989. {
  1990. {
  1991. intptr_t L_0 = ___0_handle;
  1992. return (bool)((((intptr_t)((intptr_t)(L_0&((intptr_t)1)))) == ((intptr_t)((intptr_t)0)))? 1 : 0);
  1993. }
  1994. }
  1995. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline (intptr_t ___0_handle, const RuntimeMethod* method)
  1996. {
  1997. {
  1998. intptr_t L_0 = ___0_handle;
  1999. void* L_1;
  2000. L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
  2001. RuntimeObject** L_2;
  2002. L_2 = il2cpp_unsafe_as_ref<RuntimeObject*>((intptr_t*)L_1);
  2003. RuntimeObject* L_3 = *((RuntimeObject**)L_2);
  2004. return L_3;
  2005. }
  2006. }
  2007. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline (intptr_t* ___0_from, const RuntimeMethod* method)
  2008. {
  2009. {
  2010. intptr_t* L_0 = ___0_from;
  2011. return (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)(L_0);
  2012. }
  2013. }