No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.AnimationModule.cpp 154KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  9. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  10. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  11. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  12. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174;
  13. struct AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE;
  14. struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883;
  15. struct AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493;
  16. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
  17. struct Delegate_t;
  18. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  19. struct DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9;
  20. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  21. struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
  22. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  23. struct MethodInfo_t;
  24. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
  25. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  26. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
  27. struct StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7;
  28. struct String_t;
  29. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F;
  30. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  31. struct OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5;
  32. IL2CPP_EXTERN_C RuntimeClass* AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var;
  33. IL2CPP_EXTERN_C RuntimeClass* AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var;
  34. IL2CPP_EXTERN_C RuntimeClass* AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var;
  35. IL2CPP_EXTERN_C RuntimeClass* AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var;
  36. IL2CPP_EXTERN_C RuntimeClass* AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var;
  37. IL2CPP_EXTERN_C RuntimeClass* AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var;
  38. IL2CPP_EXTERN_C RuntimeClass* AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var;
  39. IL2CPP_EXTERN_C RuntimeClass* AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var;
  40. IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
  41. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  42. IL2CPP_EXTERN_C RuntimeClass* PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var;
  43. IL2CPP_EXTERN_C String_t* _stringLiteral4DEE968069F34C26613ADFCD69C41EFC29314286;
  44. IL2CPP_EXTERN_C String_t* _stringLiteral860B9EA7CDAB02A8A4B38336805EAE2FBA31F09C;
  45. IL2CPP_EXTERN_C String_t* _stringLiteral8DC2252638D84FAF2C30B95D54EC83F52FA6C630;
  46. IL2CPP_EXTERN_C String_t* _stringLiteral98C704D69BD1A288ED31DEE4ED4E50097A2D7018;
  47. IL2CPP_EXTERN_C String_t* _stringLiteralA3C8FF345EC45846B2EE6801F84DD49340F0A9E1;
  48. IL2CPP_EXTERN_C String_t* _stringLiteralBF563F6FCC25CE41FFE0BF7590AF9F4475916665;
  49. IL2CPP_EXTERN_C String_t* _stringLiteralD2435BFAEB0372E848D9BE812E3B06AB862CC3D1;
  50. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  51. IL2CPP_EXTERN_C String_t* _stringLiteralE066D08B565F88D413FDACA14C42BFF008FF4EB9;
  52. IL2CPP_EXTERN_C String_t* _stringLiteralF5510C45DDAD777CCB4893578D995C9739F990F2;
  53. IL2CPP_EXTERN_C const RuntimeMethod* AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_RuntimeMethod_var;
  54. IL2CPP_EXTERN_C const RuntimeMethod* AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_RuntimeMethod_var;
  55. IL2CPP_EXTERN_C const RuntimeMethod* AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_RuntimeMethod_var;
  56. IL2CPP_EXTERN_C const RuntimeMethod* AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_RuntimeMethod_var;
  57. IL2CPP_EXTERN_C const RuntimeMethod* AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_RuntimeMethod_var;
  58. IL2CPP_EXTERN_C const RuntimeMethod* AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_RuntimeMethod_var;
  59. IL2CPP_EXTERN_C const RuntimeMethod* AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_RuntimeMethod_var;
  60. IL2CPP_EXTERN_C const RuntimeMethod* AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var;
  61. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var;
  62. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var;
  63. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var;
  64. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var;
  65. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var;
  66. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var;
  67. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var;
  68. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var;
  69. struct Delegate_t_marshaled_com;
  70. struct Delegate_t_marshaled_pinvoke;
  71. struct Exception_t_marshaled_com;
  72. struct Exception_t_marshaled_pinvoke;
  73. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;;
  74. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com;
  75. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com;;
  76. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke;
  77. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke;;
  78. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  79. IL2CPP_EXTERN_C_BEGIN
  80. IL2CPP_EXTERN_C_END
  81. #ifdef __clang__
  82. #pragma clang diagnostic push
  83. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  84. #pragma clang diagnostic ignored "-Wunused-variable"
  85. #endif
  86. struct U3CModuleU3E_t8B36B9B16FF72CF5A0EBA03D2FA162E77C86534C
  87. {
  88. };
  89. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
  90. {
  91. };
  92. struct DiscreteEvaluationAttributeUtilities_t68E395E51959C3C2041D4681D643EE383C09E5E5 : public RuntimeObject
  93. {
  94. };
  95. struct String_t : public RuntimeObject
  96. {
  97. int32_t ____stringLength;
  98. Il2CppChar ____firstChar;
  99. };
  100. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  101. {
  102. };
  103. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  104. {
  105. };
  106. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  107. {
  108. };
  109. struct AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03
  110. {
  111. int32_t ___m_ClipInstanceID;
  112. float ___m_Weight;
  113. };
  114. struct AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2
  115. {
  116. int32_t ___m_Name;
  117. int32_t ___m_Path;
  118. int32_t ___m_FullPath;
  119. float ___m_NormalizedTime;
  120. float ___m_Length;
  121. float ___m_Speed;
  122. float ___m_SpeedMultiplier;
  123. int32_t ___m_Tag;
  124. int32_t ___m_Loop;
  125. };
  126. struct AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD
  127. {
  128. int32_t ___m_FullPath;
  129. int32_t ___m_UserName;
  130. int32_t ___m_Name;
  131. bool ___m_HasFixedDuration;
  132. float ___m_Duration;
  133. float ___m_NormalizedTime;
  134. bool ___m_AnyState;
  135. int32_t ___m_TransitionType;
  136. };
  137. struct AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke
  138. {
  139. int32_t ___m_FullPath;
  140. int32_t ___m_UserName;
  141. int32_t ___m_Name;
  142. int32_t ___m_HasFixedDuration;
  143. float ___m_Duration;
  144. float ___m_NormalizedTime;
  145. int32_t ___m_AnyState;
  146. int32_t ___m_TransitionType;
  147. };
  148. struct AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com
  149. {
  150. int32_t ___m_FullPath;
  151. int32_t ___m_UserName;
  152. int32_t ___m_Name;
  153. int32_t ___m_HasFixedDuration;
  154. float ___m_Duration;
  155. float ___m_NormalizedTime;
  156. int32_t ___m_AnyState;
  157. int32_t ___m_TransitionType;
  158. };
  159. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  160. {
  161. bool ___m_value;
  162. };
  163. struct DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  164. {
  165. };
  166. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  167. {
  168. };
  169. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  170. {
  171. };
  172. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  173. {
  174. };
  175. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  176. {
  177. int32_t ___m_value;
  178. };
  179. struct IntPtr_t
  180. {
  181. void* ___m_value;
  182. };
  183. struct NotKeyableAttribute_tDDB6B25B26F649E3CED893EE1E63B6DE66844483 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  184. {
  185. };
  186. struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
  187. {
  188. float ___x;
  189. float ___y;
  190. float ___z;
  191. float ___w;
  192. };
  193. struct SharedBetweenAnimatorsAttribute_t44FFD5D3B5AEBB394182D66E2198FA398087449C : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  194. {
  195. };
  196. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  197. {
  198. float ___m_value;
  199. };
  200. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
  201. {
  202. float ___x;
  203. float ___y;
  204. float ___z;
  205. };
  206. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  207. {
  208. union
  209. {
  210. struct
  211. {
  212. };
  213. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  214. };
  215. };
  216. struct AnimationEventSource_t48460212F6BC00064115B85C42B656262118685E
  217. {
  218. int32_t ___value__;
  219. };
  220. struct AnimationHumanStream_t31E8EAD3F7C2C29CAE7B4EFB87AA84ECC6DCC6EC
  221. {
  222. intptr_t ___stream;
  223. };
  224. struct AnimationStream_tA73510DCEE63720142DF4F8E15C337A48E47B94A
  225. {
  226. uint32_t ___m_AnimatorBindingsVersion;
  227. intptr_t ___constant;
  228. intptr_t ___input;
  229. intptr_t ___output;
  230. intptr_t ___workspace;
  231. intptr_t ___inputStreamAccessor;
  232. intptr_t ___animationHandleBinder;
  233. };
  234. struct Delegate_t : public RuntimeObject
  235. {
  236. intptr_t ___method_ptr;
  237. intptr_t ___invoke_impl;
  238. RuntimeObject* ___m_target;
  239. intptr_t ___method;
  240. intptr_t ___delegate_trampoline;
  241. intptr_t ___extra_arg;
  242. intptr_t ___method_code;
  243. intptr_t ___interp_method;
  244. intptr_t ___interp_invoke_impl;
  245. MethodInfo_t* ___method_info;
  246. MethodInfo_t* ___original_method_info;
  247. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  248. bool ___method_is_virtual;
  249. };
  250. struct Delegate_t_marshaled_pinvoke
  251. {
  252. intptr_t ___method_ptr;
  253. intptr_t ___invoke_impl;
  254. Il2CppIUnknown* ___m_target;
  255. intptr_t ___method;
  256. intptr_t ___delegate_trampoline;
  257. intptr_t ___extra_arg;
  258. intptr_t ___method_code;
  259. intptr_t ___interp_method;
  260. intptr_t ___interp_invoke_impl;
  261. MethodInfo_t* ___method_info;
  262. MethodInfo_t* ___original_method_info;
  263. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  264. int32_t ___method_is_virtual;
  265. };
  266. struct Delegate_t_marshaled_com
  267. {
  268. intptr_t ___method_ptr;
  269. intptr_t ___invoke_impl;
  270. Il2CppIUnknown* ___m_target;
  271. intptr_t ___method;
  272. intptr_t ___delegate_trampoline;
  273. intptr_t ___extra_arg;
  274. intptr_t ___method_code;
  275. intptr_t ___interp_method;
  276. intptr_t ___interp_invoke_impl;
  277. MethodInfo_t* ___method_info;
  278. MethodInfo_t* ___original_method_info;
  279. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  280. int32_t ___method_is_virtual;
  281. };
  282. struct Exception_t : public RuntimeObject
  283. {
  284. String_t* ____className;
  285. String_t* ____message;
  286. RuntimeObject* ____data;
  287. Exception_t* ____innerException;
  288. String_t* ____helpURL;
  289. RuntimeObject* ____stackTrace;
  290. String_t* ____stackTraceString;
  291. String_t* ____remoteStackTraceString;
  292. int32_t ____remoteStackIndex;
  293. RuntimeObject* ____dynamicMethods;
  294. int32_t ____HResult;
  295. String_t* ____source;
  296. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  297. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  298. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  299. int32_t ___caught_in_unmanaged;
  300. };
  301. struct Exception_t_marshaled_pinvoke
  302. {
  303. char* ____className;
  304. char* ____message;
  305. RuntimeObject* ____data;
  306. Exception_t_marshaled_pinvoke* ____innerException;
  307. char* ____helpURL;
  308. Il2CppIUnknown* ____stackTrace;
  309. char* ____stackTraceString;
  310. char* ____remoteStackTraceString;
  311. int32_t ____remoteStackIndex;
  312. Il2CppIUnknown* ____dynamicMethods;
  313. int32_t ____HResult;
  314. char* ____source;
  315. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  316. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  317. Il2CppSafeArray* ___native_trace_ips;
  318. int32_t ___caught_in_unmanaged;
  319. };
  320. struct Exception_t_marshaled_com
  321. {
  322. Il2CppChar* ____className;
  323. Il2CppChar* ____message;
  324. RuntimeObject* ____data;
  325. Exception_t_marshaled_com* ____innerException;
  326. Il2CppChar* ____helpURL;
  327. Il2CppIUnknown* ____stackTrace;
  328. Il2CppChar* ____stackTraceString;
  329. Il2CppChar* ____remoteStackTraceString;
  330. int32_t ____remoteStackIndex;
  331. Il2CppIUnknown* ____dynamicMethods;
  332. int32_t ____HResult;
  333. Il2CppChar* ____source;
  334. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  335. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  336. Il2CppSafeArray* ___native_trace_ips;
  337. int32_t ___caught_in_unmanaged;
  338. };
  339. struct HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E
  340. {
  341. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Min;
  342. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Max;
  343. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center;
  344. float ___m_AxisLength;
  345. int32_t ___m_UseDefaultValues;
  346. };
  347. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  348. {
  349. intptr_t ___m_CachedPtr;
  350. };
  351. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  352. {
  353. intptr_t ___m_CachedPtr;
  354. };
  355. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  356. {
  357. intptr_t ___m_CachedPtr;
  358. };
  359. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
  360. {
  361. intptr_t ___m_Handle;
  362. uint32_t ___m_Version;
  363. };
  364. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
  365. {
  366. intptr_t ___m_Handle;
  367. uint32_t ___m_Version;
  368. };
  369. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126
  370. {
  371. String_t* ___name;
  372. String_t* ___parentName;
  373. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  374. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  375. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  376. };
  377. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke
  378. {
  379. char* ___name;
  380. char* ___parentName;
  381. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  382. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  383. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  384. };
  385. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com
  386. {
  387. Il2CppChar* ___name;
  388. Il2CppChar* ___parentName;
  389. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  390. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  391. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  392. };
  393. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2 : public RuntimeObject
  394. {
  395. intptr_t ___m_Ptr;
  396. };
  397. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2_marshaled_pinvoke
  398. {
  399. intptr_t ___m_Ptr;
  400. };
  401. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2_marshaled_com
  402. {
  403. intptr_t ___m_Ptr;
  404. };
  405. struct AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969
  406. {
  407. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  408. };
  409. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174 : public RuntimeObject
  410. {
  411. float ___m_Time;
  412. String_t* ___m_FunctionName;
  413. String_t* ___m_StringParameter;
  414. Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___m_ObjectReferenceParameter;
  415. float ___m_FloatParameter;
  416. int32_t ___m_IntParameter;
  417. int32_t ___m_MessageOptions;
  418. int32_t ___m_Source;
  419. AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE* ___m_StateSender;
  420. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___m_AnimatorStateInfo;
  421. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 ___m_AnimatorClipInfo;
  422. };
  423. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_pinvoke
  424. {
  425. float ___m_Time;
  426. char* ___m_FunctionName;
  427. char* ___m_StringParameter;
  428. Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke ___m_ObjectReferenceParameter;
  429. float ___m_FloatParameter;
  430. int32_t ___m_IntParameter;
  431. int32_t ___m_MessageOptions;
  432. int32_t ___m_Source;
  433. AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE* ___m_StateSender;
  434. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___m_AnimatorStateInfo;
  435. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 ___m_AnimatorClipInfo;
  436. };
  437. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_com
  438. {
  439. float ___m_Time;
  440. Il2CppChar* ___m_FunctionName;
  441. Il2CppChar* ___m_StringParameter;
  442. Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com* ___m_ObjectReferenceParameter;
  443. float ___m_FloatParameter;
  444. int32_t ___m_IntParameter;
  445. int32_t ___m_MessageOptions;
  446. int32_t ___m_Source;
  447. AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE* ___m_StateSender;
  448. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___m_AnimatorStateInfo;
  449. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 ___m_AnimatorClipInfo;
  450. };
  451. struct AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D
  452. {
  453. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  454. };
  455. struct AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0
  456. {
  457. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  458. };
  459. struct AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18
  460. {
  461. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  462. };
  463. struct AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4
  464. {
  465. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  466. };
  467. struct AnimationPlayableOutput_t753AC95DC826789BC537D18449E93114777DDF4E
  468. {
  469. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle;
  470. };
  471. struct AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C
  472. {
  473. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  474. };
  475. struct AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD
  476. {
  477. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  478. };
  479. struct AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127
  480. {
  481. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  482. };
  483. struct AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE : public TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2
  484. {
  485. };
  486. struct AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A
  487. {
  488. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  489. };
  490. struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  491. {
  492. };
  493. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8
  494. {
  495. String_t* ___m_BoneName;
  496. String_t* ___m_HumanName;
  497. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  498. };
  499. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke
  500. {
  501. char* ___m_BoneName;
  502. char* ___m_HumanName;
  503. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  504. };
  505. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com
  506. {
  507. Il2CppChar* ___m_BoneName;
  508. Il2CppChar* ___m_HumanName;
  509. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  510. };
  511. struct MulticastDelegate_t : public Delegate_t
  512. {
  513. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  514. };
  515. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  516. {
  517. Delegate_t_marshaled_pinvoke** ___delegates;
  518. };
  519. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  520. {
  521. Delegate_t_marshaled_com** ___delegates;
  522. };
  523. struct RuntimeAnimatorController_t6F7C753402B42EC23C163099CF935C5E0D7A7254 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  524. {
  525. };
  526. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  527. {
  528. };
  529. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  530. {
  531. };
  532. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  533. {
  534. };
  535. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  536. {
  537. };
  538. struct AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493 : public RuntimeAnimatorController_t6F7C753402B42EC23C163099CF935C5E0D7A7254
  539. {
  540. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* ___OnOverrideControllerDirty;
  541. };
  542. struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
  543. {
  544. };
  545. struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  546. {
  547. };
  548. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  549. {
  550. };
  551. struct StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
  552. {
  553. };
  554. struct OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5 : public MulticastDelegate_t
  555. {
  556. };
  557. struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  558. {
  559. };
  560. struct String_t_StaticFields
  561. {
  562. String_t* ___Empty;
  563. };
  564. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  565. {
  566. String_t* ___TrueString;
  567. String_t* ___FalseString;
  568. };
  569. struct IntPtr_t_StaticFields
  570. {
  571. intptr_t ___Zero;
  572. };
  573. struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
  574. {
  575. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion;
  576. };
  577. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
  578. {
  579. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
  580. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
  581. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
  582. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
  583. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
  584. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
  585. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
  586. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
  587. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
  588. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
  589. };
  590. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
  591. {
  592. int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
  593. };
  594. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_StaticFields
  595. {
  596. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Null;
  597. };
  598. struct AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_StaticFields
  599. {
  600. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___m_NullPlayable;
  601. };
  602. struct AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_StaticFields
  603. {
  604. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___m_NullPlayable;
  605. };
  606. struct AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_StaticFields
  607. {
  608. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___m_NullPlayable;
  609. };
  610. struct AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_StaticFields
  611. {
  612. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___m_NullPlayable;
  613. };
  614. struct AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_StaticFields
  615. {
  616. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___m_NullPlayable;
  617. };
  618. struct AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_StaticFields
  619. {
  620. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___m_NullPlayable;
  621. };
  622. struct AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_StaticFields
  623. {
  624. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___m_NullPlayable;
  625. };
  626. struct AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_StaticFields
  627. {
  628. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___m_NullPlayable;
  629. };
  630. #ifdef __clang__
  631. #pragma clang diagnostic pop
  632. #endif
  633. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  634. {
  635. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  636. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  637. {
  638. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  639. return m_Items[index];
  640. }
  641. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  642. {
  643. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  644. return m_Items + index;
  645. }
  646. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  647. {
  648. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  649. m_Items[index] = value;
  650. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  651. }
  652. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  653. {
  654. return m_Items[index];
  655. }
  656. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  657. {
  658. return m_Items + index;
  659. }
  660. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  661. {
  662. m_Items[index] = value;
  663. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  664. }
  665. };
  666. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_pinvoke(const Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C& unmarshaled, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke& marshaled);
  667. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_pinvoke_back(const Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke& marshaled, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C& unmarshaled);
  668. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_pinvoke_cleanup(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke& marshaled);
  669. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_com(const Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C& unmarshaled, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com& marshaled);
  670. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_com_back(const Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com& marshaled, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C& unmarshaled);
  671. IL2CPP_EXTERN_C void Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshal_com_cleanup(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com& marshaled);
  672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  673. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  674. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  675. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF (ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* __this, const RuntimeMethod* method) ;
  681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  683. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  684. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method) ;
  685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
  686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, const RuntimeMethod* method) ;
  687. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_x, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___1_y, const RuntimeMethod* method) ;
  688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method) ;
  689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  690. inline bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  691. {
  692. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_gshared)(__this, method);
  693. }
  694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  695. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* ___0_handle, bool ___1_value, const RuntimeMethod* method) ;
  696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method) ;
  697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, const RuntimeMethod* method) ;
  698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method) ;
  699. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975 (const RuntimeMethod* method) ;
  700. inline bool PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  701. {
  702. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_gshared)(__this, method);
  703. }
  704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7 (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, const RuntimeMethod* method) ;
  706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method) ;
  707. inline bool PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  708. {
  709. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_gshared)(__this, method);
  710. }
  711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, const RuntimeMethod* method) ;
  713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method) ;
  714. inline bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  715. {
  716. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_gshared)(__this, method);
  717. }
  718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, const RuntimeMethod* method) ;
  720. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  721. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method) ;
  722. inline bool PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  723. {
  724. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_gshared)(__this, method);
  725. }
  726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  727. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, const RuntimeMethod* method) ;
  728. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3 (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method) ;
  729. inline bool PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  730. {
  731. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_gshared)(__this, method);
  732. }
  733. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  734. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, const RuntimeMethod* method) ;
  735. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method) ;
  736. inline bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  737. {
  738. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_gshared)(__this, method);
  739. }
  740. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  741. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, const RuntimeMethod* method) ;
  742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method) ;
  743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  745. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, const RuntimeMethod* method) ;
  746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  747. inline bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  748. {
  749. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_gshared)(__this, method);
  750. }
  751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method) ;
  752. #ifdef __clang__
  753. #pragma clang diagnostic push
  754. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  755. #pragma clang diagnostic ignored "-Wunused-variable"
  756. #endif
  757. #ifdef __clang__
  758. #pragma clang diagnostic pop
  759. #endif
  760. #ifdef __clang__
  761. #pragma clang diagnostic push
  762. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  763. #pragma clang diagnostic ignored "-Wunused-variable"
  764. #endif
  765. #ifdef __clang__
  766. #pragma clang diagnostic pop
  767. #endif
  768. #ifdef __clang__
  769. #pragma clang diagnostic push
  770. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  771. #pragma clang diagnostic ignored "-Wunused-variable"
  772. #endif
  773. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateEnter_mB618EFE75A50CBAA3EE6471E64A3E2CA2A2C90FD (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, const RuntimeMethod* method)
  774. {
  775. {
  776. return;
  777. }
  778. }
  779. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateUpdate_mC1A83A4F693AF3AB51BC592A0CE525CE4F320D6B (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, const RuntimeMethod* method)
  780. {
  781. {
  782. return;
  783. }
  784. }
  785. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateExit_mC113F0B2F53847F9A6755B82D0AC53C971171CFD (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, const RuntimeMethod* method)
  786. {
  787. {
  788. return;
  789. }
  790. }
  791. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMove_m7229D5EFBA432665B9046FC3C21D463FFD281978 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, const RuntimeMethod* method)
  792. {
  793. {
  794. return;
  795. }
  796. }
  797. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateIK_m310C17694D8D1B9D60D549259A39837F22FD3240 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, const RuntimeMethod* method)
  798. {
  799. {
  800. return;
  801. }
  802. }
  803. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineEnter_m0CEFF9E4946BFDC4F7066BEB4C961169DBC5073F (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, const RuntimeMethod* method)
  804. {
  805. {
  806. return;
  807. }
  808. }
  809. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineExit_m384B808E3961C6C2C375DF7487EF2B49E44E6CD7 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, const RuntimeMethod* method)
  810. {
  811. {
  812. return;
  813. }
  814. }
  815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateEnter_m491D81A9A64DE4AE02415A5909B74AE947EAE1B9 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___3_controller, const RuntimeMethod* method)
  816. {
  817. {
  818. return;
  819. }
  820. }
  821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateUpdate_mF3130BE7BDD7C8B2470303FB1986A336E47CC98C (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___3_controller, const RuntimeMethod* method)
  822. {
  823. {
  824. return;
  825. }
  826. }
  827. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateExit_mD47A506ACE251A6341115CBE5607D05C01747127 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___3_controller, const RuntimeMethod* method)
  828. {
  829. {
  830. return;
  831. }
  832. }
  833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMove_m1A01C10E754426572C7BBA7AA13044FDA372FDFC (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___3_controller, const RuntimeMethod* method)
  834. {
  835. {
  836. return;
  837. }
  838. }
  839. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateIK_mCE3B4C71868B564EE6BE4B8663535058705C3B72 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___1_stateInfo, int32_t ___2_layerIndex, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___3_controller, const RuntimeMethod* method)
  840. {
  841. {
  842. return;
  843. }
  844. }
  845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineEnter_m0399B12419A4F990F41BD589C833E2D2C0076762 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___2_controller, const RuntimeMethod* method)
  846. {
  847. {
  848. return;
  849. }
  850. }
  851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineExit_mF8BB1A8851B0699FC1D85F538E16EF12C08BBB93 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___2_controller, const RuntimeMethod* method)
  852. {
  853. {
  854. return;
  855. }
  856. }
  857. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour__ctor_m9663A75D1016E16D7E3A48E2D4E6466A041A00AB (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, const RuntimeMethod* method)
  858. {
  859. {
  860. ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF(__this, NULL);
  861. return;
  862. }
  863. }
  864. #ifdef __clang__
  865. #pragma clang diagnostic pop
  866. #endif
  867. #ifdef __clang__
  868. #pragma clang diagnostic push
  869. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  870. #pragma clang diagnostic ignored "-Wunused-variable"
  871. #endif
  872. #ifdef __clang__
  873. #pragma clang diagnostic pop
  874. #endif
  875. #ifdef __clang__
  876. #pragma clang diagnostic push
  877. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  878. #pragma clang diagnostic ignored "-Wunused-variable"
  879. #endif
  880. #ifdef __clang__
  881. #pragma clang diagnostic pop
  882. #endif
  883. #ifdef __clang__
  884. #pragma clang diagnostic push
  885. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  886. #pragma clang diagnostic ignored "-Wunused-variable"
  887. #endif
  888. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_pinvoke(const AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174& unmarshaled, AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_pinvoke& marshaled)
  889. {
  890. Exception_t* ___m_StateSenderException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_StateSender' of type 'AnimationEvent': Reference type field marshaling is not supported.");
  891. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_StateSenderException, NULL);
  892. }
  893. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_pinvoke_back(const AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_pinvoke& marshaled, AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174& unmarshaled)
  894. {
  895. Exception_t* ___m_StateSenderException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_StateSender' of type 'AnimationEvent': Reference type field marshaling is not supported.");
  896. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_StateSenderException, NULL);
  897. }
  898. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_pinvoke_cleanup(AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_pinvoke& marshaled)
  899. {
  900. }
  901. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_com(const AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174& unmarshaled, AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_com& marshaled)
  902. {
  903. Exception_t* ___m_StateSenderException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_StateSender' of type 'AnimationEvent': Reference type field marshaling is not supported.");
  904. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_StateSenderException, NULL);
  905. }
  906. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_com_back(const AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_com& marshaled, AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174& unmarshaled)
  907. {
  908. Exception_t* ___m_StateSenderException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_StateSender' of type 'AnimationEvent': Reference type field marshaling is not supported.");
  909. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_StateSenderException, NULL);
  910. }
  911. IL2CPP_EXTERN_C void AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshal_com_cleanup(AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_marshaled_com& marshaled)
  912. {
  913. }
  914. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2 (AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* __this, const RuntimeMethod* method)
  915. {
  916. static bool s_Il2CppMethodInitialized;
  917. if (!s_Il2CppMethodInitialized)
  918. {
  919. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  920. s_Il2CppMethodInitialized = true;
  921. }
  922. {
  923. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  924. __this->___m_Time = (0.0f);
  925. __this->___m_FunctionName = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  926. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FunctionName), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  927. __this->___m_StringParameter = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  928. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StringParameter), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  929. __this->___m_ObjectReferenceParameter = (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL;
  930. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ObjectReferenceParameter), (void*)(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL);
  931. __this->___m_FloatParameter = (0.0f);
  932. __this->___m_IntParameter = 0;
  933. __this->___m_MessageOptions = 0;
  934. __this->___m_Source = 0;
  935. __this->___m_StateSender = (AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)NULL;
  936. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StateSender), (void*)(AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)NULL);
  937. return;
  938. }
  939. }
  940. #ifdef __clang__
  941. #pragma clang diagnostic pop
  942. #endif
  943. #ifdef __clang__
  944. #pragma clang diagnostic push
  945. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  946. #pragma clang diagnostic ignored "-Wunused-variable"
  947. #endif
  948. #ifdef __clang__
  949. #pragma clang diagnostic pop
  950. #endif
  951. #ifdef __clang__
  952. #pragma clang diagnostic push
  953. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  954. #pragma clang diagnostic ignored "-Wunused-variable"
  955. #endif
  956. #ifdef __clang__
  957. #pragma clang diagnostic pop
  958. #endif
  959. #ifdef __clang__
  960. #pragma clang diagnostic push
  961. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  962. #pragma clang diagnostic ignored "-Wunused-variable"
  963. #endif
  964. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled)
  965. {
  966. marshaled.___m_FullPath = unmarshaled.___m_FullPath;
  967. marshaled.___m_UserName = unmarshaled.___m_UserName;
  968. marshaled.___m_Name = unmarshaled.___m_Name;
  969. marshaled.___m_HasFixedDuration = static_cast<int32_t>(unmarshaled.___m_HasFixedDuration);
  970. marshaled.___m_Duration = unmarshaled.___m_Duration;
  971. marshaled.___m_NormalizedTime = unmarshaled.___m_NormalizedTime;
  972. marshaled.___m_AnyState = static_cast<int32_t>(unmarshaled.___m_AnyState);
  973. marshaled.___m_TransitionType = unmarshaled.___m_TransitionType;
  974. }
  975. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke_back(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled)
  976. {
  977. int32_t unmarshaledm_FullPath_temp_0 = 0;
  978. unmarshaledm_FullPath_temp_0 = marshaled.___m_FullPath;
  979. unmarshaled.___m_FullPath = unmarshaledm_FullPath_temp_0;
  980. int32_t unmarshaledm_UserName_temp_1 = 0;
  981. unmarshaledm_UserName_temp_1 = marshaled.___m_UserName;
  982. unmarshaled.___m_UserName = unmarshaledm_UserName_temp_1;
  983. int32_t unmarshaledm_Name_temp_2 = 0;
  984. unmarshaledm_Name_temp_2 = marshaled.___m_Name;
  985. unmarshaled.___m_Name = unmarshaledm_Name_temp_2;
  986. bool unmarshaledm_HasFixedDuration_temp_3 = false;
  987. unmarshaledm_HasFixedDuration_temp_3 = static_cast<bool>(marshaled.___m_HasFixedDuration);
  988. unmarshaled.___m_HasFixedDuration = unmarshaledm_HasFixedDuration_temp_3;
  989. float unmarshaledm_Duration_temp_4 = 0.0f;
  990. unmarshaledm_Duration_temp_4 = marshaled.___m_Duration;
  991. unmarshaled.___m_Duration = unmarshaledm_Duration_temp_4;
  992. float unmarshaledm_NormalizedTime_temp_5 = 0.0f;
  993. unmarshaledm_NormalizedTime_temp_5 = marshaled.___m_NormalizedTime;
  994. unmarshaled.___m_NormalizedTime = unmarshaledm_NormalizedTime_temp_5;
  995. bool unmarshaledm_AnyState_temp_6 = false;
  996. unmarshaledm_AnyState_temp_6 = static_cast<bool>(marshaled.___m_AnyState);
  997. unmarshaled.___m_AnyState = unmarshaledm_AnyState_temp_6;
  998. int32_t unmarshaledm_TransitionType_temp_7 = 0;
  999. unmarshaledm_TransitionType_temp_7 = marshaled.___m_TransitionType;
  1000. unmarshaled.___m_TransitionType = unmarshaledm_TransitionType_temp_7;
  1001. }
  1002. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke_cleanup(AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled)
  1003. {
  1004. }
  1005. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled)
  1006. {
  1007. marshaled.___m_FullPath = unmarshaled.___m_FullPath;
  1008. marshaled.___m_UserName = unmarshaled.___m_UserName;
  1009. marshaled.___m_Name = unmarshaled.___m_Name;
  1010. marshaled.___m_HasFixedDuration = static_cast<int32_t>(unmarshaled.___m_HasFixedDuration);
  1011. marshaled.___m_Duration = unmarshaled.___m_Duration;
  1012. marshaled.___m_NormalizedTime = unmarshaled.___m_NormalizedTime;
  1013. marshaled.___m_AnyState = static_cast<int32_t>(unmarshaled.___m_AnyState);
  1014. marshaled.___m_TransitionType = unmarshaled.___m_TransitionType;
  1015. }
  1016. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com_back(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled)
  1017. {
  1018. int32_t unmarshaledm_FullPath_temp_0 = 0;
  1019. unmarshaledm_FullPath_temp_0 = marshaled.___m_FullPath;
  1020. unmarshaled.___m_FullPath = unmarshaledm_FullPath_temp_0;
  1021. int32_t unmarshaledm_UserName_temp_1 = 0;
  1022. unmarshaledm_UserName_temp_1 = marshaled.___m_UserName;
  1023. unmarshaled.___m_UserName = unmarshaledm_UserName_temp_1;
  1024. int32_t unmarshaledm_Name_temp_2 = 0;
  1025. unmarshaledm_Name_temp_2 = marshaled.___m_Name;
  1026. unmarshaled.___m_Name = unmarshaledm_Name_temp_2;
  1027. bool unmarshaledm_HasFixedDuration_temp_3 = false;
  1028. unmarshaledm_HasFixedDuration_temp_3 = static_cast<bool>(marshaled.___m_HasFixedDuration);
  1029. unmarshaled.___m_HasFixedDuration = unmarshaledm_HasFixedDuration_temp_3;
  1030. float unmarshaledm_Duration_temp_4 = 0.0f;
  1031. unmarshaledm_Duration_temp_4 = marshaled.___m_Duration;
  1032. unmarshaled.___m_Duration = unmarshaledm_Duration_temp_4;
  1033. float unmarshaledm_NormalizedTime_temp_5 = 0.0f;
  1034. unmarshaledm_NormalizedTime_temp_5 = marshaled.___m_NormalizedTime;
  1035. unmarshaled.___m_NormalizedTime = unmarshaledm_NormalizedTime_temp_5;
  1036. bool unmarshaledm_AnyState_temp_6 = false;
  1037. unmarshaledm_AnyState_temp_6 = static_cast<bool>(marshaled.___m_AnyState);
  1038. unmarshaled.___m_AnyState = unmarshaledm_AnyState_temp_6;
  1039. int32_t unmarshaledm_TransitionType_temp_7 = 0;
  1040. unmarshaledm_TransitionType_temp_7 = marshaled.___m_TransitionType;
  1041. unmarshaled.___m_TransitionType = unmarshaledm_TransitionType_temp_7;
  1042. }
  1043. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com_cleanup(AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled)
  1044. {
  1045. }
  1046. #ifdef __clang__
  1047. #pragma clang diagnostic pop
  1048. #endif
  1049. #ifdef __clang__
  1050. #pragma clang diagnostic push
  1051. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1052. #pragma clang diagnostic ignored "-Wunused-variable"
  1053. #endif
  1054. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTrigger_mC9CD54D627C8843EF6E159E167449D216EF6EB30 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1055. {
  1056. {
  1057. String_t* L_0 = ___0_name;
  1058. Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E(__this, L_0, NULL);
  1059. return;
  1060. }
  1061. }
  1062. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTrigger_m8DCA67D5A6B56702E3FAD4E18243E194B71297CC (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1063. {
  1064. {
  1065. String_t* L_0 = ___0_name;
  1066. Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868(__this, L_0, NULL);
  1067. return;
  1068. }
  1069. }
  1070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, const RuntimeMethod* method)
  1071. {
  1072. typedef bool (*Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9_ftn) (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883*);
  1073. static Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9_ftn _il2cpp_icall_func;
  1074. if (!_il2cpp_icall_func)
  1075. _il2cpp_icall_func = (Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::get_hasBoundPlayables()");
  1076. bool icallRetVal = _il2cpp_icall_func(__this);
  1077. return icallRetVal;
  1078. }
  1079. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Animator_StringToHash_mD67B872C411BE37641F49D7AA1DBD45B67F63E3A (String_t* ___0_name, const RuntimeMethod* method)
  1080. {
  1081. typedef int32_t (*Animator_StringToHash_mD67B872C411BE37641F49D7AA1DBD45B67F63E3A_ftn) (String_t*);
  1082. static Animator_StringToHash_mD67B872C411BE37641F49D7AA1DBD45B67F63E3A_ftn _il2cpp_icall_func;
  1083. if (!_il2cpp_icall_func)
  1084. _il2cpp_icall_func = (Animator_StringToHash_mD67B872C411BE37641F49D7AA1DBD45B67F63E3A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::StringToHash(System.String)");
  1085. int32_t icallRetVal = _il2cpp_icall_func(___0_name);
  1086. return icallRetVal;
  1087. }
  1088. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1089. {
  1090. typedef void (*Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E_ftn) (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883*, String_t*);
  1091. static Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E_ftn _il2cpp_icall_func;
  1092. if (!_il2cpp_icall_func)
  1093. _il2cpp_icall_func = (Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::SetTriggerString(System.String)");
  1094. _il2cpp_icall_func(__this, ___0_name);
  1095. }
  1096. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1097. {
  1098. typedef void (*Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868_ftn) (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883*, String_t*);
  1099. static Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868_ftn _il2cpp_icall_func;
  1100. if (!_il2cpp_icall_func)
  1101. _il2cpp_icall_func = (Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::ResetTriggerString(System.String)");
  1102. _il2cpp_icall_func(__this, ___0_name);
  1103. }
  1104. #ifdef __clang__
  1105. #pragma clang diagnostic pop
  1106. #endif
  1107. #ifdef __clang__
  1108. #pragma clang diagnostic push
  1109. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1110. #pragma clang diagnostic ignored "-Wunused-variable"
  1111. #endif
  1112. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorOverrideController_OnInvalidateOverrideController_mA6B0AA977505FDEFDD6BCA2E941FD3A18AE1AD23 (AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* ___0_controller, const RuntimeMethod* method)
  1113. {
  1114. bool V_0 = false;
  1115. {
  1116. AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* L_0 = ___0_controller;
  1117. NullCheck(L_0);
  1118. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* L_1 = L_0->___OnOverrideControllerDirty;
  1119. V_0 = (bool)((!(((RuntimeObject*)(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  1120. bool L_2 = V_0;
  1121. if (!L_2)
  1122. {
  1123. goto IL_001a;
  1124. }
  1125. }
  1126. {
  1127. AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* L_3 = ___0_controller;
  1128. NullCheck(L_3);
  1129. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* L_4 = L_3->___OnOverrideControllerDirty;
  1130. NullCheck(L_4);
  1131. OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline(L_4, NULL);
  1132. }
  1133. IL_001a:
  1134. {
  1135. return;
  1136. }
  1137. }
  1138. #ifdef __clang__
  1139. #pragma clang diagnostic pop
  1140. #endif
  1141. #ifdef __clang__
  1142. #pragma clang diagnostic push
  1143. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1144. #pragma clang diagnostic ignored "-Wunused-variable"
  1145. #endif
  1146. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_Multicast(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1147. {
  1148. il2cpp_array_size_t length = __this->___delegates->max_length;
  1149. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1150. for (il2cpp_array_size_t i = 0; i < length; i++)
  1151. {
  1152. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* currentDelegate = reinterpret_cast<OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5*>(delegatesToInvoke[i]);
  1153. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1154. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1155. }
  1156. }
  1157. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenInst(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1158. {
  1159. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1160. ((FunctionPointerType)__this->___method_ptr)(method);
  1161. }
  1162. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenStatic(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1163. {
  1164. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1165. ((FunctionPointerType)__this->___method_ptr)(method);
  1166. }
  1167. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5 (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1168. {
  1169. typedef void (DEFAULT_CALL *PInvokeFunc)();
  1170. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  1171. il2cppPInvokeFunc();
  1172. }
  1173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback__ctor_mA49B11AF24CB49A9B764058DB73CE221AE54E106 (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1174. {
  1175. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1176. __this->___method = ___1_method;
  1177. __this->___m_target = ___0_object;
  1178. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1179. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1180. __this->___method_code = (intptr_t)__this;
  1181. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1182. {
  1183. bool isOpen = parameterCount == 0;
  1184. if (isOpen)
  1185. __this->___invoke_impl = (intptr_t)&OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenStatic;
  1186. else
  1187. {
  1188. __this->___invoke_impl = __this->___method_ptr;
  1189. __this->___method_code = (intptr_t)__this->___m_target;
  1190. }
  1191. }
  1192. else
  1193. {
  1194. if (___0_object == NULL)
  1195. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1196. __this->___invoke_impl = __this->___method_ptr;
  1197. __this->___method_code = (intptr_t)__this->___m_target;
  1198. }
  1199. __this->___extra_arg = (intptr_t)&OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_Multicast;
  1200. }
  1201. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1202. {
  1203. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1204. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1205. }
  1206. #ifdef __clang__
  1207. #pragma clang diagnostic pop
  1208. #endif
  1209. #ifdef __clang__
  1210. #pragma clang diagnostic push
  1211. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1212. #pragma clang diagnostic ignored "-Wunused-variable"
  1213. #endif
  1214. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled)
  1215. {
  1216. marshaled.___name = il2cpp_codegen_marshal_string(unmarshaled.___name);
  1217. marshaled.___parentName = il2cpp_codegen_marshal_string(unmarshaled.___parentName);
  1218. marshaled.___position = unmarshaled.___position;
  1219. marshaled.___rotation = unmarshaled.___rotation;
  1220. marshaled.___scale = unmarshaled.___scale;
  1221. }
  1222. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke_back(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled)
  1223. {
  1224. unmarshaled.___name = il2cpp_codegen_marshal_string_result(marshaled.___name);
  1225. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name), (void*)il2cpp_codegen_marshal_string_result(marshaled.___name));
  1226. unmarshaled.___parentName = il2cpp_codegen_marshal_string_result(marshaled.___parentName);
  1227. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___parentName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___parentName));
  1228. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledposition_temp_2;
  1229. memset((&unmarshaledposition_temp_2), 0, sizeof(unmarshaledposition_temp_2));
  1230. unmarshaledposition_temp_2 = marshaled.___position;
  1231. unmarshaled.___position = unmarshaledposition_temp_2;
  1232. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 unmarshaledrotation_temp_3;
  1233. memset((&unmarshaledrotation_temp_3), 0, sizeof(unmarshaledrotation_temp_3));
  1234. unmarshaledrotation_temp_3 = marshaled.___rotation;
  1235. unmarshaled.___rotation = unmarshaledrotation_temp_3;
  1236. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledscale_temp_4;
  1237. memset((&unmarshaledscale_temp_4), 0, sizeof(unmarshaledscale_temp_4));
  1238. unmarshaledscale_temp_4 = marshaled.___scale;
  1239. unmarshaled.___scale = unmarshaledscale_temp_4;
  1240. }
  1241. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke_cleanup(SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled)
  1242. {
  1243. il2cpp_codegen_marshal_free(marshaled.___name);
  1244. marshaled.___name = NULL;
  1245. il2cpp_codegen_marshal_free(marshaled.___parentName);
  1246. marshaled.___parentName = NULL;
  1247. }
  1248. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled)
  1249. {
  1250. marshaled.___name = il2cpp_codegen_marshal_bstring(unmarshaled.___name);
  1251. marshaled.___parentName = il2cpp_codegen_marshal_bstring(unmarshaled.___parentName);
  1252. marshaled.___position = unmarshaled.___position;
  1253. marshaled.___rotation = unmarshaled.___rotation;
  1254. marshaled.___scale = unmarshaled.___scale;
  1255. }
  1256. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com_back(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled)
  1257. {
  1258. unmarshaled.___name = il2cpp_codegen_marshal_bstring_result(marshaled.___name);
  1259. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___name));
  1260. unmarshaled.___parentName = il2cpp_codegen_marshal_bstring_result(marshaled.___parentName);
  1261. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___parentName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___parentName));
  1262. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledposition_temp_2;
  1263. memset((&unmarshaledposition_temp_2), 0, sizeof(unmarshaledposition_temp_2));
  1264. unmarshaledposition_temp_2 = marshaled.___position;
  1265. unmarshaled.___position = unmarshaledposition_temp_2;
  1266. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 unmarshaledrotation_temp_3;
  1267. memset((&unmarshaledrotation_temp_3), 0, sizeof(unmarshaledrotation_temp_3));
  1268. unmarshaledrotation_temp_3 = marshaled.___rotation;
  1269. unmarshaled.___rotation = unmarshaledrotation_temp_3;
  1270. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledscale_temp_4;
  1271. memset((&unmarshaledscale_temp_4), 0, sizeof(unmarshaledscale_temp_4));
  1272. unmarshaledscale_temp_4 = marshaled.___scale;
  1273. unmarshaled.___scale = unmarshaledscale_temp_4;
  1274. }
  1275. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com_cleanup(SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled)
  1276. {
  1277. il2cpp_codegen_marshal_free_bstring(marshaled.___name);
  1278. marshaled.___name = NULL;
  1279. il2cpp_codegen_marshal_free_bstring(marshaled.___parentName);
  1280. marshaled.___parentName = NULL;
  1281. }
  1282. #ifdef __clang__
  1283. #pragma clang diagnostic pop
  1284. #endif
  1285. #ifdef __clang__
  1286. #pragma clang diagnostic push
  1287. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1288. #pragma clang diagnostic ignored "-Wunused-variable"
  1289. #endif
  1290. #ifdef __clang__
  1291. #pragma clang diagnostic pop
  1292. #endif
  1293. #ifdef __clang__
  1294. #pragma clang diagnostic push
  1295. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1296. #pragma clang diagnostic ignored "-Wunused-variable"
  1297. #endif
  1298. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled)
  1299. {
  1300. marshaled.___m_BoneName = il2cpp_codegen_marshal_string(unmarshaled.___m_BoneName);
  1301. marshaled.___m_HumanName = il2cpp_codegen_marshal_string(unmarshaled.___m_HumanName);
  1302. marshaled.___limit = unmarshaled.___limit;
  1303. }
  1304. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke_back(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled)
  1305. {
  1306. unmarshaled.___m_BoneName = il2cpp_codegen_marshal_string_result(marshaled.___m_BoneName);
  1307. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_BoneName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_BoneName));
  1308. unmarshaled.___m_HumanName = il2cpp_codegen_marshal_string_result(marshaled.___m_HumanName);
  1309. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_HumanName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_HumanName));
  1310. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E unmarshaledlimit_temp_2;
  1311. memset((&unmarshaledlimit_temp_2), 0, sizeof(unmarshaledlimit_temp_2));
  1312. unmarshaledlimit_temp_2 = marshaled.___limit;
  1313. unmarshaled.___limit = unmarshaledlimit_temp_2;
  1314. }
  1315. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke_cleanup(HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled)
  1316. {
  1317. il2cpp_codegen_marshal_free(marshaled.___m_BoneName);
  1318. marshaled.___m_BoneName = NULL;
  1319. il2cpp_codegen_marshal_free(marshaled.___m_HumanName);
  1320. marshaled.___m_HumanName = NULL;
  1321. }
  1322. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled)
  1323. {
  1324. marshaled.___m_BoneName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_BoneName);
  1325. marshaled.___m_HumanName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_HumanName);
  1326. marshaled.___limit = unmarshaled.___limit;
  1327. }
  1328. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com_back(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled)
  1329. {
  1330. unmarshaled.___m_BoneName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_BoneName);
  1331. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_BoneName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_BoneName));
  1332. unmarshaled.___m_HumanName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_HumanName);
  1333. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_HumanName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_HumanName));
  1334. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E unmarshaledlimit_temp_2;
  1335. memset((&unmarshaledlimit_temp_2), 0, sizeof(unmarshaledlimit_temp_2));
  1336. unmarshaledlimit_temp_2 = marshaled.___limit;
  1337. unmarshaled.___limit = unmarshaledlimit_temp_2;
  1338. }
  1339. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com_cleanup(HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled)
  1340. {
  1341. il2cpp_codegen_marshal_free_bstring(marshaled.___m_BoneName);
  1342. marshaled.___m_BoneName = NULL;
  1343. il2cpp_codegen_marshal_free_bstring(marshaled.___m_HumanName);
  1344. marshaled.___m_HumanName = NULL;
  1345. }
  1346. #ifdef __clang__
  1347. #pragma clang diagnostic pop
  1348. #endif
  1349. #ifdef __clang__
  1350. #pragma clang diagnostic push
  1351. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1352. #pragma clang diagnostic ignored "-Wunused-variable"
  1353. #endif
  1354. #ifdef __clang__
  1355. #pragma clang diagnostic pop
  1356. #endif
  1357. #ifdef __clang__
  1358. #pragma clang diagnostic push
  1359. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1360. #pragma clang diagnostic ignored "-Wunused-variable"
  1361. #endif
  1362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DiscreteEvaluationAttribute__ctor_m8C8036DC8BB15BBD3BBB79F2D14637C0DEBCB151 (DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9* __this, const RuntimeMethod* method)
  1363. {
  1364. {
  1365. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  1366. return;
  1367. }
  1368. }
  1369. #ifdef __clang__
  1370. #pragma clang diagnostic pop
  1371. #endif
  1372. #ifdef __clang__
  1373. #pragma clang diagnostic push
  1374. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1375. #pragma clang diagnostic ignored "-Wunused-variable"
  1376. #endif
  1377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DiscreteEvaluationAttributeUtilities_ConvertFloatToDiscreteInt_mADD1EB91441A214F69458BFF45F86E77D11A340C (float ___0_f, const RuntimeMethod* method)
  1378. {
  1379. float* V_0 = NULL;
  1380. int32_t* V_1 = NULL;
  1381. int32_t V_2 = 0;
  1382. {
  1383. V_0 = (float*)((uintptr_t)(&___0_f));
  1384. float* L_0 = V_0;
  1385. V_1 = (int32_t*)L_0;
  1386. int32_t* L_1 = V_1;
  1387. int32_t L_2 = (*(L_1));
  1388. V_2 = L_2;
  1389. goto IL_000d;
  1390. }
  1391. IL_000d:
  1392. {
  1393. int32_t L_3 = V_2;
  1394. return L_3;
  1395. }
  1396. }
  1397. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DiscreteEvaluationAttributeUtilities_ConvertDiscreteIntToFloat_m6A22CA1A2232C185F6E10865530FFEDA68E28D7F (int32_t ___0_f, const RuntimeMethod* method)
  1398. {
  1399. int32_t* V_0 = NULL;
  1400. float* V_1 = NULL;
  1401. float V_2 = 0.0f;
  1402. {
  1403. V_0 = (int32_t*)((uintptr_t)(&___0_f));
  1404. int32_t* L_0 = V_0;
  1405. V_1 = (float*)L_0;
  1406. float* L_1 = V_1;
  1407. float L_2 = (*(L_1));
  1408. V_2 = L_2;
  1409. goto IL_000d;
  1410. }
  1411. IL_000d:
  1412. {
  1413. float L_3 = V_2;
  1414. return L_3;
  1415. }
  1416. }
  1417. #ifdef __clang__
  1418. #pragma clang diagnostic pop
  1419. #endif
  1420. #ifdef __clang__
  1421. #pragma clang diagnostic push
  1422. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1423. #pragma clang diagnostic ignored "-Wunused-variable"
  1424. #endif
  1425. #ifdef __clang__
  1426. #pragma clang diagnostic pop
  1427. #endif
  1428. #ifdef __clang__
  1429. #pragma clang diagnostic push
  1430. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1431. #pragma clang diagnostic ignored "-Wunused-variable"
  1432. #endif
  1433. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, const RuntimeMethod* method)
  1434. {
  1435. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1436. memset((&V_0), 0, sizeof(V_0));
  1437. {
  1438. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1439. V_0 = L_0;
  1440. goto IL_000a;
  1441. }
  1442. IL_000a:
  1443. {
  1444. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1445. return L_1;
  1446. }
  1447. }
  1448. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1449. {
  1450. AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* _thisAdjusted;
  1451. int32_t _offset = 1;
  1452. _thisAdjusted = reinterpret_cast<AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969*>(__this + _offset);
  1453. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1454. _returnValue = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627(_thisAdjusted, method);
  1455. return _returnValue;
  1456. }
  1457. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method)
  1458. {
  1459. static bool s_Il2CppMethodInitialized;
  1460. if (!s_Il2CppMethodInitialized)
  1461. {
  1462. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1463. s_Il2CppMethodInitialized = true;
  1464. }
  1465. bool V_0 = false;
  1466. {
  1467. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1468. L_0 = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627(__this, NULL);
  1469. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1470. L_1 = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627((&___0_other), NULL);
  1471. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1472. bool L_2;
  1473. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1474. V_0 = L_2;
  1475. goto IL_0016;
  1476. }
  1477. IL_0016:
  1478. {
  1479. bool L_3 = V_0;
  1480. return L_3;
  1481. }
  1482. }
  1483. IL2CPP_EXTERN_C bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4_AdjustorThunk (RuntimeObject* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method)
  1484. {
  1485. AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* _thisAdjusted;
  1486. int32_t _offset = 1;
  1487. _thisAdjusted = reinterpret_cast<AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969*>(__this + _offset);
  1488. bool _returnValue;
  1489. _returnValue = AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4(_thisAdjusted, ___0_other, method);
  1490. return _returnValue;
  1491. }
  1492. #ifdef __clang__
  1493. #pragma clang diagnostic pop
  1494. #endif
  1495. #ifdef __clang__
  1496. #pragma clang diagnostic push
  1497. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1498. #pragma clang diagnostic ignored "-Wunused-variable"
  1499. #endif
  1500. #ifdef __clang__
  1501. #pragma clang diagnostic pop
  1502. #endif
  1503. #ifdef __clang__
  1504. #pragma clang diagnostic push
  1505. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1506. #pragma clang diagnostic ignored "-Wunused-variable"
  1507. #endif
  1508. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method)
  1509. {
  1510. static bool s_Il2CppMethodInitialized;
  1511. if (!s_Il2CppMethodInitialized)
  1512. {
  1513. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  1514. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var);
  1515. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1516. s_Il2CppMethodInitialized = true;
  1517. }
  1518. bool V_0 = false;
  1519. bool V_1 = false;
  1520. {
  1521. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1522. bool L_0;
  1523. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  1524. V_0 = L_0;
  1525. bool L_1 = V_0;
  1526. if (!L_1)
  1527. {
  1528. goto IL_0030;
  1529. }
  1530. }
  1531. {
  1532. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1533. bool L_2;
  1534. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var);
  1535. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1536. bool L_3 = V_1;
  1537. if (!L_3)
  1538. {
  1539. goto IL_0026;
  1540. }
  1541. }
  1542. {
  1543. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  1544. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD2435BFAEB0372E848D9BE812E3B06AB862CC3D1)), NULL);
  1545. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_RuntimeMethod_var)));
  1546. }
  1547. IL_0026:
  1548. {
  1549. bool L_5 = ___1_singleLayerOptimization;
  1550. il2cpp_codegen_runtime_class_init_inline(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  1551. AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB((&___0_handle), L_5, NULL);
  1552. }
  1553. IL_0030:
  1554. {
  1555. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_6 = ___0_handle;
  1556. __this->___m_Handle = L_6;
  1557. return;
  1558. }
  1559. }
  1560. IL2CPP_EXTERN_C void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method)
  1561. {
  1562. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  1563. int32_t _offset = 1;
  1564. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  1565. AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6(_thisAdjusted, ___0_handle, ___1_singleLayerOptimization, method);
  1566. }
  1567. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, const RuntimeMethod* method)
  1568. {
  1569. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1570. memset((&V_0), 0, sizeof(V_0));
  1571. {
  1572. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1573. V_0 = L_0;
  1574. goto IL_000a;
  1575. }
  1576. IL_000a:
  1577. {
  1578. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1579. return L_1;
  1580. }
  1581. }
  1582. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1583. {
  1584. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  1585. int32_t _offset = 1;
  1586. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  1587. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1588. _returnValue = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F(_thisAdjusted, method);
  1589. return _returnValue;
  1590. }
  1591. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method)
  1592. {
  1593. static bool s_Il2CppMethodInitialized;
  1594. if (!s_Il2CppMethodInitialized)
  1595. {
  1596. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  1597. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1598. s_Il2CppMethodInitialized = true;
  1599. }
  1600. bool V_0 = false;
  1601. {
  1602. il2cpp_codegen_runtime_class_init_inline(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  1603. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1604. L_0 = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F(__this, NULL);
  1605. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1606. L_1 = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F((&___0_other), NULL);
  1607. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1608. bool L_2;
  1609. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1610. V_0 = L_2;
  1611. goto IL_0016;
  1612. }
  1613. IL_0016:
  1614. {
  1615. bool L_3 = V_0;
  1616. return L_3;
  1617. }
  1618. }
  1619. IL2CPP_EXTERN_C bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970_AdjustorThunk (RuntimeObject* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method)
  1620. {
  1621. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  1622. int32_t _offset = 1;
  1623. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  1624. bool _returnValue;
  1625. _returnValue = AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970(_thisAdjusted, ___0_other, method);
  1626. return _returnValue;
  1627. }
  1628. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* ___0_handle, bool ___1_value, const RuntimeMethod* method)
  1629. {
  1630. typedef void (*AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, bool);
  1631. static AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn _il2cpp_icall_func;
  1632. if (!_il2cpp_icall_func)
  1633. _il2cpp_icall_func = (AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animations.AnimationLayerMixerPlayable::SetSingleLayerOptimizationInternal(UnityEngine.Playables.PlayableHandle&,System.Boolean)");
  1634. _il2cpp_icall_func(___0_handle, ___1_value);
  1635. }
  1636. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__cctor_m27A78F2EB8840FFCC84901AB4E916ACCE8D8E49B (const RuntimeMethod* method)
  1637. {
  1638. static bool s_Il2CppMethodInitialized;
  1639. if (!s_Il2CppMethodInitialized)
  1640. {
  1641. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  1642. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1643. s_Il2CppMethodInitialized = true;
  1644. }
  1645. {
  1646. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1647. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1648. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  1649. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D L_1;
  1650. memset((&L_1), 0, sizeof(L_1));
  1651. AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6((&L_1), L_0, (bool)1, NULL);
  1652. ((AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_StaticFields*)il2cpp_codegen_static_fields_for(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  1653. return;
  1654. }
  1655. }
  1656. #ifdef __clang__
  1657. #pragma clang diagnostic pop
  1658. #endif
  1659. #ifdef __clang__
  1660. #pragma clang diagnostic push
  1661. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1662. #pragma clang diagnostic ignored "-Wunused-variable"
  1663. #endif
  1664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7 (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  1665. {
  1666. static bool s_Il2CppMethodInitialized;
  1667. if (!s_Il2CppMethodInitialized)
  1668. {
  1669. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var);
  1670. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1671. s_Il2CppMethodInitialized = true;
  1672. }
  1673. bool V_0 = false;
  1674. bool V_1 = false;
  1675. {
  1676. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1677. bool L_0;
  1678. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  1679. V_0 = L_0;
  1680. bool L_1 = V_0;
  1681. if (!L_1)
  1682. {
  1683. goto IL_0027;
  1684. }
  1685. }
  1686. {
  1687. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1688. bool L_2;
  1689. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var);
  1690. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1691. bool L_3 = V_1;
  1692. if (!L_3)
  1693. {
  1694. goto IL_0026;
  1695. }
  1696. }
  1697. {
  1698. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  1699. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DEE968069F34C26613ADFCD69C41EFC29314286)), NULL);
  1700. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_RuntimeMethod_var)));
  1701. }
  1702. IL_0026:
  1703. {
  1704. }
  1705. IL_0027:
  1706. {
  1707. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  1708. __this->___m_Handle = L_5;
  1709. return;
  1710. }
  1711. }
  1712. IL2CPP_EXTERN_C void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  1713. {
  1714. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  1715. int32_t _offset = 1;
  1716. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  1717. AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7(_thisAdjusted, ___0_handle, method);
  1718. }
  1719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, const RuntimeMethod* method)
  1720. {
  1721. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1722. memset((&V_0), 0, sizeof(V_0));
  1723. {
  1724. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1725. V_0 = L_0;
  1726. goto IL_000a;
  1727. }
  1728. IL_000a:
  1729. {
  1730. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1731. return L_1;
  1732. }
  1733. }
  1734. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1735. {
  1736. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  1737. int32_t _offset = 1;
  1738. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  1739. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1740. _returnValue = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F(_thisAdjusted, method);
  1741. return _returnValue;
  1742. }
  1743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method)
  1744. {
  1745. static bool s_Il2CppMethodInitialized;
  1746. if (!s_Il2CppMethodInitialized)
  1747. {
  1748. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  1749. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1750. s_Il2CppMethodInitialized = true;
  1751. }
  1752. bool V_0 = false;
  1753. {
  1754. il2cpp_codegen_runtime_class_init_inline(AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  1755. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1756. L_0 = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F(__this, NULL);
  1757. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1758. L_1 = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F((&___0_other), NULL);
  1759. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1760. bool L_2;
  1761. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1762. V_0 = L_2;
  1763. goto IL_0016;
  1764. }
  1765. IL_0016:
  1766. {
  1767. bool L_3 = V_0;
  1768. return L_3;
  1769. }
  1770. }
  1771. IL2CPP_EXTERN_C bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E_AdjustorThunk (RuntimeObject* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method)
  1772. {
  1773. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  1774. int32_t _offset = 1;
  1775. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  1776. bool _returnValue;
  1777. _returnValue = AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E(_thisAdjusted, ___0_other, method);
  1778. return _returnValue;
  1779. }
  1780. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__cctor_m7D67E8E778387293AF1ACB1FDBE6ADA3E456A969 (const RuntimeMethod* method)
  1781. {
  1782. static bool s_Il2CppMethodInitialized;
  1783. if (!s_Il2CppMethodInitialized)
  1784. {
  1785. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  1786. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1787. s_Il2CppMethodInitialized = true;
  1788. }
  1789. {
  1790. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1791. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1792. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  1793. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 L_1;
  1794. memset((&L_1), 0, sizeof(L_1));
  1795. AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7((&L_1), L_0, NULL);
  1796. ((AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_StaticFields*)il2cpp_codegen_static_fields_for(AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  1797. return;
  1798. }
  1799. }
  1800. #ifdef __clang__
  1801. #pragma clang diagnostic pop
  1802. #endif
  1803. #ifdef __clang__
  1804. #pragma clang diagnostic push
  1805. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1806. #pragma clang diagnostic ignored "-Wunused-variable"
  1807. #endif
  1808. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  1809. {
  1810. static bool s_Il2CppMethodInitialized;
  1811. if (!s_Il2CppMethodInitialized)
  1812. {
  1813. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var);
  1814. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1815. s_Il2CppMethodInitialized = true;
  1816. }
  1817. bool V_0 = false;
  1818. bool V_1 = false;
  1819. {
  1820. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1821. bool L_0;
  1822. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  1823. V_0 = L_0;
  1824. bool L_1 = V_0;
  1825. if (!L_1)
  1826. {
  1827. goto IL_0027;
  1828. }
  1829. }
  1830. {
  1831. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1832. bool L_2;
  1833. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var);
  1834. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1835. bool L_3 = V_1;
  1836. if (!L_3)
  1837. {
  1838. goto IL_0026;
  1839. }
  1840. }
  1841. {
  1842. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  1843. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DC2252638D84FAF2C30B95D54EC83F52FA6C630)), NULL);
  1844. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_RuntimeMethod_var)));
  1845. }
  1846. IL_0026:
  1847. {
  1848. }
  1849. IL_0027:
  1850. {
  1851. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  1852. __this->___m_Handle = L_5;
  1853. return;
  1854. }
  1855. }
  1856. IL2CPP_EXTERN_C void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  1857. {
  1858. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  1859. int32_t _offset = 1;
  1860. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  1861. AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940(_thisAdjusted, ___0_handle, method);
  1862. }
  1863. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, const RuntimeMethod* method)
  1864. {
  1865. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  1866. memset((&V_0), 0, sizeof(V_0));
  1867. {
  1868. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  1869. V_0 = L_0;
  1870. goto IL_000a;
  1871. }
  1872. IL_000a:
  1873. {
  1874. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  1875. return L_1;
  1876. }
  1877. }
  1878. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1879. {
  1880. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  1881. int32_t _offset = 1;
  1882. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  1883. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  1884. _returnValue = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2(_thisAdjusted, method);
  1885. return _returnValue;
  1886. }
  1887. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method)
  1888. {
  1889. static bool s_Il2CppMethodInitialized;
  1890. if (!s_Il2CppMethodInitialized)
  1891. {
  1892. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  1893. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1894. s_Il2CppMethodInitialized = true;
  1895. }
  1896. bool V_0 = false;
  1897. {
  1898. il2cpp_codegen_runtime_class_init_inline(AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  1899. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1900. L_0 = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2(__this, NULL);
  1901. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  1902. L_1 = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2((&___0_other), NULL);
  1903. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1904. bool L_2;
  1905. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  1906. V_0 = L_2;
  1907. goto IL_0016;
  1908. }
  1909. IL_0016:
  1910. {
  1911. bool L_3 = V_0;
  1912. return L_3;
  1913. }
  1914. }
  1915. IL2CPP_EXTERN_C bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC_AdjustorThunk (RuntimeObject* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method)
  1916. {
  1917. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  1918. int32_t _offset = 1;
  1919. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  1920. bool _returnValue;
  1921. _returnValue = AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC(_thisAdjusted, ___0_other, method);
  1922. return _returnValue;
  1923. }
  1924. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__cctor_m4FC582F607F00D5E2A6B97219D2D4150AFA42AF1 (const RuntimeMethod* method)
  1925. {
  1926. static bool s_Il2CppMethodInitialized;
  1927. if (!s_Il2CppMethodInitialized)
  1928. {
  1929. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  1930. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1931. s_Il2CppMethodInitialized = true;
  1932. }
  1933. {
  1934. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1935. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  1936. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  1937. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 L_1;
  1938. memset((&L_1), 0, sizeof(L_1));
  1939. AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940((&L_1), L_0, NULL);
  1940. ((AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_StaticFields*)il2cpp_codegen_static_fields_for(AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  1941. return;
  1942. }
  1943. }
  1944. #ifdef __clang__
  1945. #pragma clang diagnostic pop
  1946. #endif
  1947. #ifdef __clang__
  1948. #pragma clang diagnostic push
  1949. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1950. #pragma clang diagnostic ignored "-Wunused-variable"
  1951. #endif
  1952. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  1953. {
  1954. static bool s_Il2CppMethodInitialized;
  1955. if (!s_Il2CppMethodInitialized)
  1956. {
  1957. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var);
  1958. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1959. s_Il2CppMethodInitialized = true;
  1960. }
  1961. bool V_0 = false;
  1962. bool V_1 = false;
  1963. {
  1964. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1965. bool L_0;
  1966. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  1967. V_0 = L_0;
  1968. bool L_1 = V_0;
  1969. if (!L_1)
  1970. {
  1971. goto IL_0027;
  1972. }
  1973. }
  1974. {
  1975. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  1976. bool L_2;
  1977. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var);
  1978. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1979. bool L_3 = V_1;
  1980. if (!L_3)
  1981. {
  1982. goto IL_0026;
  1983. }
  1984. }
  1985. {
  1986. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  1987. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA3C8FF345EC45846B2EE6801F84DD49340F0A9E1)), NULL);
  1988. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_RuntimeMethod_var)));
  1989. }
  1990. IL_0026:
  1991. {
  1992. }
  1993. IL_0027:
  1994. {
  1995. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  1996. __this->___m_Handle = L_5;
  1997. return;
  1998. }
  1999. }
  2000. IL2CPP_EXTERN_C void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2001. {
  2002. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2003. int32_t _offset = 1;
  2004. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2005. AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD(_thisAdjusted, ___0_handle, method);
  2006. }
  2007. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, const RuntimeMethod* method)
  2008. {
  2009. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2010. memset((&V_0), 0, sizeof(V_0));
  2011. {
  2012. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2013. V_0 = L_0;
  2014. goto IL_000a;
  2015. }
  2016. IL_000a:
  2017. {
  2018. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2019. return L_1;
  2020. }
  2021. }
  2022. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2023. {
  2024. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2025. int32_t _offset = 1;
  2026. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2027. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2028. _returnValue = AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78(_thisAdjusted, method);
  2029. return _returnValue;
  2030. }
  2031. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method)
  2032. {
  2033. static bool s_Il2CppMethodInitialized;
  2034. if (!s_Il2CppMethodInitialized)
  2035. {
  2036. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2037. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2038. s_Il2CppMethodInitialized = true;
  2039. }
  2040. bool V_0 = false;
  2041. {
  2042. il2cpp_codegen_runtime_class_init_inline(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2043. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2044. L_0 = AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78((&___0_other), NULL);
  2045. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  2046. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  2047. Il2CppFakeBox<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4> L_3(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var, __this);
  2048. bool L_4;
  2049. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  2050. V_0 = L_4;
  2051. goto IL_001c;
  2052. }
  2053. IL_001c:
  2054. {
  2055. bool L_5 = V_0;
  2056. return L_5;
  2057. }
  2058. }
  2059. IL2CPP_EXTERN_C bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270_AdjustorThunk (RuntimeObject* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method)
  2060. {
  2061. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2062. int32_t _offset = 1;
  2063. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2064. bool _returnValue;
  2065. _returnValue = AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270(_thisAdjusted, ___0_other, method);
  2066. return _returnValue;
  2067. }
  2068. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__cctor_m6F50D35CE1FAF52BD587DD3B440CBDE34A76B096 (const RuntimeMethod* method)
  2069. {
  2070. static bool s_Il2CppMethodInitialized;
  2071. if (!s_Il2CppMethodInitialized)
  2072. {
  2073. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2074. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2075. s_Il2CppMethodInitialized = true;
  2076. }
  2077. {
  2078. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2079. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2080. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2081. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 L_1;
  2082. memset((&L_1), 0, sizeof(L_1));
  2083. AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD((&L_1), L_0, NULL);
  2084. ((AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_StaticFields*)il2cpp_codegen_static_fields_for(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2085. return;
  2086. }
  2087. }
  2088. #ifdef __clang__
  2089. #pragma clang diagnostic pop
  2090. #endif
  2091. #ifdef __clang__
  2092. #pragma clang diagnostic push
  2093. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2094. #pragma clang diagnostic ignored "-Wunused-variable"
  2095. #endif
  2096. #ifdef __clang__
  2097. #pragma clang diagnostic pop
  2098. #endif
  2099. #ifdef __clang__
  2100. #pragma clang diagnostic push
  2101. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2102. #pragma clang diagnostic ignored "-Wunused-variable"
  2103. #endif
  2104. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2105. {
  2106. static bool s_Il2CppMethodInitialized;
  2107. if (!s_Il2CppMethodInitialized)
  2108. {
  2109. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var);
  2110. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2111. s_Il2CppMethodInitialized = true;
  2112. }
  2113. bool V_0 = false;
  2114. bool V_1 = false;
  2115. {
  2116. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2117. bool L_0;
  2118. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2119. V_0 = L_0;
  2120. bool L_1 = V_0;
  2121. if (!L_1)
  2122. {
  2123. goto IL_0027;
  2124. }
  2125. }
  2126. {
  2127. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2128. bool L_2;
  2129. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var);
  2130. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2131. bool L_3 = V_1;
  2132. if (!L_3)
  2133. {
  2134. goto IL_0026;
  2135. }
  2136. }
  2137. {
  2138. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2139. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE066D08B565F88D413FDACA14C42BFF008FF4EB9)), NULL);
  2140. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_RuntimeMethod_var)));
  2141. }
  2142. IL_0026:
  2143. {
  2144. }
  2145. IL_0027:
  2146. {
  2147. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2148. __this->___m_Handle = L_5;
  2149. return;
  2150. }
  2151. }
  2152. IL2CPP_EXTERN_C void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2153. {
  2154. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2155. int32_t _offset = 1;
  2156. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2157. AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F(_thisAdjusted, ___0_handle, method);
  2158. }
  2159. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, const RuntimeMethod* method)
  2160. {
  2161. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2162. memset((&V_0), 0, sizeof(V_0));
  2163. {
  2164. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2165. V_0 = L_0;
  2166. goto IL_000a;
  2167. }
  2168. IL_000a:
  2169. {
  2170. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2171. return L_1;
  2172. }
  2173. }
  2174. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2175. {
  2176. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2177. int32_t _offset = 1;
  2178. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2179. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2180. _returnValue = AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B(_thisAdjusted, method);
  2181. return _returnValue;
  2182. }
  2183. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3 (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method)
  2184. {
  2185. static bool s_Il2CppMethodInitialized;
  2186. if (!s_Il2CppMethodInitialized)
  2187. {
  2188. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  2189. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2190. s_Il2CppMethodInitialized = true;
  2191. }
  2192. bool V_0 = false;
  2193. {
  2194. il2cpp_codegen_runtime_class_init_inline(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  2195. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2196. L_0 = AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B((&___0_other), NULL);
  2197. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  2198. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  2199. Il2CppFakeBox<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C> L_3(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var, __this);
  2200. bool L_4;
  2201. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  2202. V_0 = L_4;
  2203. goto IL_001c;
  2204. }
  2205. IL_001c:
  2206. {
  2207. bool L_5 = V_0;
  2208. return L_5;
  2209. }
  2210. }
  2211. IL2CPP_EXTERN_C bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3_AdjustorThunk (RuntimeObject* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method)
  2212. {
  2213. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2214. int32_t _offset = 1;
  2215. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2216. bool _returnValue;
  2217. _returnValue = AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3(_thisAdjusted, ___0_other, method);
  2218. return _returnValue;
  2219. }
  2220. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__cctor_mFA5FE84F06C8E9A89C07190055BC898525F897C4 (const RuntimeMethod* method)
  2221. {
  2222. static bool s_Il2CppMethodInitialized;
  2223. if (!s_Il2CppMethodInitialized)
  2224. {
  2225. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  2226. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2227. s_Il2CppMethodInitialized = true;
  2228. }
  2229. {
  2230. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2231. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2232. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2233. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C L_1;
  2234. memset((&L_1), 0, sizeof(L_1));
  2235. AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F((&L_1), L_0, NULL);
  2236. ((AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_StaticFields*)il2cpp_codegen_static_fields_for(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2237. return;
  2238. }
  2239. }
  2240. #ifdef __clang__
  2241. #pragma clang diagnostic pop
  2242. #endif
  2243. #ifdef __clang__
  2244. #pragma clang diagnostic push
  2245. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2246. #pragma clang diagnostic ignored "-Wunused-variable"
  2247. #endif
  2248. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2249. {
  2250. static bool s_Il2CppMethodInitialized;
  2251. if (!s_Il2CppMethodInitialized)
  2252. {
  2253. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var);
  2254. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2255. s_Il2CppMethodInitialized = true;
  2256. }
  2257. bool V_0 = false;
  2258. bool V_1 = false;
  2259. {
  2260. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2261. bool L_0;
  2262. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2263. V_0 = L_0;
  2264. bool L_1 = V_0;
  2265. if (!L_1)
  2266. {
  2267. goto IL_0027;
  2268. }
  2269. }
  2270. {
  2271. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2272. bool L_2;
  2273. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var);
  2274. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2275. bool L_3 = V_1;
  2276. if (!L_3)
  2277. {
  2278. goto IL_0026;
  2279. }
  2280. }
  2281. {
  2282. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2283. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral98C704D69BD1A288ED31DEE4ED4E50097A2D7018)), NULL);
  2284. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_RuntimeMethod_var)));
  2285. }
  2286. IL_0026:
  2287. {
  2288. }
  2289. IL_0027:
  2290. {
  2291. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2292. __this->___m_Handle = L_5;
  2293. return;
  2294. }
  2295. }
  2296. IL2CPP_EXTERN_C void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2297. {
  2298. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  2299. int32_t _offset = 1;
  2300. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  2301. AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2(_thisAdjusted, ___0_handle, method);
  2302. }
  2303. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, const RuntimeMethod* method)
  2304. {
  2305. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2306. memset((&V_0), 0, sizeof(V_0));
  2307. {
  2308. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2309. V_0 = L_0;
  2310. goto IL_000a;
  2311. }
  2312. IL_000a:
  2313. {
  2314. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2315. return L_1;
  2316. }
  2317. }
  2318. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2319. {
  2320. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  2321. int32_t _offset = 1;
  2322. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  2323. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2324. _returnValue = AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6(_thisAdjusted, method);
  2325. return _returnValue;
  2326. }
  2327. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method)
  2328. {
  2329. static bool s_Il2CppMethodInitialized;
  2330. if (!s_Il2CppMethodInitialized)
  2331. {
  2332. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  2333. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2334. s_Il2CppMethodInitialized = true;
  2335. }
  2336. bool V_0 = false;
  2337. {
  2338. il2cpp_codegen_runtime_class_init_inline(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  2339. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2340. L_0 = AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6((&___0_other), NULL);
  2341. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  2342. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  2343. Il2CppFakeBox<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD> L_3(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var, __this);
  2344. bool L_4;
  2345. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  2346. V_0 = L_4;
  2347. goto IL_001c;
  2348. }
  2349. IL_001c:
  2350. {
  2351. bool L_5 = V_0;
  2352. return L_5;
  2353. }
  2354. }
  2355. IL2CPP_EXTERN_C bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327_AdjustorThunk (RuntimeObject* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method)
  2356. {
  2357. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  2358. int32_t _offset = 1;
  2359. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  2360. bool _returnValue;
  2361. _returnValue = AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327(_thisAdjusted, ___0_other, method);
  2362. return _returnValue;
  2363. }
  2364. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__cctor_m42E614B0B33898D92DFE06CA6045698BE94DE633 (const RuntimeMethod* method)
  2365. {
  2366. static bool s_Il2CppMethodInitialized;
  2367. if (!s_Il2CppMethodInitialized)
  2368. {
  2369. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  2370. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2371. s_Il2CppMethodInitialized = true;
  2372. }
  2373. {
  2374. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2375. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2376. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2377. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD L_1;
  2378. memset((&L_1), 0, sizeof(L_1));
  2379. AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2((&L_1), L_0, NULL);
  2380. ((AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_StaticFields*)il2cpp_codegen_static_fields_for(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2381. return;
  2382. }
  2383. }
  2384. #ifdef __clang__
  2385. #pragma clang diagnostic pop
  2386. #endif
  2387. #ifdef __clang__
  2388. #pragma clang diagnostic push
  2389. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2390. #pragma clang diagnostic ignored "-Wunused-variable"
  2391. #endif
  2392. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2393. {
  2394. static bool s_Il2CppMethodInitialized;
  2395. if (!s_Il2CppMethodInitialized)
  2396. {
  2397. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var);
  2398. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2399. s_Il2CppMethodInitialized = true;
  2400. }
  2401. bool V_0 = false;
  2402. bool V_1 = false;
  2403. {
  2404. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2405. bool L_0;
  2406. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2407. V_0 = L_0;
  2408. bool L_1 = V_0;
  2409. if (!L_1)
  2410. {
  2411. goto IL_0027;
  2412. }
  2413. }
  2414. {
  2415. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2416. bool L_2;
  2417. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var);
  2418. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2419. bool L_3 = V_1;
  2420. if (!L_3)
  2421. {
  2422. goto IL_0026;
  2423. }
  2424. }
  2425. {
  2426. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2427. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral860B9EA7CDAB02A8A4B38336805EAE2FBA31F09C)), NULL);
  2428. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_RuntimeMethod_var)));
  2429. }
  2430. IL_0026:
  2431. {
  2432. }
  2433. IL_0027:
  2434. {
  2435. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2436. __this->___m_Handle = L_5;
  2437. return;
  2438. }
  2439. }
  2440. IL2CPP_EXTERN_C void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2441. {
  2442. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  2443. int32_t _offset = 1;
  2444. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  2445. AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247(_thisAdjusted, ___0_handle, method);
  2446. }
  2447. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, const RuntimeMethod* method)
  2448. {
  2449. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2450. memset((&V_0), 0, sizeof(V_0));
  2451. {
  2452. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2453. V_0 = L_0;
  2454. goto IL_000a;
  2455. }
  2456. IL_000a:
  2457. {
  2458. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2459. return L_1;
  2460. }
  2461. }
  2462. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2463. {
  2464. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  2465. int32_t _offset = 1;
  2466. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  2467. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2468. _returnValue = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646(_thisAdjusted, method);
  2469. return _returnValue;
  2470. }
  2471. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method)
  2472. {
  2473. static bool s_Il2CppMethodInitialized;
  2474. if (!s_Il2CppMethodInitialized)
  2475. {
  2476. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  2477. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2478. s_Il2CppMethodInitialized = true;
  2479. }
  2480. bool V_0 = false;
  2481. {
  2482. il2cpp_codegen_runtime_class_init_inline(AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  2483. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2484. L_0 = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646(__this, NULL);
  2485. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2486. L_1 = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646((&___0_other), NULL);
  2487. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2488. bool L_2;
  2489. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2490. V_0 = L_2;
  2491. goto IL_0016;
  2492. }
  2493. IL_0016:
  2494. {
  2495. bool L_3 = V_0;
  2496. return L_3;
  2497. }
  2498. }
  2499. IL2CPP_EXTERN_C bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4_AdjustorThunk (RuntimeObject* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method)
  2500. {
  2501. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  2502. int32_t _offset = 1;
  2503. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  2504. bool _returnValue;
  2505. _returnValue = AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4(_thisAdjusted, ___0_other, method);
  2506. return _returnValue;
  2507. }
  2508. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__cctor_m5ED4D3FC06BC7A51D3A48B5611F759CB00F7CF54 (const RuntimeMethod* method)
  2509. {
  2510. static bool s_Il2CppMethodInitialized;
  2511. if (!s_Il2CppMethodInitialized)
  2512. {
  2513. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  2514. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2515. s_Il2CppMethodInitialized = true;
  2516. }
  2517. {
  2518. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2519. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2520. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2521. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 L_1;
  2522. memset((&L_1), 0, sizeof(L_1));
  2523. AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247((&L_1), L_0, NULL);
  2524. ((AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_StaticFields*)il2cpp_codegen_static_fields_for(AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2525. return;
  2526. }
  2527. }
  2528. #ifdef __clang__
  2529. #pragma clang diagnostic pop
  2530. #endif
  2531. #ifdef __clang__
  2532. #pragma clang diagnostic push
  2533. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2534. #pragma clang diagnostic ignored "-Wunused-variable"
  2535. #endif
  2536. #ifdef __clang__
  2537. #pragma clang diagnostic pop
  2538. #endif
  2539. #ifdef __clang__
  2540. #pragma clang diagnostic push
  2541. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2542. #pragma clang diagnostic ignored "-Wunused-variable"
  2543. #endif
  2544. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2545. {
  2546. static bool s_Il2CppMethodInitialized;
  2547. if (!s_Il2CppMethodInitialized)
  2548. {
  2549. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  2550. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2551. s_Il2CppMethodInitialized = true;
  2552. }
  2553. {
  2554. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2555. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2556. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2557. __this->___m_Handle = L_0;
  2558. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = ___0_handle;
  2559. il2cpp_codegen_runtime_class_init_inline(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  2560. AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4(__this, L_1, NULL);
  2561. return;
  2562. }
  2563. }
  2564. IL2CPP_EXTERN_C void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2565. {
  2566. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  2567. int32_t _offset = 1;
  2568. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  2569. AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE(_thisAdjusted, ___0_handle, method);
  2570. }
  2571. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, const RuntimeMethod* method)
  2572. {
  2573. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2574. memset((&V_0), 0, sizeof(V_0));
  2575. {
  2576. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2577. V_0 = L_0;
  2578. goto IL_000a;
  2579. }
  2580. IL_000a:
  2581. {
  2582. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2583. return L_1;
  2584. }
  2585. }
  2586. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2587. {
  2588. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  2589. int32_t _offset = 1;
  2590. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  2591. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2592. _returnValue = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C(_thisAdjusted, method);
  2593. return _returnValue;
  2594. }
  2595. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2596. {
  2597. static bool s_Il2CppMethodInitialized;
  2598. if (!s_Il2CppMethodInitialized)
  2599. {
  2600. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var);
  2601. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2602. s_Il2CppMethodInitialized = true;
  2603. }
  2604. bool V_0 = false;
  2605. bool V_1 = false;
  2606. bool V_2 = false;
  2607. {
  2608. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* L_0 = (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*)(&__this->___m_Handle);
  2609. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2610. bool L_1;
  2611. L_1 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098(L_0, NULL);
  2612. V_0 = L_1;
  2613. bool L_2 = V_0;
  2614. if (!L_2)
  2615. {
  2616. goto IL_001b;
  2617. }
  2618. }
  2619. {
  2620. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  2621. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF563F6FCC25CE41FFE0BF7590AF9F4475916665)), NULL);
  2622. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var)));
  2623. }
  2624. IL_001b:
  2625. {
  2626. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2627. bool L_4;
  2628. L_4 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2629. V_1 = L_4;
  2630. bool L_5 = V_1;
  2631. if (!L_5)
  2632. {
  2633. goto IL_0041;
  2634. }
  2635. }
  2636. {
  2637. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2638. bool L_6;
  2639. L_6 = PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var);
  2640. V_2 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
  2641. bool L_7 = V_2;
  2642. if (!L_7)
  2643. {
  2644. goto IL_0040;
  2645. }
  2646. }
  2647. {
  2648. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_8 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2649. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5510C45DDAD777CCB4893578D995C9739F990F2)), NULL);
  2650. IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var)));
  2651. }
  2652. IL_0040:
  2653. {
  2654. }
  2655. IL_0041:
  2656. {
  2657. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_9 = ___0_handle;
  2658. __this->___m_Handle = L_9;
  2659. return;
  2660. }
  2661. }
  2662. IL2CPP_EXTERN_C void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2663. {
  2664. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  2665. int32_t _offset = 1;
  2666. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  2667. AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4(_thisAdjusted, ___0_handle, method);
  2668. }
  2669. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method)
  2670. {
  2671. static bool s_Il2CppMethodInitialized;
  2672. if (!s_Il2CppMethodInitialized)
  2673. {
  2674. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  2675. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2676. s_Il2CppMethodInitialized = true;
  2677. }
  2678. bool V_0 = false;
  2679. {
  2680. il2cpp_codegen_runtime_class_init_inline(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  2681. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2682. L_0 = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C(__this, NULL);
  2683. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2684. L_1 = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C((&___0_other), NULL);
  2685. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2686. bool L_2;
  2687. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2688. V_0 = L_2;
  2689. goto IL_0016;
  2690. }
  2691. IL_0016:
  2692. {
  2693. bool L_3 = V_0;
  2694. return L_3;
  2695. }
  2696. }
  2697. IL2CPP_EXTERN_C bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180_AdjustorThunk (RuntimeObject* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method)
  2698. {
  2699. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  2700. int32_t _offset = 1;
  2701. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  2702. bool _returnValue;
  2703. _returnValue = AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180(_thisAdjusted, ___0_other, method);
  2704. return _returnValue;
  2705. }
  2706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__cctor_m88506D1B15D609B818DFDC6B2BCFF42ABB41B090 (const RuntimeMethod* method)
  2707. {
  2708. static bool s_Il2CppMethodInitialized;
  2709. if (!s_Il2CppMethodInitialized)
  2710. {
  2711. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  2712. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2713. s_Il2CppMethodInitialized = true;
  2714. }
  2715. {
  2716. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2717. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2718. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2719. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A L_1;
  2720. memset((&L_1), 0, sizeof(L_1));
  2721. AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE((&L_1), L_0, NULL);
  2722. ((AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_StaticFields*)il2cpp_codegen_static_fields_for(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2723. return;
  2724. }
  2725. }
  2726. #ifdef __clang__
  2727. #pragma clang diagnostic pop
  2728. #endif
  2729. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  2730. {
  2731. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2732. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2733. }