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 203KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855
  1. #include "pch-cpp.hpp"
  2. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  3. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  4. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  5. struct GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785;
  6. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  7. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  8. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174;
  9. struct AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE;
  10. struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883;
  11. struct AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493;
  12. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
  13. struct Delegate_t;
  14. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  15. struct DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9;
  16. struct GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768;
  17. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  18. struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
  19. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  20. struct MethodInfo_t;
  21. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
  22. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  23. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
  24. struct StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7;
  25. struct String_t;
  26. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F;
  27. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  28. struct OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5;
  29. IL2CPP_EXTERN_C RuntimeClass* AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var;
  30. IL2CPP_EXTERN_C RuntimeClass* AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_il2cpp_TypeInfo_var;
  31. IL2CPP_EXTERN_C RuntimeClass* AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var;
  32. IL2CPP_EXTERN_C RuntimeClass* AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var;
  33. IL2CPP_EXTERN_C RuntimeClass* AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var;
  34. IL2CPP_EXTERN_C RuntimeClass* AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var;
  35. IL2CPP_EXTERN_C RuntimeClass* AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var;
  36. IL2CPP_EXTERN_C RuntimeClass* AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var;
  37. IL2CPP_EXTERN_C RuntimeClass* AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var;
  38. IL2CPP_EXTERN_C RuntimeClass* AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE_il2cpp_TypeInfo_var;
  39. IL2CPP_EXTERN_C RuntimeClass* AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var;
  40. IL2CPP_EXTERN_C RuntimeClass* GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768_il2cpp_TypeInfo_var;
  41. IL2CPP_EXTERN_C RuntimeClass* GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785_il2cpp_TypeInfo_var;
  42. IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
  43. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  44. IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
  45. IL2CPP_EXTERN_C RuntimeClass* PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var;
  46. IL2CPP_EXTERN_C String_t* _stringLiteral4DEE968069F34C26613ADFCD69C41EFC29314286;
  47. IL2CPP_EXTERN_C String_t* _stringLiteral4EBC86E0EACFCA522AEB82874860D0E248D782A5;
  48. IL2CPP_EXTERN_C String_t* _stringLiteral860B9EA7CDAB02A8A4B38336805EAE2FBA31F09C;
  49. IL2CPP_EXTERN_C String_t* _stringLiteral8DC2252638D84FAF2C30B95D54EC83F52FA6C630;
  50. IL2CPP_EXTERN_C String_t* _stringLiteral98C704D69BD1A288ED31DEE4ED4E50097A2D7018;
  51. IL2CPP_EXTERN_C String_t* _stringLiteralA3C8FF345EC45846B2EE6801F84DD49340F0A9E1;
  52. IL2CPP_EXTERN_C String_t* _stringLiteralBF563F6FCC25CE41FFE0BF7590AF9F4475916665;
  53. IL2CPP_EXTERN_C String_t* _stringLiteralD2435BFAEB0372E848D9BE812E3B06AB862CC3D1;
  54. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  55. IL2CPP_EXTERN_C String_t* _stringLiteralE066D08B565F88D413FDACA14C42BFF008FF4EB9;
  56. IL2CPP_EXTERN_C String_t* _stringLiteralF5510C45DDAD777CCB4893578D995C9739F990F2;
  57. IL2CPP_EXTERN_C const RuntimeMethod* AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_RuntimeMethod_var;
  58. IL2CPP_EXTERN_C const RuntimeMethod* AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_RuntimeMethod_var;
  59. IL2CPP_EXTERN_C const RuntimeMethod* AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_RuntimeMethod_var;
  60. IL2CPP_EXTERN_C const RuntimeMethod* AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_RuntimeMethod_var;
  61. IL2CPP_EXTERN_C const RuntimeMethod* AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_RuntimeMethod_var;
  62. IL2CPP_EXTERN_C const RuntimeMethod* AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_RuntimeMethod_var;
  63. IL2CPP_EXTERN_C const RuntimeMethod* AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_RuntimeMethod_var;
  64. IL2CPP_EXTERN_C const RuntimeMethod* AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var;
  65. IL2CPP_EXTERN_C const RuntimeMethod* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_RuntimeMethod_var;
  66. IL2CPP_EXTERN_C const RuntimeMethod* MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var;
  67. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var;
  68. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var;
  69. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var;
  70. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var;
  71. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var;
  72. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var;
  73. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var;
  74. IL2CPP_EXTERN_C const RuntimeMethod* PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var;
  75. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var;
  76. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
  77. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
  78. IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var;
  79. struct Delegate_t_marshaled_com;
  80. struct Delegate_t_marshaled_pinvoke;
  81. struct Exception_t_marshaled_com;
  82. struct Exception_t_marshaled_pinvoke;
  83. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  84. struct GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785;
  85. IL2CPP_EXTERN_C_BEGIN
  86. IL2CPP_EXTERN_C_END
  87. #ifdef __clang__
  88. #pragma clang diagnostic push
  89. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  90. #pragma clang diagnostic ignored "-Wunused-variable"
  91. #endif
  92. struct U3CModuleU3E_t8B36B9B16FF72CF5A0EBA03D2FA162E77C86534C
  93. {
  94. };
  95. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
  96. {
  97. };
  98. struct DiscreteEvaluationAttributeUtilities_t68E395E51959C3C2041D4681D643EE383C09E5E5 : public RuntimeObject
  99. {
  100. };
  101. struct GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768 : public RuntimeObject
  102. {
  103. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* ___m_handles;
  104. int32_t ___m_current;
  105. };
  106. struct String_t : public RuntimeObject
  107. {
  108. int32_t ____stringLength;
  109. Il2CppChar ____firstChar;
  110. };
  111. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  112. {
  113. };
  114. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  115. {
  116. };
  117. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  118. {
  119. };
  120. struct AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03
  121. {
  122. int32_t ___m_ClipInstanceID;
  123. float ___m_Weight;
  124. };
  125. struct AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2
  126. {
  127. int32_t ___m_Name;
  128. int32_t ___m_Path;
  129. int32_t ___m_FullPath;
  130. float ___m_NormalizedTime;
  131. float ___m_Length;
  132. float ___m_Speed;
  133. float ___m_SpeedMultiplier;
  134. int32_t ___m_Tag;
  135. int32_t ___m_Loop;
  136. };
  137. struct AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD
  138. {
  139. int32_t ___m_FullPath;
  140. int32_t ___m_UserName;
  141. int32_t ___m_Name;
  142. bool ___m_HasFixedDuration;
  143. float ___m_Duration;
  144. float ___m_NormalizedTime;
  145. bool ___m_AnyState;
  146. int32_t ___m_TransitionType;
  147. };
  148. struct AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke
  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 AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com
  160. {
  161. int32_t ___m_FullPath;
  162. int32_t ___m_UserName;
  163. int32_t ___m_Name;
  164. int32_t ___m_HasFixedDuration;
  165. float ___m_Duration;
  166. float ___m_NormalizedTime;
  167. int32_t ___m_AnyState;
  168. int32_t ___m_TransitionType;
  169. };
  170. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  171. {
  172. bool ___m_value;
  173. };
  174. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  175. {
  176. Il2CppChar ___m_value;
  177. };
  178. struct DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  179. {
  180. };
  181. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  182. {
  183. };
  184. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  185. {
  186. };
  187. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  188. {
  189. };
  190. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  191. {
  192. int32_t ___m_value;
  193. };
  194. struct IntPtr_t
  195. {
  196. void* ___m_value;
  197. };
  198. struct ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E
  199. {
  200. void* ___begin;
  201. int32_t ___length;
  202. };
  203. struct NotKeyableAttribute_tDDB6B25B26F649E3CED893EE1E63B6DE66844483 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  204. {
  205. };
  206. struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
  207. {
  208. float ___x;
  209. float ___y;
  210. float ___z;
  211. float ___w;
  212. };
  213. struct SharedBetweenAnimatorsAttribute_t44FFD5D3B5AEBB394182D66E2198FA398087449C : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  214. {
  215. };
  216. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  217. {
  218. float ___m_value;
  219. };
  220. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  221. {
  222. uint64_t ___m_value;
  223. };
  224. struct UIntPtr_t
  225. {
  226. void* ____pointer;
  227. };
  228. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
  229. {
  230. float ___x;
  231. float ___y;
  232. float ___z;
  233. };
  234. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  235. {
  236. union
  237. {
  238. struct
  239. {
  240. };
  241. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  242. };
  243. };
  244. struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
  245. {
  246. intptr_t ____value;
  247. };
  248. struct AnimationEventSource_t48460212F6BC00064115B85C42B656262118685E
  249. {
  250. int32_t ___value__;
  251. };
  252. struct AnimationHumanStream_t31E8EAD3F7C2C29CAE7B4EFB87AA84ECC6DCC6EC
  253. {
  254. intptr_t ___stream;
  255. };
  256. struct AnimationStream_tA73510DCEE63720142DF4F8E15C337A48E47B94A
  257. {
  258. uint32_t ___m_AnimatorBindingsVersion;
  259. intptr_t ___constant;
  260. intptr_t ___input;
  261. intptr_t ___output;
  262. intptr_t ___workspace;
  263. intptr_t ___inputStreamAccessor;
  264. intptr_t ___animationHandleBinder;
  265. };
  266. struct Delegate_t : public RuntimeObject
  267. {
  268. intptr_t ___method_ptr;
  269. intptr_t ___invoke_impl;
  270. RuntimeObject* ___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. bool ___method_is_virtual;
  281. };
  282. struct Delegate_t_marshaled_pinvoke
  283. {
  284. intptr_t ___method_ptr;
  285. intptr_t ___invoke_impl;
  286. Il2CppIUnknown* ___m_target;
  287. intptr_t ___method;
  288. intptr_t ___delegate_trampoline;
  289. intptr_t ___extra_arg;
  290. intptr_t ___method_code;
  291. intptr_t ___interp_method;
  292. intptr_t ___interp_invoke_impl;
  293. MethodInfo_t* ___method_info;
  294. MethodInfo_t* ___original_method_info;
  295. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  296. int32_t ___method_is_virtual;
  297. };
  298. struct Delegate_t_marshaled_com
  299. {
  300. intptr_t ___method_ptr;
  301. intptr_t ___invoke_impl;
  302. Il2CppIUnknown* ___m_target;
  303. intptr_t ___method;
  304. intptr_t ___delegate_trampoline;
  305. intptr_t ___extra_arg;
  306. intptr_t ___method_code;
  307. intptr_t ___interp_method;
  308. intptr_t ___interp_invoke_impl;
  309. MethodInfo_t* ___method_info;
  310. MethodInfo_t* ___original_method_info;
  311. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  312. int32_t ___method_is_virtual;
  313. };
  314. struct Exception_t : public RuntimeObject
  315. {
  316. String_t* ____className;
  317. String_t* ____message;
  318. RuntimeObject* ____data;
  319. Exception_t* ____innerException;
  320. String_t* ____helpURL;
  321. RuntimeObject* ____stackTrace;
  322. String_t* ____stackTraceString;
  323. String_t* ____remoteStackTraceString;
  324. int32_t ____remoteStackIndex;
  325. RuntimeObject* ____dynamicMethods;
  326. int32_t ____HResult;
  327. String_t* ____source;
  328. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  329. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  330. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  331. int32_t ___caught_in_unmanaged;
  332. };
  333. struct Exception_t_marshaled_pinvoke
  334. {
  335. char* ____className;
  336. char* ____message;
  337. RuntimeObject* ____data;
  338. Exception_t_marshaled_pinvoke* ____innerException;
  339. char* ____helpURL;
  340. Il2CppIUnknown* ____stackTrace;
  341. char* ____stackTraceString;
  342. char* ____remoteStackTraceString;
  343. int32_t ____remoteStackIndex;
  344. Il2CppIUnknown* ____dynamicMethods;
  345. int32_t ____HResult;
  346. char* ____source;
  347. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  348. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  349. Il2CppSafeArray* ___native_trace_ips;
  350. int32_t ___caught_in_unmanaged;
  351. };
  352. struct Exception_t_marshaled_com
  353. {
  354. Il2CppChar* ____className;
  355. Il2CppChar* ____message;
  356. RuntimeObject* ____data;
  357. Exception_t_marshaled_com* ____innerException;
  358. Il2CppChar* ____helpURL;
  359. Il2CppIUnknown* ____stackTrace;
  360. Il2CppChar* ____stackTraceString;
  361. Il2CppChar* ____remoteStackTraceString;
  362. int32_t ____remoteStackIndex;
  363. Il2CppIUnknown* ____dynamicMethods;
  364. int32_t ____HResult;
  365. Il2CppChar* ____source;
  366. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  367. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  368. Il2CppSafeArray* ___native_trace_ips;
  369. int32_t ___caught_in_unmanaged;
  370. };
  371. struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
  372. {
  373. intptr_t ___handle;
  374. };
  375. struct GCHandleType_t4CD45A3495E593D093AB0CE36EF9EC1A1572F82A
  376. {
  377. int32_t ___value__;
  378. };
  379. struct HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E
  380. {
  381. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Min;
  382. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Max;
  383. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center;
  384. float ___m_AxisLength;
  385. int32_t ___m_UseDefaultValues;
  386. };
  387. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  388. {
  389. intptr_t ___m_CachedPtr;
  390. };
  391. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  392. {
  393. intptr_t ___m_CachedPtr;
  394. };
  395. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  396. {
  397. intptr_t ___m_CachedPtr;
  398. };
  399. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
  400. {
  401. intptr_t ___m_Handle;
  402. uint32_t ___m_Version;
  403. };
  404. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
  405. {
  406. intptr_t ___m_Handle;
  407. uint32_t ___m_Version;
  408. };
  409. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126
  410. {
  411. String_t* ___name;
  412. String_t* ___parentName;
  413. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  414. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  415. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  416. };
  417. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke
  418. {
  419. char* ___name;
  420. char* ___parentName;
  421. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  422. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  423. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  424. };
  425. struct SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com
  426. {
  427. Il2CppChar* ___name;
  428. Il2CppChar* ___parentName;
  429. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  430. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___rotation;
  431. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___scale;
  432. };
  433. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2 : public RuntimeObject
  434. {
  435. intptr_t ___m_Ptr;
  436. };
  437. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2_marshaled_pinvoke
  438. {
  439. intptr_t ___m_Ptr;
  440. };
  441. struct TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2_marshaled_com
  442. {
  443. intptr_t ___m_Ptr;
  444. };
  445. struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
  446. {
  447. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
  448. int32_t ____length;
  449. };
  450. struct AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969
  451. {
  452. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  453. };
  454. struct AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174 : public RuntimeObject
  455. {
  456. float ___m_Time;
  457. String_t* ___m_FunctionName;
  458. String_t* ___m_StringParameter;
  459. Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___m_ObjectReferenceParameter;
  460. float ___m_FloatParameter;
  461. int32_t ___m_IntParameter;
  462. int32_t ___m_MessageOptions;
  463. int32_t ___m_Source;
  464. AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE* ___m_StateSender;
  465. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___m_AnimatorStateInfo;
  466. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 ___m_AnimatorClipInfo;
  467. };
  468. struct AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF
  469. {
  470. float ___m_Time;
  471. intptr_t ___m_FunctionName;
  472. intptr_t ___m_StringParameter;
  473. intptr_t ___m_ObjectReferenceParameter;
  474. float ___m_FloatParameter;
  475. int32_t ___m_IntParameter;
  476. int32_t ___m_MessageOptions;
  477. int32_t ___m_Source;
  478. intptr_t ___m_StateSender;
  479. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 ___m_AnimatorStateInfo;
  480. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 ___m_AnimatorClipInfo;
  481. };
  482. struct AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D
  483. {
  484. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  485. };
  486. struct AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0
  487. {
  488. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  489. };
  490. struct AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18
  491. {
  492. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  493. };
  494. struct AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4
  495. {
  496. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  497. };
  498. struct AnimationPlayableOutput_t753AC95DC826789BC537D18449E93114777DDF4E
  499. {
  500. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle;
  501. };
  502. struct AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C
  503. {
  504. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  505. };
  506. struct AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD
  507. {
  508. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  509. };
  510. struct AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127
  511. {
  512. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  513. };
  514. struct AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE : public TrackedReference_tF35FF4FB6E89ACD81C24469FAF0CA6FFF29262A2
  515. {
  516. };
  517. struct AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A
  518. {
  519. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle;
  520. };
  521. struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  522. {
  523. };
  524. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8
  525. {
  526. String_t* ___m_BoneName;
  527. String_t* ___m_HumanName;
  528. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  529. };
  530. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke
  531. {
  532. char* ___m_BoneName;
  533. char* ___m_HumanName;
  534. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  535. };
  536. struct HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com
  537. {
  538. Il2CppChar* ___m_BoneName;
  539. Il2CppChar* ___m_HumanName;
  540. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E ___limit;
  541. };
  542. struct MulticastDelegate_t : public Delegate_t
  543. {
  544. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  545. };
  546. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  547. {
  548. Delegate_t_marshaled_pinvoke** ___delegates;
  549. };
  550. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  551. {
  552. Delegate_t_marshaled_com** ___delegates;
  553. };
  554. struct RuntimeAnimatorController_t6F7C753402B42EC23C163099CF935C5E0D7A7254 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  555. {
  556. };
  557. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  558. {
  559. };
  560. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  561. {
  562. };
  563. struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  564. {
  565. };
  566. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  567. {
  568. };
  569. struct AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493 : public RuntimeAnimatorController_t6F7C753402B42EC23C163099CF935C5E0D7A7254
  570. {
  571. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* ___OnOverrideControllerDirty;
  572. };
  573. struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
  574. {
  575. };
  576. struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  577. {
  578. };
  579. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  580. {
  581. };
  582. struct StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
  583. {
  584. };
  585. struct OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5 : public MulticastDelegate_t
  586. {
  587. };
  588. struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
  589. {
  590. };
  591. struct String_t_StaticFields
  592. {
  593. String_t* ___Empty;
  594. };
  595. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  596. {
  597. String_t* ___TrueString;
  598. String_t* ___FalseString;
  599. };
  600. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  601. {
  602. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  603. };
  604. struct IntPtr_t_StaticFields
  605. {
  606. intptr_t ___Zero;
  607. };
  608. struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
  609. {
  610. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion;
  611. };
  612. struct UIntPtr_t_StaticFields
  613. {
  614. uintptr_t ___Zero;
  615. };
  616. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
  617. {
  618. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
  619. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
  620. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
  621. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
  622. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
  623. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
  624. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
  625. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
  626. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
  627. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
  628. };
  629. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
  630. {
  631. int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
  632. };
  633. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_StaticFields
  634. {
  635. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Null;
  636. };
  637. struct AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_ThreadStaticFields
  638. {
  639. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* ___s_handlePool;
  640. };
  641. struct AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_StaticFields
  642. {
  643. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___m_NullPlayable;
  644. };
  645. struct AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_StaticFields
  646. {
  647. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___m_NullPlayable;
  648. };
  649. struct AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_StaticFields
  650. {
  651. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___m_NullPlayable;
  652. };
  653. struct AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_StaticFields
  654. {
  655. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___m_NullPlayable;
  656. };
  657. struct AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_StaticFields
  658. {
  659. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___m_NullPlayable;
  660. };
  661. struct AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_StaticFields
  662. {
  663. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___m_NullPlayable;
  664. };
  665. struct AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_StaticFields
  666. {
  667. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___m_NullPlayable;
  668. };
  669. struct AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_StaticFields
  670. {
  671. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___m_NullPlayable;
  672. };
  673. #ifdef __clang__
  674. #pragma clang diagnostic pop
  675. #endif
  676. struct GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785 : public RuntimeArray
  677. {
  678. ALIGN_FIELD (8) GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC m_Items[1];
  679. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC GetAt(il2cpp_array_size_t index) const
  680. {
  681. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  682. return m_Items[index];
  683. }
  684. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* GetAddressAt(il2cpp_array_size_t index)
  685. {
  686. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  687. return m_Items + index;
  688. }
  689. inline void SetAt(il2cpp_array_size_t index, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC value)
  690. {
  691. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  692. m_Items[index] = value;
  693. }
  694. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC GetAtUnchecked(il2cpp_array_size_t index) const
  695. {
  696. return m_Items[index];
  697. }
  698. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* GetAddressAtUnchecked(il2cpp_array_size_t index)
  699. {
  700. return m_Items + index;
  701. }
  702. inline void SetAtUnchecked(il2cpp_array_size_t index, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC value)
  703. {
  704. m_Items[index] = value;
  705. }
  706. };
  707. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  708. {
  709. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  710. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  711. {
  712. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  713. return m_Items[index];
  714. }
  715. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  716. {
  717. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  718. return m_Items + index;
  719. }
  720. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  721. {
  722. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  723. m_Items[index] = value;
  724. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  725. }
  726. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  727. {
  728. return m_Items[index];
  729. }
  730. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  731. {
  732. return m_Items + index;
  733. }
  734. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  735. {
  736. m_Items[index] = value;
  737. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  738. }
  739. };
  740. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline (intptr_t* ___0_from, const RuntimeMethod* method) ;
  741. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  743. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  745. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  748. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  749. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_gshared (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  752. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
  753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF (ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* __this, const RuntimeMethod* method) ;
  754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF (intptr_t ___0_value, const RuntimeMethod* method) ;
  755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* AnimationEventBlittable_ToAnimationEvent_mF0A7F2DBE0ACD246404DE03A75C2A78120172A5A (AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF ___0_animationEventBlittable, const RuntimeMethod* method) ;
  756. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2 (AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* __this, const RuntimeMethod* method) ;
  757. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  758. inline GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline (intptr_t* ___0_from, const RuntimeMethod* method)
  759. {
  760. return (( GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* (*) (intptr_t*, const RuntimeMethod*))UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline)(___0_from, method);
  761. }
  762. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  763. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandlePool__ctor_mF6967020B4513047BB5FAFF1802D68CFAB75AE67 (GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* __this, const RuntimeMethod* method) ;
  764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3 (GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* __this, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___0_h, const RuntimeMethod* method) ;
  765. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationEventBlittable_Dispose_mC9D1CBCBB5DBB4082B047729897A7A1C6C4E4B5D (AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF* __this, const RuntimeMethod* method) ;
  766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900 (RuntimeArray* ___0_sourceArray, RuntimeArray* ___1_destinationArray, int32_t ___2_length, const RuntimeMethod* method) ;
  768. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GCHandle_set_Target_m1DB05E14910747D2A74ACEB4C48028C4AEBFCF3D_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
  769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  770. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  771. inline intptr_t MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_inline (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_obj, const RuntimeMethod* method)
  772. {
  773. return (( intptr_t (*) (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883*, const RuntimeMethod*))MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline)(___0_obj, method);
  774. }
  775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  776. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  777. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method) ;
  778. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ;
  779. inline Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  780. {
  781. return (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared)(__this, method);
  782. }
  783. inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  784. {
  785. return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method);
  786. }
  787. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* __this, void* ___0_begin, int32_t ___1_length, const RuntimeMethod* method) ;
  788. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___0_name, const RuntimeMethod* method) ;
  789. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, const RuntimeMethod* method) ;
  790. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, const RuntimeMethod* method) ;
  791. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method) ;
  792. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
  793. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, const RuntimeMethod* method) ;
  794. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_x, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___1_y, const RuntimeMethod* method) ;
  795. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method) ;
  796. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method) ;
  797. inline bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  798. {
  799. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_gshared)(__this, method);
  800. }
  801. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  802. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* ___0_handle, bool ___1_value, const RuntimeMethod* method) ;
  803. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method) ;
  804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, const RuntimeMethod* method) ;
  805. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method) ;
  806. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975 (const RuntimeMethod* method) ;
  807. inline bool PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  808. {
  809. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_gshared)(__this, method);
  810. }
  811. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7 (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  812. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, const RuntimeMethod* method) ;
  813. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method) ;
  814. inline bool PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  815. {
  816. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_gshared)(__this, method);
  817. }
  818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  819. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, const RuntimeMethod* method) ;
  820. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method) ;
  821. inline bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  822. {
  823. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_gshared)(__this, method);
  824. }
  825. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  826. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, const RuntimeMethod* method) ;
  827. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method) ;
  829. inline bool PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  830. {
  831. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_gshared)(__this, method);
  832. }
  833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, const RuntimeMethod* method) ;
  835. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3 (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method) ;
  836. inline bool PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  837. {
  838. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_gshared)(__this, method);
  839. }
  840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, const RuntimeMethod* method) ;
  842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method) ;
  843. inline bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  844. {
  845. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_gshared)(__this, method);
  846. }
  847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  848. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, const RuntimeMethod* method) ;
  849. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method) ;
  850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method) ;
  852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, const RuntimeMethod* method) ;
  853. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  854. inline bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70 (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* __this, const RuntimeMethod* method)
  855. {
  856. return (( bool (*) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_gshared)(__this, method);
  857. }
  858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method) ;
  859. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  860. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline (intptr_t ___0_handle, const RuntimeMethod* method) ;
  861. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline (intptr_t ___0_handle, const RuntimeMethod* method) ;
  862. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetTarget_mE0AF851834410E2AEA6285B2497751570236C794 (intptr_t ___0_handle, const RuntimeMethod* method) ;
  863. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GCHandle_SetRef_m89BDD13EED80A828682061BEF6D21F334AE45FC7_inline (intptr_t ___0_handle, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  864. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GCHandle_GetTargetHandle_mE33A9DC8A8FA880F9CAA057300E28BC8AE743CED (RuntimeObject* ___0_obj, intptr_t ___1_handle, int32_t ___2_type, const RuntimeMethod* method) ;
  865. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  866. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8 (uint64_t ___0_value, const RuntimeMethod* method) ;
  867. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9 (uintptr_t ___0_value, const RuntimeMethod* method) ;
  868. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
  869. inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  870. {
  871. (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
  872. }
  873. #ifdef __clang__
  874. #pragma clang diagnostic push
  875. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  876. #pragma clang diagnostic ignored "-Wunused-variable"
  877. #endif
  878. #ifdef __clang__
  879. #pragma clang diagnostic pop
  880. #endif
  881. #ifdef __clang__
  882. #pragma clang diagnostic push
  883. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  884. #pragma clang diagnostic ignored "-Wunused-variable"
  885. #endif
  886. #ifdef __clang__
  887. #pragma clang diagnostic pop
  888. #endif
  889. #ifdef __clang__
  890. #pragma clang diagnostic push
  891. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  892. #pragma clang diagnostic ignored "-Wunused-variable"
  893. #endif
  894. 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)
  895. {
  896. {
  897. return;
  898. }
  899. }
  900. 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)
  901. {
  902. {
  903. return;
  904. }
  905. }
  906. 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)
  907. {
  908. {
  909. return;
  910. }
  911. }
  912. 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)
  913. {
  914. {
  915. return;
  916. }
  917. }
  918. 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)
  919. {
  920. {
  921. return;
  922. }
  923. }
  924. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineEnter_m0CEFF9E4946BFDC4F7066BEB4C961169DBC5073F (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, const RuntimeMethod* method)
  925. {
  926. {
  927. return;
  928. }
  929. }
  930. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour_OnStateMachineExit_m384B808E3961C6C2C375DF7487EF2B49E44E6CD7 (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ___0_animator, int32_t ___1_stateMachinePathHash, const RuntimeMethod* method)
  931. {
  932. {
  933. return;
  934. }
  935. }
  936. 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)
  937. {
  938. {
  939. return;
  940. }
  941. }
  942. 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)
  943. {
  944. {
  945. return;
  946. }
  947. }
  948. 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)
  949. {
  950. {
  951. return;
  952. }
  953. }
  954. 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)
  955. {
  956. {
  957. return;
  958. }
  959. }
  960. 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)
  961. {
  962. {
  963. return;
  964. }
  965. }
  966. 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)
  967. {
  968. {
  969. return;
  970. }
  971. }
  972. 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)
  973. {
  974. {
  975. return;
  976. }
  977. }
  978. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateMachineBehaviour__ctor_m9663A75D1016E16D7E3A48E2D4E6466A041A00AB (StateMachineBehaviour_t59C5685227B06222F5AF7027E2DA530AB99AFDF7* __this, const RuntimeMethod* method)
  979. {
  980. {
  981. ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF(__this, NULL);
  982. return;
  983. }
  984. }
  985. #ifdef __clang__
  986. #pragma clang diagnostic pop
  987. #endif
  988. #ifdef __clang__
  989. #pragma clang diagnostic push
  990. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  991. #pragma clang diagnostic ignored "-Wunused-variable"
  992. #endif
  993. #ifdef __clang__
  994. #pragma clang diagnostic pop
  995. #endif
  996. #ifdef __clang__
  997. #pragma clang diagnostic push
  998. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  999. #pragma clang diagnostic ignored "-Wunused-variable"
  1000. #endif
  1001. #ifdef __clang__
  1002. #pragma clang diagnostic pop
  1003. #endif
  1004. #ifdef __clang__
  1005. #pragma clang diagnostic push
  1006. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1007. #pragma clang diagnostic ignored "-Wunused-variable"
  1008. #endif
  1009. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* AnimationEventBlittable_PointerToAnimationEvent_mD918F607F68D204B0D31AAF0073BFAFD689F52D1 (intptr_t ___0_animationEventBlittable, const RuntimeMethod* method)
  1010. {
  1011. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* V_0 = NULL;
  1012. {
  1013. intptr_t L_0 = ___0_animationEventBlittable;
  1014. void* L_1;
  1015. L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
  1016. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_2 = (*(AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF*)L_1);
  1017. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_3;
  1018. L_3 = AnimationEventBlittable_ToAnimationEvent_mF0A7F2DBE0ACD246404DE03A75C2A78120172A5A(L_2, NULL);
  1019. V_0 = L_3;
  1020. goto IL_0014;
  1021. }
  1022. IL_0014:
  1023. {
  1024. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_4 = V_0;
  1025. return L_4;
  1026. }
  1027. }
  1028. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* AnimationEventBlittable_ToAnimationEvent_mF0A7F2DBE0ACD246404DE03A75C2A78120172A5A (AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF ___0_animationEventBlittable, const RuntimeMethod* method)
  1029. {
  1030. static bool s_Il2CppMethodInitialized;
  1031. if (!s_Il2CppMethodInitialized)
  1032. {
  1033. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_il2cpp_TypeInfo_var);
  1034. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE_il2cpp_TypeInfo_var);
  1035. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1036. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1037. s_Il2CppMethodInitialized = true;
  1038. }
  1039. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* V_0 = NULL;
  1040. bool V_1 = false;
  1041. bool V_2 = false;
  1042. bool V_3 = false;
  1043. bool V_4 = false;
  1044. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* V_5 = NULL;
  1045. {
  1046. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_0 = (AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174*)il2cpp_codegen_object_new(AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174_il2cpp_TypeInfo_var);
  1047. AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2(L_0, NULL);
  1048. V_0 = L_0;
  1049. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_1 = V_0;
  1050. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_2 = ___0_animationEventBlittable;
  1051. float L_3 = L_2.___m_Time;
  1052. NullCheck(L_1);
  1053. L_1->___m_Time = L_3;
  1054. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_4 = ___0_animationEventBlittable;
  1055. intptr_t L_5 = L_4.___m_FunctionName;
  1056. bool L_6;
  1057. L_6 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_5, 0, NULL);
  1058. V_1 = L_6;
  1059. bool L_7 = V_1;
  1060. if (!L_7)
  1061. {
  1062. goto IL_0043;
  1063. }
  1064. }
  1065. {
  1066. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_8 = V_0;
  1067. intptr_t* L_9 = (intptr_t*)(&(&___0_animationEventBlittable)->___m_FunctionName);
  1068. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_10;
  1069. L_10 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_9, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1070. RuntimeObject* L_11;
  1071. L_11 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline(L_10, NULL);
  1072. NullCheck(L_8);
  1073. L_8->___m_FunctionName = ((String_t*)CastclassSealed((RuntimeObject*)L_11, il2cpp_defaults.string_class));
  1074. Il2CppCodeGenWriteBarrier((void**)(&L_8->___m_FunctionName), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_11, il2cpp_defaults.string_class)));
  1075. }
  1076. IL_0043:
  1077. {
  1078. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_12 = ___0_animationEventBlittable;
  1079. intptr_t L_13 = L_12.___m_StringParameter;
  1080. bool L_14;
  1081. L_14 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_13, 0, NULL);
  1082. V_2 = L_14;
  1083. bool L_15 = V_2;
  1084. if (!L_15)
  1085. {
  1086. goto IL_0073;
  1087. }
  1088. }
  1089. {
  1090. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_16 = V_0;
  1091. intptr_t* L_17 = (intptr_t*)(&(&___0_animationEventBlittable)->___m_StringParameter);
  1092. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_18;
  1093. L_18 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_17, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1094. RuntimeObject* L_19;
  1095. L_19 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline(L_18, NULL);
  1096. NullCheck(L_16);
  1097. L_16->___m_StringParameter = ((String_t*)CastclassSealed((RuntimeObject*)L_19, il2cpp_defaults.string_class));
  1098. Il2CppCodeGenWriteBarrier((void**)(&L_16->___m_StringParameter), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_19, il2cpp_defaults.string_class)));
  1099. }
  1100. IL_0073:
  1101. {
  1102. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_20 = ___0_animationEventBlittable;
  1103. intptr_t L_21 = L_20.___m_ObjectReferenceParameter;
  1104. bool L_22;
  1105. L_22 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_21, 0, NULL);
  1106. V_3 = L_22;
  1107. bool L_23 = V_3;
  1108. if (!L_23)
  1109. {
  1110. goto IL_00a3;
  1111. }
  1112. }
  1113. {
  1114. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_24 = V_0;
  1115. intptr_t* L_25 = (intptr_t*)(&(&___0_animationEventBlittable)->___m_ObjectReferenceParameter);
  1116. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_26;
  1117. L_26 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_25, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1118. RuntimeObject* L_27;
  1119. L_27 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline(L_26, NULL);
  1120. NullCheck(L_24);
  1121. L_24->___m_ObjectReferenceParameter = ((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)CastclassClass((RuntimeObject*)L_27, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var));
  1122. Il2CppCodeGenWriteBarrier((void**)(&L_24->___m_ObjectReferenceParameter), (void*)((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)CastclassClass((RuntimeObject*)L_27, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var)));
  1123. }
  1124. IL_00a3:
  1125. {
  1126. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_28 = V_0;
  1127. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_29 = ___0_animationEventBlittable;
  1128. float L_30 = L_29.___m_FloatParameter;
  1129. NullCheck(L_28);
  1130. L_28->___m_FloatParameter = L_30;
  1131. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_31 = V_0;
  1132. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_32 = ___0_animationEventBlittable;
  1133. int32_t L_33 = L_32.___m_IntParameter;
  1134. NullCheck(L_31);
  1135. L_31->___m_IntParameter = L_33;
  1136. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_34 = V_0;
  1137. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_35 = ___0_animationEventBlittable;
  1138. int32_t L_36 = L_35.___m_MessageOptions;
  1139. NullCheck(L_34);
  1140. L_34->___m_MessageOptions = L_36;
  1141. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_37 = V_0;
  1142. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_38 = ___0_animationEventBlittable;
  1143. int32_t L_39 = L_38.___m_Source;
  1144. NullCheck(L_37);
  1145. L_37->___m_Source = L_39;
  1146. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_40 = ___0_animationEventBlittable;
  1147. intptr_t L_41 = L_40.___m_StateSender;
  1148. bool L_42;
  1149. L_42 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_41, 0, NULL);
  1150. V_4 = L_42;
  1151. bool L_43 = V_4;
  1152. if (!L_43)
  1153. {
  1154. goto IL_0105;
  1155. }
  1156. }
  1157. {
  1158. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_44 = V_0;
  1159. intptr_t* L_45 = (intptr_t*)(&(&___0_animationEventBlittable)->___m_StateSender);
  1160. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_46;
  1161. L_46 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_45, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1162. RuntimeObject* L_47;
  1163. L_47 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline(L_46, NULL);
  1164. NullCheck(L_44);
  1165. L_44->___m_StateSender = ((AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)CastclassSealed((RuntimeObject*)L_47, AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE_il2cpp_TypeInfo_var));
  1166. Il2CppCodeGenWriteBarrier((void**)(&L_44->___m_StateSender), (void*)((AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)CastclassSealed((RuntimeObject*)L_47, AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE_il2cpp_TypeInfo_var)));
  1167. }
  1168. IL_0105:
  1169. {
  1170. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_48 = V_0;
  1171. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_49 = ___0_animationEventBlittable;
  1172. AnimatorStateInfo_t1F47379289C7CE7FD588FBC3BBD79A777243B6B2 L_50 = L_49.___m_AnimatorStateInfo;
  1173. NullCheck(L_48);
  1174. L_48->___m_AnimatorStateInfo = L_50;
  1175. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_51 = V_0;
  1176. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF L_52 = ___0_animationEventBlittable;
  1177. AnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03 L_53 = L_52.___m_AnimatorClipInfo;
  1178. NullCheck(L_51);
  1179. L_51->___m_AnimatorClipInfo = L_53;
  1180. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_54 = V_0;
  1181. V_5 = L_54;
  1182. goto IL_0122;
  1183. }
  1184. IL_0122:
  1185. {
  1186. AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* L_55 = V_5;
  1187. return L_55;
  1188. }
  1189. }
  1190. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationEventBlittable_Dispose_mC9D1CBCBB5DBB4082B047729897A7A1C6C4E4B5D (AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF* __this, const RuntimeMethod* method)
  1191. {
  1192. static bool s_Il2CppMethodInitialized;
  1193. if (!s_Il2CppMethodInitialized)
  1194. {
  1195. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var);
  1196. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768_il2cpp_TypeInfo_var);
  1197. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1198. s_Il2CppMethodInitialized = true;
  1199. }
  1200. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* V_0 = NULL;
  1201. bool V_1 = false;
  1202. bool V_2 = false;
  1203. bool V_3 = false;
  1204. bool V_4 = false;
  1205. bool V_5 = false;
  1206. {
  1207. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_0 = ((AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var))->___s_handlePool;
  1208. V_1 = (bool)((((RuntimeObject*)(GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1209. bool L_1 = V_1;
  1210. if (!L_1)
  1211. {
  1212. goto IL_0017;
  1213. }
  1214. }
  1215. {
  1216. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_2 = (GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768*)il2cpp_codegen_object_new(GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768_il2cpp_TypeInfo_var);
  1217. GCHandlePool__ctor_mF6967020B4513047BB5FAFF1802D68CFAB75AE67(L_2, NULL);
  1218. ((AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var))->___s_handlePool = L_2;
  1219. Il2CppCodeGenWriteBarrier((void**)(&((AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var))->___s_handlePool), (void*)L_2);
  1220. }
  1221. IL_0017:
  1222. {
  1223. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_3 = ((AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF_il2cpp_TypeInfo_var))->___s_handlePool;
  1224. V_0 = L_3;
  1225. intptr_t L_4 = __this->___m_FunctionName;
  1226. bool L_5;
  1227. L_5 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_4, 0, NULL);
  1228. V_2 = L_5;
  1229. bool L_6 = V_2;
  1230. if (!L_6)
  1231. {
  1232. goto IL_0048;
  1233. }
  1234. }
  1235. {
  1236. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_7 = V_0;
  1237. intptr_t* L_8 = (intptr_t*)(&__this->___m_FunctionName);
  1238. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_9;
  1239. L_9 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_8, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1240. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_10 = (*(GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)L_9);
  1241. NullCheck(L_7);
  1242. GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3(L_7, L_10, NULL);
  1243. }
  1244. IL_0048:
  1245. {
  1246. intptr_t L_11 = __this->___m_StringParameter;
  1247. bool L_12;
  1248. L_12 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_11, 0, NULL);
  1249. V_3 = L_12;
  1250. bool L_13 = V_3;
  1251. if (!L_13)
  1252. {
  1253. goto IL_0073;
  1254. }
  1255. }
  1256. {
  1257. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_14 = V_0;
  1258. intptr_t* L_15 = (intptr_t*)(&__this->___m_StringParameter);
  1259. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_16;
  1260. L_16 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_15, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1261. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_17 = (*(GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)L_16);
  1262. NullCheck(L_14);
  1263. GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3(L_14, L_17, NULL);
  1264. }
  1265. IL_0073:
  1266. {
  1267. intptr_t L_18 = __this->___m_ObjectReferenceParameter;
  1268. bool L_19;
  1269. L_19 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_18, 0, NULL);
  1270. V_4 = L_19;
  1271. bool L_20 = V_4;
  1272. if (!L_20)
  1273. {
  1274. goto IL_00a0;
  1275. }
  1276. }
  1277. {
  1278. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_21 = V_0;
  1279. intptr_t* L_22 = (intptr_t*)(&__this->___m_ObjectReferenceParameter);
  1280. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_23;
  1281. L_23 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_22, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1282. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_24 = (*(GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)L_23);
  1283. NullCheck(L_21);
  1284. GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3(L_21, L_24, NULL);
  1285. }
  1286. IL_00a0:
  1287. {
  1288. intptr_t L_25 = __this->___m_StateSender;
  1289. bool L_26;
  1290. L_26 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_25, 0, NULL);
  1291. V_5 = L_26;
  1292. bool L_27 = V_5;
  1293. if (!L_27)
  1294. {
  1295. goto IL_00cd;
  1296. }
  1297. }
  1298. {
  1299. GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* L_28 = V_0;
  1300. intptr_t* L_29 = (intptr_t*)(&__this->___m_StateSender);
  1301. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_30;
  1302. L_30 = UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_inline(L_29, UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_RuntimeMethod_var);
  1303. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_31 = (*(GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)L_30);
  1304. NullCheck(L_28);
  1305. GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3(L_28, L_31, NULL);
  1306. }
  1307. IL_00cd:
  1308. {
  1309. return;
  1310. }
  1311. }
  1312. IL2CPP_EXTERN_C void AnimationEventBlittable_Dispose_mC9D1CBCBB5DBB4082B047729897A7A1C6C4E4B5D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  1313. {
  1314. AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF* _thisAdjusted;
  1315. int32_t _offset = 1;
  1316. _thisAdjusted = reinterpret_cast<AnimationEventBlittable_t59D8029C582F4A7E4EFB0C374DB23CC17BE323EF*>(__this + _offset);
  1317. AnimationEventBlittable_Dispose_mC9D1CBCBB5DBB4082B047729897A7A1C6C4E4B5D(_thisAdjusted, method);
  1318. }
  1319. #ifdef __clang__
  1320. #pragma clang diagnostic pop
  1321. #endif
  1322. #ifdef __clang__
  1323. #pragma clang diagnostic push
  1324. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1325. #pragma clang diagnostic ignored "-Wunused-variable"
  1326. #endif
  1327. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationEvent__ctor_mBC954085B1D18B436D08E7ADE3458B91E208F3B2 (AnimationEvent_t77294DB2372A5C387B53EEA3EFDC550C75EC3174* __this, const RuntimeMethod* method)
  1328. {
  1329. static bool s_Il2CppMethodInitialized;
  1330. if (!s_Il2CppMethodInitialized)
  1331. {
  1332. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1333. s_Il2CppMethodInitialized = true;
  1334. }
  1335. {
  1336. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1337. __this->___m_Time = (0.0f);
  1338. __this->___m_FunctionName = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  1339. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FunctionName), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1340. __this->___m_StringParameter = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  1341. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StringParameter), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1342. __this->___m_ObjectReferenceParameter = (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL;
  1343. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ObjectReferenceParameter), (void*)(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL);
  1344. __this->___m_FloatParameter = (0.0f);
  1345. __this->___m_IntParameter = 0;
  1346. __this->___m_MessageOptions = 0;
  1347. __this->___m_Source = 0;
  1348. __this->___m_StateSender = (AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)NULL;
  1349. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StateSender), (void*)(AnimationState_tC704F25A20169025B6CFDC2F00DC84152B5B73CE*)NULL);
  1350. return;
  1351. }
  1352. }
  1353. #ifdef __clang__
  1354. #pragma clang diagnostic pop
  1355. #endif
  1356. #ifdef __clang__
  1357. #pragma clang diagnostic push
  1358. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1359. #pragma clang diagnostic ignored "-Wunused-variable"
  1360. #endif
  1361. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandlePool__ctor_mF6967020B4513047BB5FAFF1802D68CFAB75AE67 (GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* __this, const RuntimeMethod* method)
  1362. {
  1363. static bool s_Il2CppMethodInitialized;
  1364. if (!s_Il2CppMethodInitialized)
  1365. {
  1366. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785_il2cpp_TypeInfo_var);
  1367. s_Il2CppMethodInitialized = true;
  1368. }
  1369. {
  1370. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1371. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_0 = (GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785*)(GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785*)SZArrayNew(GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
  1372. __this->___m_handles = L_0;
  1373. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_handles), (void*)L_0);
  1374. return;
  1375. }
  1376. }
  1377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandlePool_Free_m3DEF150BA5DC4B173CEF6D5A357F28655601A3C3 (GCHandlePool_tD3D33D37D8C147B41AAB365A95FF06822785A768* __this, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___0_h, const RuntimeMethod* method)
  1378. {
  1379. static bool s_Il2CppMethodInitialized;
  1380. if (!s_Il2CppMethodInitialized)
  1381. {
  1382. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785_il2cpp_TypeInfo_var);
  1383. s_Il2CppMethodInitialized = true;
  1384. }
  1385. bool V_0 = false;
  1386. int32_t V_1 = 0;
  1387. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* V_2 = NULL;
  1388. int32_t V_3 = 0;
  1389. {
  1390. int32_t L_0 = __this->___m_current;
  1391. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_1 = __this->___m_handles;
  1392. NullCheck(L_1);
  1393. V_0 = (bool)((((int32_t)L_0) == ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))? 1 : 0);
  1394. bool L_2 = V_0;
  1395. if (!L_2)
  1396. {
  1397. goto IL_0045;
  1398. }
  1399. }
  1400. {
  1401. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_3 = __this->___m_handles;
  1402. NullCheck(L_3);
  1403. V_1 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
  1404. int32_t L_4 = V_1;
  1405. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_5 = (GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785*)(GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785*)SZArrayNew(GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785_il2cpp_TypeInfo_var, (uint32_t)L_4);
  1406. V_2 = L_5;
  1407. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_6 = __this->___m_handles;
  1408. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_7 = V_2;
  1409. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_8 = __this->___m_handles;
  1410. NullCheck(L_8);
  1411. Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_6, (RuntimeArray*)L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), NULL);
  1412. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_9 = V_2;
  1413. __this->___m_handles = L_9;
  1414. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_handles), (void*)L_9);
  1415. }
  1416. IL_0045:
  1417. {
  1418. GCHandle_set_Target_m1DB05E14910747D2A74ACEB4C48028C4AEBFCF3D_inline((&___0_h), NULL, NULL);
  1419. GCHandleU5BU5D_t7EA6F2FA83CDF86871001174CF7D30033AC4A785* L_10 = __this->___m_handles;
  1420. int32_t L_11 = __this->___m_current;
  1421. V_3 = L_11;
  1422. int32_t L_12 = V_3;
  1423. __this->___m_current = ((int32_t)il2cpp_codegen_add(L_12, 1));
  1424. int32_t L_13 = V_3;
  1425. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_14 = ___0_h;
  1426. NullCheck(L_10);
  1427. (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC)L_14);
  1428. return;
  1429. }
  1430. }
  1431. #ifdef __clang__
  1432. #pragma clang diagnostic pop
  1433. #endif
  1434. #ifdef __clang__
  1435. #pragma clang diagnostic push
  1436. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1437. #pragma clang diagnostic ignored "-Wunused-variable"
  1438. #endif
  1439. #ifdef __clang__
  1440. #pragma clang diagnostic pop
  1441. #endif
  1442. #ifdef __clang__
  1443. #pragma clang diagnostic push
  1444. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1445. #pragma clang diagnostic ignored "-Wunused-variable"
  1446. #endif
  1447. #ifdef __clang__
  1448. #pragma clang diagnostic pop
  1449. #endif
  1450. #ifdef __clang__
  1451. #pragma clang diagnostic push
  1452. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1453. #pragma clang diagnostic ignored "-Wunused-variable"
  1454. #endif
  1455. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled)
  1456. {
  1457. marshaled.___m_FullPath = unmarshaled.___m_FullPath;
  1458. marshaled.___m_UserName = unmarshaled.___m_UserName;
  1459. marshaled.___m_Name = unmarshaled.___m_Name;
  1460. marshaled.___m_HasFixedDuration = static_cast<int32_t>(unmarshaled.___m_HasFixedDuration);
  1461. marshaled.___m_Duration = unmarshaled.___m_Duration;
  1462. marshaled.___m_NormalizedTime = unmarshaled.___m_NormalizedTime;
  1463. marshaled.___m_AnyState = static_cast<int32_t>(unmarshaled.___m_AnyState);
  1464. marshaled.___m_TransitionType = unmarshaled.___m_TransitionType;
  1465. }
  1466. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke_back(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled)
  1467. {
  1468. int32_t unmarshaledm_FullPath_temp_0 = 0;
  1469. unmarshaledm_FullPath_temp_0 = marshaled.___m_FullPath;
  1470. unmarshaled.___m_FullPath = unmarshaledm_FullPath_temp_0;
  1471. int32_t unmarshaledm_UserName_temp_1 = 0;
  1472. unmarshaledm_UserName_temp_1 = marshaled.___m_UserName;
  1473. unmarshaled.___m_UserName = unmarshaledm_UserName_temp_1;
  1474. int32_t unmarshaledm_Name_temp_2 = 0;
  1475. unmarshaledm_Name_temp_2 = marshaled.___m_Name;
  1476. unmarshaled.___m_Name = unmarshaledm_Name_temp_2;
  1477. bool unmarshaledm_HasFixedDuration_temp_3 = false;
  1478. unmarshaledm_HasFixedDuration_temp_3 = static_cast<bool>(marshaled.___m_HasFixedDuration);
  1479. unmarshaled.___m_HasFixedDuration = unmarshaledm_HasFixedDuration_temp_3;
  1480. float unmarshaledm_Duration_temp_4 = 0.0f;
  1481. unmarshaledm_Duration_temp_4 = marshaled.___m_Duration;
  1482. unmarshaled.___m_Duration = unmarshaledm_Duration_temp_4;
  1483. float unmarshaledm_NormalizedTime_temp_5 = 0.0f;
  1484. unmarshaledm_NormalizedTime_temp_5 = marshaled.___m_NormalizedTime;
  1485. unmarshaled.___m_NormalizedTime = unmarshaledm_NormalizedTime_temp_5;
  1486. bool unmarshaledm_AnyState_temp_6 = false;
  1487. unmarshaledm_AnyState_temp_6 = static_cast<bool>(marshaled.___m_AnyState);
  1488. unmarshaled.___m_AnyState = unmarshaledm_AnyState_temp_6;
  1489. int32_t unmarshaledm_TransitionType_temp_7 = 0;
  1490. unmarshaledm_TransitionType_temp_7 = marshaled.___m_TransitionType;
  1491. unmarshaled.___m_TransitionType = unmarshaledm_TransitionType_temp_7;
  1492. }
  1493. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_pinvoke_cleanup(AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_pinvoke& marshaled)
  1494. {
  1495. }
  1496. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled)
  1497. {
  1498. marshaled.___m_FullPath = unmarshaled.___m_FullPath;
  1499. marshaled.___m_UserName = unmarshaled.___m_UserName;
  1500. marshaled.___m_Name = unmarshaled.___m_Name;
  1501. marshaled.___m_HasFixedDuration = static_cast<int32_t>(unmarshaled.___m_HasFixedDuration);
  1502. marshaled.___m_Duration = unmarshaled.___m_Duration;
  1503. marshaled.___m_NormalizedTime = unmarshaled.___m_NormalizedTime;
  1504. marshaled.___m_AnyState = static_cast<int32_t>(unmarshaled.___m_AnyState);
  1505. marshaled.___m_TransitionType = unmarshaled.___m_TransitionType;
  1506. }
  1507. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com_back(const AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled, AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD& unmarshaled)
  1508. {
  1509. int32_t unmarshaledm_FullPath_temp_0 = 0;
  1510. unmarshaledm_FullPath_temp_0 = marshaled.___m_FullPath;
  1511. unmarshaled.___m_FullPath = unmarshaledm_FullPath_temp_0;
  1512. int32_t unmarshaledm_UserName_temp_1 = 0;
  1513. unmarshaledm_UserName_temp_1 = marshaled.___m_UserName;
  1514. unmarshaled.___m_UserName = unmarshaledm_UserName_temp_1;
  1515. int32_t unmarshaledm_Name_temp_2 = 0;
  1516. unmarshaledm_Name_temp_2 = marshaled.___m_Name;
  1517. unmarshaled.___m_Name = unmarshaledm_Name_temp_2;
  1518. bool unmarshaledm_HasFixedDuration_temp_3 = false;
  1519. unmarshaledm_HasFixedDuration_temp_3 = static_cast<bool>(marshaled.___m_HasFixedDuration);
  1520. unmarshaled.___m_HasFixedDuration = unmarshaledm_HasFixedDuration_temp_3;
  1521. float unmarshaledm_Duration_temp_4 = 0.0f;
  1522. unmarshaledm_Duration_temp_4 = marshaled.___m_Duration;
  1523. unmarshaled.___m_Duration = unmarshaledm_Duration_temp_4;
  1524. float unmarshaledm_NormalizedTime_temp_5 = 0.0f;
  1525. unmarshaledm_NormalizedTime_temp_5 = marshaled.___m_NormalizedTime;
  1526. unmarshaled.___m_NormalizedTime = unmarshaledm_NormalizedTime_temp_5;
  1527. bool unmarshaledm_AnyState_temp_6 = false;
  1528. unmarshaledm_AnyState_temp_6 = static_cast<bool>(marshaled.___m_AnyState);
  1529. unmarshaled.___m_AnyState = unmarshaledm_AnyState_temp_6;
  1530. int32_t unmarshaledm_TransitionType_temp_7 = 0;
  1531. unmarshaledm_TransitionType_temp_7 = marshaled.___m_TransitionType;
  1532. unmarshaled.___m_TransitionType = unmarshaledm_TransitionType_temp_7;
  1533. }
  1534. IL2CPP_EXTERN_C void AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshal_com_cleanup(AnimatorTransitionInfo_t44894D5EDEACB368CDBA07458F6EE5F01A1F34AD_marshaled_com& marshaled)
  1535. {
  1536. }
  1537. #ifdef __clang__
  1538. #pragma clang diagnostic pop
  1539. #endif
  1540. #ifdef __clang__
  1541. #pragma clang diagnostic push
  1542. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1543. #pragma clang diagnostic ignored "-Wunused-variable"
  1544. #endif
  1545. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTrigger_mC9CD54D627C8843EF6E159E167449D216EF6EB30 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1546. {
  1547. {
  1548. String_t* L_0 = ___0_name;
  1549. Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E(__this, L_0, NULL);
  1550. return;
  1551. }
  1552. }
  1553. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTrigger_m8DCA67D5A6B56702E3FAD4E18243E194B71297CC (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1554. {
  1555. {
  1556. String_t* L_0 = ___0_name;
  1557. Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868(__this, L_0, NULL);
  1558. return;
  1559. }
  1560. }
  1561. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Animator_get_hasBoundPlayables_mA5A6132C03593851FE80D8E7490191E051E5A1C9 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, const RuntimeMethod* method)
  1562. {
  1563. static bool s_Il2CppMethodInitialized;
  1564. if (!s_Il2CppMethodInitialized)
  1565. {
  1566. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1567. s_Il2CppMethodInitialized = true;
  1568. }
  1569. intptr_t G_B2_0;
  1570. memset((&G_B2_0), 0, sizeof(G_B2_0));
  1571. intptr_t G_B1_0;
  1572. memset((&G_B1_0), 0, sizeof(G_B1_0));
  1573. {
  1574. intptr_t L_0;
  1575. L_0 = MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_inline(__this, MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1576. intptr_t L_1 = L_0;
  1577. if (L_1)
  1578. {
  1579. G_B2_0 = L_1;
  1580. goto IL_000f;
  1581. }
  1582. G_B1_0 = L_1;
  1583. }
  1584. {
  1585. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  1586. G_B2_0 = G_B1_0;
  1587. }
  1588. IL_000f:
  1589. {
  1590. bool L_2;
  1591. L_2 = Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054(G_B2_0, NULL);
  1592. return L_2;
  1593. }
  1594. }
  1595. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Animator_StringToHash_mD67B872C411BE37641F49D7AA1DBD45B67F63E3A (String_t* ___0_name, const RuntimeMethod* method)
  1596. {
  1597. static bool s_Il2CppMethodInitialized;
  1598. if (!s_Il2CppMethodInitialized)
  1599. {
  1600. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1601. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1602. s_Il2CppMethodInitialized = true;
  1603. }
  1604. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  1605. memset((&V_0), 0, sizeof(V_0));
  1606. Il2CppChar* V_1 = NULL;
  1607. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  1608. memset((&V_2), 0, sizeof(V_2));
  1609. int32_t V_3 = 0;
  1610. {
  1611. auto __finallyBlock = il2cpp::utils::Finally([&]
  1612. {
  1613. FINALLY_0034:
  1614. {
  1615. V_1 = (Il2CppChar*)((uintptr_t)0);
  1616. return;
  1617. }
  1618. });
  1619. try
  1620. {
  1621. {
  1622. String_t* L_0 = ___0_name;
  1623. bool L_1;
  1624. L_1 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_0, (&V_2), NULL);
  1625. if (L_1)
  1626. {
  1627. goto IL_0029_1;
  1628. }
  1629. }
  1630. {
  1631. String_t* L_2 = ___0_name;
  1632. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3;
  1633. L_3 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_2, NULL);
  1634. V_0 = L_3;
  1635. Il2CppChar* L_4;
  1636. L_4 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1637. V_1 = L_4;
  1638. Il2CppChar* L_5 = V_1;
  1639. int32_t L_6;
  1640. L_6 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1641. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_5), L_6, NULL);
  1642. }
  1643. IL_0029_1:
  1644. {
  1645. int32_t L_7;
  1646. L_7 = Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8((&V_2), NULL);
  1647. V_3 = L_7;
  1648. goto IL_0038;
  1649. }
  1650. }
  1651. catch(Il2CppExceptionWrapper& e)
  1652. {
  1653. __finallyBlock.StoreException(e.ex);
  1654. }
  1655. }
  1656. IL_0038:
  1657. {
  1658. int32_t L_8 = V_3;
  1659. return L_8;
  1660. }
  1661. }
  1662. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_m177C75DFBE070DE66FC08A3232444CCEA409C25E (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1663. {
  1664. static bool s_Il2CppMethodInitialized;
  1665. if (!s_Il2CppMethodInitialized)
  1666. {
  1667. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1668. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1669. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1670. s_Il2CppMethodInitialized = true;
  1671. }
  1672. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  1673. memset((&V_0), 0, sizeof(V_0));
  1674. Il2CppChar* V_1 = NULL;
  1675. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  1676. memset((&V_2), 0, sizeof(V_2));
  1677. intptr_t G_B2_0;
  1678. memset((&G_B2_0), 0, sizeof(G_B2_0));
  1679. intptr_t G_B1_0;
  1680. memset((&G_B1_0), 0, sizeof(G_B1_0));
  1681. intptr_t G_B4_0;
  1682. memset((&G_B4_0), 0, sizeof(G_B4_0));
  1683. intptr_t G_B3_0;
  1684. memset((&G_B3_0), 0, sizeof(G_B3_0));
  1685. {
  1686. auto __finallyBlock = il2cpp::utils::Finally([&]
  1687. {
  1688. FINALLY_0043:
  1689. {
  1690. V_1 = (Il2CppChar*)((uintptr_t)0);
  1691. return;
  1692. }
  1693. });
  1694. try
  1695. {
  1696. {
  1697. intptr_t L_0;
  1698. L_0 = MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_inline(__this, MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1699. intptr_t L_1 = L_0;
  1700. if (L_1)
  1701. {
  1702. G_B2_0 = L_1;
  1703. goto IL_000f_1;
  1704. }
  1705. G_B1_0 = L_1;
  1706. }
  1707. {
  1708. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  1709. G_B2_0 = G_B1_0;
  1710. }
  1711. IL_000f_1:
  1712. {
  1713. String_t* L_2 = ___0_name;
  1714. bool L_3;
  1715. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  1716. if (L_3)
  1717. {
  1718. G_B4_0 = G_B2_0;
  1719. goto IL_0039_1;
  1720. }
  1721. G_B3_0 = G_B2_0;
  1722. }
  1723. {
  1724. String_t* L_4 = ___0_name;
  1725. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  1726. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  1727. V_0 = L_5;
  1728. Il2CppChar* L_6;
  1729. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1730. V_1 = L_6;
  1731. Il2CppChar* L_7 = V_1;
  1732. int32_t L_8;
  1733. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1734. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  1735. G_B4_0 = G_B3_0;
  1736. }
  1737. IL_0039_1:
  1738. {
  1739. Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1(G_B4_0, (&V_2), NULL);
  1740. goto IL_0047;
  1741. }
  1742. }
  1743. catch(Il2CppExceptionWrapper& e)
  1744. {
  1745. __finallyBlock.StoreException(e.ex);
  1746. }
  1747. }
  1748. IL_0047:
  1749. {
  1750. return;
  1751. }
  1752. }
  1753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_m78259348CED35F156148A64B95EBD73CE3951868 (Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* __this, String_t* ___0_name, const RuntimeMethod* method)
  1754. {
  1755. static bool s_Il2CppMethodInitialized;
  1756. if (!s_Il2CppMethodInitialized)
  1757. {
  1758. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1759. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1760. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1761. s_Il2CppMethodInitialized = true;
  1762. }
  1763. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  1764. memset((&V_0), 0, sizeof(V_0));
  1765. Il2CppChar* V_1 = NULL;
  1766. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  1767. memset((&V_2), 0, sizeof(V_2));
  1768. intptr_t G_B2_0;
  1769. memset((&G_B2_0), 0, sizeof(G_B2_0));
  1770. intptr_t G_B1_0;
  1771. memset((&G_B1_0), 0, sizeof(G_B1_0));
  1772. intptr_t G_B4_0;
  1773. memset((&G_B4_0), 0, sizeof(G_B4_0));
  1774. intptr_t G_B3_0;
  1775. memset((&G_B3_0), 0, sizeof(G_B3_0));
  1776. {
  1777. auto __finallyBlock = il2cpp::utils::Finally([&]
  1778. {
  1779. FINALLY_0043:
  1780. {
  1781. V_1 = (Il2CppChar*)((uintptr_t)0);
  1782. return;
  1783. }
  1784. });
  1785. try
  1786. {
  1787. {
  1788. intptr_t L_0;
  1789. L_0 = MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_inline(__this, MarshalledUnityObject_MarshalNotNull_TisAnimator_t8A52E42AE54F76681838FE9E632683EF3952E883_m7B071EDE70A999827D66796CB3D8C40800E84206_RuntimeMethod_var);
  1790. intptr_t L_1 = L_0;
  1791. if (L_1)
  1792. {
  1793. G_B2_0 = L_1;
  1794. goto IL_000f_1;
  1795. }
  1796. G_B1_0 = L_1;
  1797. }
  1798. {
  1799. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  1800. G_B2_0 = G_B1_0;
  1801. }
  1802. IL_000f_1:
  1803. {
  1804. String_t* L_2 = ___0_name;
  1805. bool L_3;
  1806. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  1807. if (L_3)
  1808. {
  1809. G_B4_0 = G_B2_0;
  1810. goto IL_0039_1;
  1811. }
  1812. G_B3_0 = G_B2_0;
  1813. }
  1814. {
  1815. String_t* L_4 = ___0_name;
  1816. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  1817. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  1818. V_0 = L_5;
  1819. Il2CppChar* L_6;
  1820. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  1821. V_1 = L_6;
  1822. Il2CppChar* L_7 = V_1;
  1823. int32_t L_8;
  1824. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  1825. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  1826. G_B4_0 = G_B3_0;
  1827. }
  1828. IL_0039_1:
  1829. {
  1830. Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A(G_B4_0, (&V_2), NULL);
  1831. goto IL_0047;
  1832. }
  1833. }
  1834. catch(Il2CppExceptionWrapper& e)
  1835. {
  1836. __finallyBlock.StoreException(e.ex);
  1837. }
  1838. }
  1839. IL_0047:
  1840. {
  1841. return;
  1842. }
  1843. }
  1844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  1845. {
  1846. typedef bool (*Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054_ftn) (intptr_t);
  1847. static Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054_ftn _il2cpp_icall_func;
  1848. if (!_il2cpp_icall_func)
  1849. _il2cpp_icall_func = (Animator_get_hasBoundPlayables_Injected_mD45F2A48DBD6AC97C94C15BE92005D6BDE362054_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::get_hasBoundPlayables_Injected(System.IntPtr)");
  1850. bool icallRetVal = _il2cpp_icall_func(___0__unity_self);
  1851. return icallRetVal;
  1852. }
  1853. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___0_name, const RuntimeMethod* method)
  1854. {
  1855. typedef int32_t (*Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8_ftn) (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  1856. static Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8_ftn _il2cpp_icall_func;
  1857. if (!_il2cpp_icall_func)
  1858. _il2cpp_icall_func = (Animator_StringToHash_Injected_m034D05BA0F26EAC251C3EA39C764D29CCB98D3F8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::StringToHash_Injected(UnityEngine.Bindings.ManagedSpanWrapper&)");
  1859. int32_t icallRetVal = _il2cpp_icall_func(___0_name);
  1860. return icallRetVal;
  1861. }
  1862. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, const RuntimeMethod* method)
  1863. {
  1864. typedef void (*Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  1865. static Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1_ftn _il2cpp_icall_func;
  1866. if (!_il2cpp_icall_func)
  1867. _il2cpp_icall_func = (Animator_SetTriggerString_Injected_mD98E28EFCD06D8ED7188F7CD7D268E73ADD36ED1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::SetTriggerString_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  1868. _il2cpp_icall_func(___0__unity_self, ___1_name);
  1869. }
  1870. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, const RuntimeMethod* method)
  1871. {
  1872. typedef void (*Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  1873. static Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A_ftn _il2cpp_icall_func;
  1874. if (!_il2cpp_icall_func)
  1875. _il2cpp_icall_func = (Animator_ResetTriggerString_Injected_m3A9C4A49F7FAD1DD3553B58D4CE5FEF57C15D32A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animator::ResetTriggerString_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  1876. _il2cpp_icall_func(___0__unity_self, ___1_name);
  1877. }
  1878. #ifdef __clang__
  1879. #pragma clang diagnostic pop
  1880. #endif
  1881. #ifdef __clang__
  1882. #pragma clang diagnostic push
  1883. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1884. #pragma clang diagnostic ignored "-Wunused-variable"
  1885. #endif
  1886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorOverrideController_OnInvalidateOverrideController_mA6B0AA977505FDEFDD6BCA2E941FD3A18AE1AD23 (AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* ___0_controller, const RuntimeMethod* method)
  1887. {
  1888. bool V_0 = false;
  1889. {
  1890. AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* L_0 = ___0_controller;
  1891. NullCheck(L_0);
  1892. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* L_1 = L_0->___OnOverrideControllerDirty;
  1893. V_0 = (bool)((!(((RuntimeObject*)(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  1894. bool L_2 = V_0;
  1895. if (!L_2)
  1896. {
  1897. goto IL_001a;
  1898. }
  1899. }
  1900. {
  1901. AnimatorOverrideController_tF78BD58B30BB0D767E7A96F8428EA66F2DFD5493* L_3 = ___0_controller;
  1902. NullCheck(L_3);
  1903. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* L_4 = L_3->___OnOverrideControllerDirty;
  1904. NullCheck(L_4);
  1905. OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline(L_4, NULL);
  1906. }
  1907. IL_001a:
  1908. {
  1909. return;
  1910. }
  1911. }
  1912. #ifdef __clang__
  1913. #pragma clang diagnostic pop
  1914. #endif
  1915. #ifdef __clang__
  1916. #pragma clang diagnostic push
  1917. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1918. #pragma clang diagnostic ignored "-Wunused-variable"
  1919. #endif
  1920. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_Multicast(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1921. {
  1922. il2cpp_array_size_t length = __this->___delegates->max_length;
  1923. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1924. for (il2cpp_array_size_t i = 0; i < length; i++)
  1925. {
  1926. OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* currentDelegate = reinterpret_cast<OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5*>(delegatesToInvoke[i]);
  1927. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1928. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1929. }
  1930. }
  1931. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenInst(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1932. {
  1933. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1934. ((FunctionPointerType)__this->___method_ptr)(method);
  1935. }
  1936. void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenStatic(OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1937. {
  1938. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1939. ((FunctionPointerType)__this->___method_ptr)(method);
  1940. }
  1941. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5 (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1942. {
  1943. typedef void (DEFAULT_CALL *PInvokeFunc)();
  1944. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  1945. il2cppPInvokeFunc();
  1946. }
  1947. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback__ctor_mA49B11AF24CB49A9B764058DB73CE221AE54E106 (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1948. {
  1949. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1950. __this->___method = ___1_method;
  1951. __this->___m_target = ___0_object;
  1952. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1953. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1954. __this->___method_code = (intptr_t)__this;
  1955. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1956. {
  1957. bool isOpen = parameterCount == 0;
  1958. if (isOpen)
  1959. __this->___invoke_impl = (intptr_t)&OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_OpenStatic;
  1960. else
  1961. {
  1962. __this->___invoke_impl = __this->___method_ptr;
  1963. __this->___method_code = (intptr_t)__this->___m_target;
  1964. }
  1965. }
  1966. else
  1967. {
  1968. if (___0_object == NULL)
  1969. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1970. __this->___invoke_impl = __this->___method_ptr;
  1971. __this->___method_code = (intptr_t)__this->___m_target;
  1972. }
  1973. __this->___extra_arg = (intptr_t)&OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_Multicast;
  1974. }
  1975. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  1976. {
  1977. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1978. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1979. }
  1980. #ifdef __clang__
  1981. #pragma clang diagnostic pop
  1982. #endif
  1983. #ifdef __clang__
  1984. #pragma clang diagnostic push
  1985. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1986. #pragma clang diagnostic ignored "-Wunused-variable"
  1987. #endif
  1988. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled)
  1989. {
  1990. marshaled.___name = il2cpp_codegen_marshal_string(unmarshaled.___name);
  1991. marshaled.___parentName = il2cpp_codegen_marshal_string(unmarshaled.___parentName);
  1992. marshaled.___position = unmarshaled.___position;
  1993. marshaled.___rotation = unmarshaled.___rotation;
  1994. marshaled.___scale = unmarshaled.___scale;
  1995. }
  1996. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke_back(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled)
  1997. {
  1998. unmarshaled.___name = il2cpp_codegen_marshal_string_result(marshaled.___name);
  1999. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name), (void*)il2cpp_codegen_marshal_string_result(marshaled.___name));
  2000. unmarshaled.___parentName = il2cpp_codegen_marshal_string_result(marshaled.___parentName);
  2001. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___parentName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___parentName));
  2002. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledposition_temp_2;
  2003. memset((&unmarshaledposition_temp_2), 0, sizeof(unmarshaledposition_temp_2));
  2004. unmarshaledposition_temp_2 = marshaled.___position;
  2005. unmarshaled.___position = unmarshaledposition_temp_2;
  2006. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 unmarshaledrotation_temp_3;
  2007. memset((&unmarshaledrotation_temp_3), 0, sizeof(unmarshaledrotation_temp_3));
  2008. unmarshaledrotation_temp_3 = marshaled.___rotation;
  2009. unmarshaled.___rotation = unmarshaledrotation_temp_3;
  2010. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledscale_temp_4;
  2011. memset((&unmarshaledscale_temp_4), 0, sizeof(unmarshaledscale_temp_4));
  2012. unmarshaledscale_temp_4 = marshaled.___scale;
  2013. unmarshaled.___scale = unmarshaledscale_temp_4;
  2014. }
  2015. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_pinvoke_cleanup(SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_pinvoke& marshaled)
  2016. {
  2017. il2cpp_codegen_marshal_free(marshaled.___name);
  2018. marshaled.___name = NULL;
  2019. il2cpp_codegen_marshal_free(marshaled.___parentName);
  2020. marshaled.___parentName = NULL;
  2021. }
  2022. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled)
  2023. {
  2024. marshaled.___name = il2cpp_codegen_marshal_bstring(unmarshaled.___name);
  2025. marshaled.___parentName = il2cpp_codegen_marshal_bstring(unmarshaled.___parentName);
  2026. marshaled.___position = unmarshaled.___position;
  2027. marshaled.___rotation = unmarshaled.___rotation;
  2028. marshaled.___scale = unmarshaled.___scale;
  2029. }
  2030. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com_back(const SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled, SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126& unmarshaled)
  2031. {
  2032. unmarshaled.___name = il2cpp_codegen_marshal_bstring_result(marshaled.___name);
  2033. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___name));
  2034. unmarshaled.___parentName = il2cpp_codegen_marshal_bstring_result(marshaled.___parentName);
  2035. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___parentName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___parentName));
  2036. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledposition_temp_2;
  2037. memset((&unmarshaledposition_temp_2), 0, sizeof(unmarshaledposition_temp_2));
  2038. unmarshaledposition_temp_2 = marshaled.___position;
  2039. unmarshaled.___position = unmarshaledposition_temp_2;
  2040. Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 unmarshaledrotation_temp_3;
  2041. memset((&unmarshaledrotation_temp_3), 0, sizeof(unmarshaledrotation_temp_3));
  2042. unmarshaledrotation_temp_3 = marshaled.___rotation;
  2043. unmarshaled.___rotation = unmarshaledrotation_temp_3;
  2044. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 unmarshaledscale_temp_4;
  2045. memset((&unmarshaledscale_temp_4), 0, sizeof(unmarshaledscale_temp_4));
  2046. unmarshaledscale_temp_4 = marshaled.___scale;
  2047. unmarshaled.___scale = unmarshaledscale_temp_4;
  2048. }
  2049. IL2CPP_EXTERN_C void SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshal_com_cleanup(SkeletonBone_tA999028EED923DB65E286BB99F81541872F5B126_marshaled_com& marshaled)
  2050. {
  2051. il2cpp_codegen_marshal_free_bstring(marshaled.___name);
  2052. marshaled.___name = NULL;
  2053. il2cpp_codegen_marshal_free_bstring(marshaled.___parentName);
  2054. marshaled.___parentName = NULL;
  2055. }
  2056. #ifdef __clang__
  2057. #pragma clang diagnostic pop
  2058. #endif
  2059. #ifdef __clang__
  2060. #pragma clang diagnostic push
  2061. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2062. #pragma clang diagnostic ignored "-Wunused-variable"
  2063. #endif
  2064. #ifdef __clang__
  2065. #pragma clang diagnostic pop
  2066. #endif
  2067. #ifdef __clang__
  2068. #pragma clang diagnostic push
  2069. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2070. #pragma clang diagnostic ignored "-Wunused-variable"
  2071. #endif
  2072. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled)
  2073. {
  2074. marshaled.___m_BoneName = il2cpp_codegen_marshal_string(unmarshaled.___m_BoneName);
  2075. marshaled.___m_HumanName = il2cpp_codegen_marshal_string(unmarshaled.___m_HumanName);
  2076. marshaled.___limit = unmarshaled.___limit;
  2077. }
  2078. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke_back(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled)
  2079. {
  2080. unmarshaled.___m_BoneName = il2cpp_codegen_marshal_string_result(marshaled.___m_BoneName);
  2081. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_BoneName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_BoneName));
  2082. unmarshaled.___m_HumanName = il2cpp_codegen_marshal_string_result(marshaled.___m_HumanName);
  2083. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_HumanName), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_HumanName));
  2084. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E unmarshaledlimit_temp_2;
  2085. memset((&unmarshaledlimit_temp_2), 0, sizeof(unmarshaledlimit_temp_2));
  2086. unmarshaledlimit_temp_2 = marshaled.___limit;
  2087. unmarshaled.___limit = unmarshaledlimit_temp_2;
  2088. }
  2089. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_pinvoke_cleanup(HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_pinvoke& marshaled)
  2090. {
  2091. il2cpp_codegen_marshal_free(marshaled.___m_BoneName);
  2092. marshaled.___m_BoneName = NULL;
  2093. il2cpp_codegen_marshal_free(marshaled.___m_HumanName);
  2094. marshaled.___m_HumanName = NULL;
  2095. }
  2096. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled)
  2097. {
  2098. marshaled.___m_BoneName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_BoneName);
  2099. marshaled.___m_HumanName = il2cpp_codegen_marshal_bstring(unmarshaled.___m_HumanName);
  2100. marshaled.___limit = unmarshaled.___limit;
  2101. }
  2102. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com_back(const HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled, HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8& unmarshaled)
  2103. {
  2104. unmarshaled.___m_BoneName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_BoneName);
  2105. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_BoneName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_BoneName));
  2106. unmarshaled.___m_HumanName = il2cpp_codegen_marshal_bstring_result(marshaled.___m_HumanName);
  2107. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_HumanName), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_HumanName));
  2108. HumanLimit_tE825F951DEE60E2641DD91F3C92C6B56A139A36E unmarshaledlimit_temp_2;
  2109. memset((&unmarshaledlimit_temp_2), 0, sizeof(unmarshaledlimit_temp_2));
  2110. unmarshaledlimit_temp_2 = marshaled.___limit;
  2111. unmarshaled.___limit = unmarshaledlimit_temp_2;
  2112. }
  2113. IL2CPP_EXTERN_C void HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshal_com_cleanup(HumanBone_t9A978BB2457E935D0B6FA64ADDE60562ADAE5FD8_marshaled_com& marshaled)
  2114. {
  2115. il2cpp_codegen_marshal_free_bstring(marshaled.___m_BoneName);
  2116. marshaled.___m_BoneName = NULL;
  2117. il2cpp_codegen_marshal_free_bstring(marshaled.___m_HumanName);
  2118. marshaled.___m_HumanName = NULL;
  2119. }
  2120. #ifdef __clang__
  2121. #pragma clang diagnostic pop
  2122. #endif
  2123. #ifdef __clang__
  2124. #pragma clang diagnostic push
  2125. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2126. #pragma clang diagnostic ignored "-Wunused-variable"
  2127. #endif
  2128. #ifdef __clang__
  2129. #pragma clang diagnostic pop
  2130. #endif
  2131. #ifdef __clang__
  2132. #pragma clang diagnostic push
  2133. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2134. #pragma clang diagnostic ignored "-Wunused-variable"
  2135. #endif
  2136. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DiscreteEvaluationAttribute__ctor_m8C8036DC8BB15BBD3BBB79F2D14637C0DEBCB151 (DiscreteEvaluationAttribute_tF23FCB5AB01B394BF5BD84623364A965C90F8BB9* __this, const RuntimeMethod* method)
  2137. {
  2138. {
  2139. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  2140. return;
  2141. }
  2142. }
  2143. #ifdef __clang__
  2144. #pragma clang diagnostic pop
  2145. #endif
  2146. #ifdef __clang__
  2147. #pragma clang diagnostic push
  2148. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2149. #pragma clang diagnostic ignored "-Wunused-variable"
  2150. #endif
  2151. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DiscreteEvaluationAttributeUtilities_ConvertFloatToDiscreteInt_mADD1EB91441A214F69458BFF45F86E77D11A340C (float ___0_f, const RuntimeMethod* method)
  2152. {
  2153. float* V_0 = NULL;
  2154. int32_t* V_1 = NULL;
  2155. int32_t V_2 = 0;
  2156. {
  2157. V_0 = (float*)((uintptr_t)(&___0_f));
  2158. float* L_0 = V_0;
  2159. V_1 = (int32_t*)L_0;
  2160. int32_t* L_1 = V_1;
  2161. int32_t L_2 = (*(L_1));
  2162. V_2 = L_2;
  2163. goto IL_000d;
  2164. }
  2165. IL_000d:
  2166. {
  2167. int32_t L_3 = V_2;
  2168. return L_3;
  2169. }
  2170. }
  2171. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DiscreteEvaluationAttributeUtilities_ConvertDiscreteIntToFloat_m6A22CA1A2232C185F6E10865530FFEDA68E28D7F (int32_t ___0_f, const RuntimeMethod* method)
  2172. {
  2173. int32_t* V_0 = NULL;
  2174. float* V_1 = NULL;
  2175. float V_2 = 0.0f;
  2176. {
  2177. V_0 = (int32_t*)((uintptr_t)(&___0_f));
  2178. int32_t* L_0 = V_0;
  2179. V_1 = (float*)L_0;
  2180. float* L_1 = V_1;
  2181. float L_2 = (*(L_1));
  2182. V_2 = L_2;
  2183. goto IL_000d;
  2184. }
  2185. IL_000d:
  2186. {
  2187. float L_3 = V_2;
  2188. return L_3;
  2189. }
  2190. }
  2191. #ifdef __clang__
  2192. #pragma clang diagnostic pop
  2193. #endif
  2194. #ifdef __clang__
  2195. #pragma clang diagnostic push
  2196. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2197. #pragma clang diagnostic ignored "-Wunused-variable"
  2198. #endif
  2199. #ifdef __clang__
  2200. #pragma clang diagnostic pop
  2201. #endif
  2202. #ifdef __clang__
  2203. #pragma clang diagnostic push
  2204. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2205. #pragma clang diagnostic ignored "-Wunused-variable"
  2206. #endif
  2207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, const RuntimeMethod* method)
  2208. {
  2209. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2210. memset((&V_0), 0, sizeof(V_0));
  2211. {
  2212. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2213. V_0 = L_0;
  2214. goto IL_000a;
  2215. }
  2216. IL_000a:
  2217. {
  2218. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2219. return L_1;
  2220. }
  2221. }
  2222. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2223. {
  2224. AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* _thisAdjusted;
  2225. int32_t _offset = 1;
  2226. _thisAdjusted = reinterpret_cast<AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969*>(__this + _offset);
  2227. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2228. _returnValue = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627(_thisAdjusted, method);
  2229. return _returnValue;
  2230. }
  2231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4 (AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method)
  2232. {
  2233. static bool s_Il2CppMethodInitialized;
  2234. if (!s_Il2CppMethodInitialized)
  2235. {
  2236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2237. s_Il2CppMethodInitialized = true;
  2238. }
  2239. bool V_0 = false;
  2240. {
  2241. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2242. L_0 = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627(__this, NULL);
  2243. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2244. L_1 = AnimationClipPlayable_GetHandle_mE775F2247901BA293DB01A8D384D3F9D02A25627((&___0_other), NULL);
  2245. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2246. bool L_2;
  2247. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2248. V_0 = L_2;
  2249. goto IL_0016;
  2250. }
  2251. IL_0016:
  2252. {
  2253. bool L_3 = V_0;
  2254. return L_3;
  2255. }
  2256. }
  2257. IL2CPP_EXTERN_C bool AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4_AdjustorThunk (RuntimeObject* __this, AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969 ___0_other, const RuntimeMethod* method)
  2258. {
  2259. AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969* _thisAdjusted;
  2260. int32_t _offset = 1;
  2261. _thisAdjusted = reinterpret_cast<AnimationClipPlayable_t54CEA0DD315B1674C2BD49E681005C4271D73969*>(__this + _offset);
  2262. bool _returnValue;
  2263. _returnValue = AnimationClipPlayable_Equals_mC5263BEA86C02CEDF93C5B14EAA168883E1DB5F4(_thisAdjusted, ___0_other, method);
  2264. return _returnValue;
  2265. }
  2266. #ifdef __clang__
  2267. #pragma clang diagnostic pop
  2268. #endif
  2269. #ifdef __clang__
  2270. #pragma clang diagnostic push
  2271. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2272. #pragma clang diagnostic ignored "-Wunused-variable"
  2273. #endif
  2274. #ifdef __clang__
  2275. #pragma clang diagnostic pop
  2276. #endif
  2277. #ifdef __clang__
  2278. #pragma clang diagnostic push
  2279. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2280. #pragma clang diagnostic ignored "-Wunused-variable"
  2281. #endif
  2282. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method)
  2283. {
  2284. static bool s_Il2CppMethodInitialized;
  2285. if (!s_Il2CppMethodInitialized)
  2286. {
  2287. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  2288. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var);
  2289. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2290. s_Il2CppMethodInitialized = true;
  2291. }
  2292. bool V_0 = false;
  2293. bool V_1 = false;
  2294. {
  2295. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2296. bool L_0;
  2297. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2298. V_0 = L_0;
  2299. bool L_1 = V_0;
  2300. if (!L_1)
  2301. {
  2302. goto IL_0030;
  2303. }
  2304. }
  2305. {
  2306. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2307. bool L_2;
  2308. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_m23764EE36FE7A81A245C7146FF1E9DF6530DA321_RuntimeMethod_var);
  2309. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2310. bool L_3 = V_1;
  2311. if (!L_3)
  2312. {
  2313. goto IL_0026;
  2314. }
  2315. }
  2316. {
  2317. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2318. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD2435BFAEB0372E848D9BE812E3B06AB862CC3D1)), NULL);
  2319. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_RuntimeMethod_var)));
  2320. }
  2321. IL_0026:
  2322. {
  2323. bool L_5 = ___1_singleLayerOptimization;
  2324. il2cpp_codegen_runtime_class_init_inline(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  2325. AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB((&___0_handle), L_5, NULL);
  2326. }
  2327. IL_0030:
  2328. {
  2329. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_6 = ___0_handle;
  2330. __this->___m_Handle = L_6;
  2331. return;
  2332. }
  2333. }
  2334. IL2CPP_EXTERN_C void AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, bool ___1_singleLayerOptimization, const RuntimeMethod* method)
  2335. {
  2336. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  2337. int32_t _offset = 1;
  2338. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  2339. AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6(_thisAdjusted, ___0_handle, ___1_singleLayerOptimization, method);
  2340. }
  2341. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, const RuntimeMethod* method)
  2342. {
  2343. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2344. memset((&V_0), 0, sizeof(V_0));
  2345. {
  2346. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2347. V_0 = L_0;
  2348. goto IL_000a;
  2349. }
  2350. IL_000a:
  2351. {
  2352. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2353. return L_1;
  2354. }
  2355. }
  2356. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2357. {
  2358. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  2359. int32_t _offset = 1;
  2360. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  2361. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2362. _returnValue = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F(_thisAdjusted, method);
  2363. return _returnValue;
  2364. }
  2365. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970 (AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method)
  2366. {
  2367. static bool s_Il2CppMethodInitialized;
  2368. if (!s_Il2CppMethodInitialized)
  2369. {
  2370. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  2371. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2372. s_Il2CppMethodInitialized = true;
  2373. }
  2374. bool V_0 = false;
  2375. {
  2376. il2cpp_codegen_runtime_class_init_inline(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  2377. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2378. L_0 = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F(__this, NULL);
  2379. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2380. L_1 = AnimationLayerMixerPlayable_GetHandle_m324A98D0B0BFC0441377D65CAE93C914F828721F((&___0_other), NULL);
  2381. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2382. bool L_2;
  2383. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2384. V_0 = L_2;
  2385. goto IL_0016;
  2386. }
  2387. IL_0016:
  2388. {
  2389. bool L_3 = V_0;
  2390. return L_3;
  2391. }
  2392. }
  2393. IL2CPP_EXTERN_C bool AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970_AdjustorThunk (RuntimeObject* __this, AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D ___0_other, const RuntimeMethod* method)
  2394. {
  2395. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D* _thisAdjusted;
  2396. int32_t _offset = 1;
  2397. _thisAdjusted = reinterpret_cast<AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D*>(__this + _offset);
  2398. bool _returnValue;
  2399. _returnValue = AnimationLayerMixerPlayable_Equals_mA5D24E61E2DE1140B409F3B569DBA3C185751970(_thisAdjusted, ___0_other, method);
  2400. return _returnValue;
  2401. }
  2402. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* ___0_handle, bool ___1_value, const RuntimeMethod* method)
  2403. {
  2404. typedef void (*AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn) (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*, bool);
  2405. static AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn _il2cpp_icall_func;
  2406. if (!_il2cpp_icall_func)
  2407. _il2cpp_icall_func = (AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal_mF1EC1B461F2CCB8D7E01799875DDB5FC8FE4BBDB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Animations.AnimationLayerMixerPlayable::SetSingleLayerOptimizationInternal(UnityEngine.Playables.PlayableHandle&,System.Boolean)");
  2408. _il2cpp_icall_func(___0_handle, ___1_value);
  2409. }
  2410. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationLayerMixerPlayable__cctor_m27A78F2EB8840FFCC84901AB4E916ACCE8D8E49B (const RuntimeMethod* method)
  2411. {
  2412. static bool s_Il2CppMethodInitialized;
  2413. if (!s_Il2CppMethodInitialized)
  2414. {
  2415. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var);
  2416. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2417. s_Il2CppMethodInitialized = true;
  2418. }
  2419. {
  2420. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2421. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2422. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2423. AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D L_1;
  2424. memset((&L_1), 0, sizeof(L_1));
  2425. AnimationLayerMixerPlayable__ctor_m28884B8B9F7E057DF947E3B43ED78EA107368BD6((&L_1), L_0, (bool)1, NULL);
  2426. ((AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_StaticFields*)il2cpp_codegen_static_fields_for(AnimationLayerMixerPlayable_tAD8D28A1E2FB76567E9748CDD11699AEF0B4317D_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2427. return;
  2428. }
  2429. }
  2430. #ifdef __clang__
  2431. #pragma clang diagnostic pop
  2432. #endif
  2433. #ifdef __clang__
  2434. #pragma clang diagnostic push
  2435. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2436. #pragma clang diagnostic ignored "-Wunused-variable"
  2437. #endif
  2438. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7 (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2439. {
  2440. static bool s_Il2CppMethodInitialized;
  2441. if (!s_Il2CppMethodInitialized)
  2442. {
  2443. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var);
  2444. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2445. s_Il2CppMethodInitialized = true;
  2446. }
  2447. bool V_0 = false;
  2448. bool V_1 = false;
  2449. {
  2450. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2451. bool L_0;
  2452. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2453. V_0 = L_0;
  2454. bool L_1 = V_0;
  2455. if (!L_1)
  2456. {
  2457. goto IL_0027;
  2458. }
  2459. }
  2460. {
  2461. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2462. bool L_2;
  2463. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_m644E76378CB4DDC0CE669FE1DCE8A8917595D0ED_RuntimeMethod_var);
  2464. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2465. bool L_3 = V_1;
  2466. if (!L_3)
  2467. {
  2468. goto IL_0026;
  2469. }
  2470. }
  2471. {
  2472. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2473. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DEE968069F34C26613ADFCD69C41EFC29314286)), NULL);
  2474. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_RuntimeMethod_var)));
  2475. }
  2476. IL_0026:
  2477. {
  2478. }
  2479. IL_0027:
  2480. {
  2481. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2482. __this->___m_Handle = L_5;
  2483. return;
  2484. }
  2485. }
  2486. IL2CPP_EXTERN_C void AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2487. {
  2488. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  2489. int32_t _offset = 1;
  2490. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  2491. AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7(_thisAdjusted, ___0_handle, method);
  2492. }
  2493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, const RuntimeMethod* method)
  2494. {
  2495. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2496. memset((&V_0), 0, sizeof(V_0));
  2497. {
  2498. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2499. V_0 = L_0;
  2500. goto IL_000a;
  2501. }
  2502. IL_000a:
  2503. {
  2504. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2505. return L_1;
  2506. }
  2507. }
  2508. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2509. {
  2510. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  2511. int32_t _offset = 1;
  2512. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  2513. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2514. _returnValue = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F(_thisAdjusted, method);
  2515. return _returnValue;
  2516. }
  2517. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E (AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method)
  2518. {
  2519. static bool s_Il2CppMethodInitialized;
  2520. if (!s_Il2CppMethodInitialized)
  2521. {
  2522. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  2523. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2524. s_Il2CppMethodInitialized = true;
  2525. }
  2526. bool V_0 = false;
  2527. {
  2528. il2cpp_codegen_runtime_class_init_inline(AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  2529. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2530. L_0 = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F(__this, NULL);
  2531. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2532. L_1 = AnimationMixerPlayable_GetHandle_mBA6CEB1579A713A985D474E75BC282728318882F((&___0_other), NULL);
  2533. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2534. bool L_2;
  2535. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2536. V_0 = L_2;
  2537. goto IL_0016;
  2538. }
  2539. IL_0016:
  2540. {
  2541. bool L_3 = V_0;
  2542. return L_3;
  2543. }
  2544. }
  2545. IL2CPP_EXTERN_C bool AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E_AdjustorThunk (RuntimeObject* __this, AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 ___0_other, const RuntimeMethod* method)
  2546. {
  2547. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0* _thisAdjusted;
  2548. int32_t _offset = 1;
  2549. _thisAdjusted = reinterpret_cast<AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0*>(__this + _offset);
  2550. bool _returnValue;
  2551. _returnValue = AnimationMixerPlayable_Equals_m6EBE215636EEEA3196A43F4D6C1FE6DD704AFA4E(_thisAdjusted, ___0_other, method);
  2552. return _returnValue;
  2553. }
  2554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMixerPlayable__cctor_m7D67E8E778387293AF1ACB1FDBE6ADA3E456A969 (const RuntimeMethod* method)
  2555. {
  2556. static bool s_Il2CppMethodInitialized;
  2557. if (!s_Il2CppMethodInitialized)
  2558. {
  2559. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var);
  2560. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2561. s_Il2CppMethodInitialized = true;
  2562. }
  2563. {
  2564. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2565. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2566. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2567. AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0 L_1;
  2568. memset((&L_1), 0, sizeof(L_1));
  2569. AnimationMixerPlayable__ctor_mBF84CC064549C2C00B2AE1174018335958EB7EA7((&L_1), L_0, NULL);
  2570. ((AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_StaticFields*)il2cpp_codegen_static_fields_for(AnimationMixerPlayable_t2984697B87B8719A34519FCF2130545D6D7AB6C0_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2571. return;
  2572. }
  2573. }
  2574. #ifdef __clang__
  2575. #pragma clang diagnostic pop
  2576. #endif
  2577. #ifdef __clang__
  2578. #pragma clang diagnostic push
  2579. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2580. #pragma clang diagnostic ignored "-Wunused-variable"
  2581. #endif
  2582. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2583. {
  2584. static bool s_Il2CppMethodInitialized;
  2585. if (!s_Il2CppMethodInitialized)
  2586. {
  2587. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var);
  2588. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2589. s_Il2CppMethodInitialized = true;
  2590. }
  2591. bool V_0 = false;
  2592. bool V_1 = false;
  2593. {
  2594. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2595. bool L_0;
  2596. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2597. V_0 = L_0;
  2598. bool L_1 = V_0;
  2599. if (!L_1)
  2600. {
  2601. goto IL_0027;
  2602. }
  2603. }
  2604. {
  2605. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2606. bool L_2;
  2607. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_mE6DAD58415B04EE79FD34641B365283758722ABF_RuntimeMethod_var);
  2608. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2609. bool L_3 = V_1;
  2610. if (!L_3)
  2611. {
  2612. goto IL_0026;
  2613. }
  2614. }
  2615. {
  2616. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2617. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DC2252638D84FAF2C30B95D54EC83F52FA6C630)), NULL);
  2618. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_RuntimeMethod_var)));
  2619. }
  2620. IL_0026:
  2621. {
  2622. }
  2623. IL_0027:
  2624. {
  2625. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2626. __this->___m_Handle = L_5;
  2627. return;
  2628. }
  2629. }
  2630. IL2CPP_EXTERN_C void AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2631. {
  2632. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  2633. int32_t _offset = 1;
  2634. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  2635. AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940(_thisAdjusted, ___0_handle, method);
  2636. }
  2637. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2 (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, const RuntimeMethod* method)
  2638. {
  2639. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2640. memset((&V_0), 0, sizeof(V_0));
  2641. {
  2642. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2643. V_0 = L_0;
  2644. goto IL_000a;
  2645. }
  2646. IL_000a:
  2647. {
  2648. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2649. return L_1;
  2650. }
  2651. }
  2652. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2653. {
  2654. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  2655. int32_t _offset = 1;
  2656. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  2657. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2658. _returnValue = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2(_thisAdjusted, method);
  2659. return _returnValue;
  2660. }
  2661. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC (AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method)
  2662. {
  2663. static bool s_Il2CppMethodInitialized;
  2664. if (!s_Il2CppMethodInitialized)
  2665. {
  2666. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  2667. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2668. s_Il2CppMethodInitialized = true;
  2669. }
  2670. bool V_0 = false;
  2671. {
  2672. il2cpp_codegen_runtime_class_init_inline(AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  2673. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2674. L_0 = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2(__this, NULL);
  2675. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  2676. L_1 = AnimationMotionXToDeltaPlayable_GetHandle_m09F605E78AD7F0135C7F57EB048031091A50E3A2((&___0_other), NULL);
  2677. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2678. bool L_2;
  2679. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  2680. V_0 = L_2;
  2681. goto IL_0016;
  2682. }
  2683. IL_0016:
  2684. {
  2685. bool L_3 = V_0;
  2686. return L_3;
  2687. }
  2688. }
  2689. IL2CPP_EXTERN_C bool AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC_AdjustorThunk (RuntimeObject* __this, AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 ___0_other, const RuntimeMethod* method)
  2690. {
  2691. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18* _thisAdjusted;
  2692. int32_t _offset = 1;
  2693. _thisAdjusted = reinterpret_cast<AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18*>(__this + _offset);
  2694. bool _returnValue;
  2695. _returnValue = AnimationMotionXToDeltaPlayable_Equals_m7CBF3B7618EDBA4ECC2F3C2F54011248BC45CDCC(_thisAdjusted, ___0_other, method);
  2696. return _returnValue;
  2697. }
  2698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationMotionXToDeltaPlayable__cctor_m4FC582F607F00D5E2A6B97219D2D4150AFA42AF1 (const RuntimeMethod* method)
  2699. {
  2700. static bool s_Il2CppMethodInitialized;
  2701. if (!s_Il2CppMethodInitialized)
  2702. {
  2703. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var);
  2704. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2705. s_Il2CppMethodInitialized = true;
  2706. }
  2707. {
  2708. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2709. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2710. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2711. AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18 L_1;
  2712. memset((&L_1), 0, sizeof(L_1));
  2713. AnimationMotionXToDeltaPlayable__ctor_mDE3C14B4B975AC693669D66B6E41BB6432AFA940((&L_1), L_0, NULL);
  2714. ((AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_StaticFields*)il2cpp_codegen_static_fields_for(AnimationMotionXToDeltaPlayable_t3946605ADB0B4C054A27B3D65A59F8EB75B6BE18_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2715. return;
  2716. }
  2717. }
  2718. #ifdef __clang__
  2719. #pragma clang diagnostic pop
  2720. #endif
  2721. #ifdef __clang__
  2722. #pragma clang diagnostic push
  2723. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2724. #pragma clang diagnostic ignored "-Wunused-variable"
  2725. #endif
  2726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2727. {
  2728. static bool s_Il2CppMethodInitialized;
  2729. if (!s_Il2CppMethodInitialized)
  2730. {
  2731. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var);
  2732. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2733. s_Il2CppMethodInitialized = true;
  2734. }
  2735. bool V_0 = false;
  2736. bool V_1 = false;
  2737. {
  2738. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2739. bool L_0;
  2740. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2741. V_0 = L_0;
  2742. bool L_1 = V_0;
  2743. if (!L_1)
  2744. {
  2745. goto IL_0027;
  2746. }
  2747. }
  2748. {
  2749. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2750. bool L_2;
  2751. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_mB35755A4D179F4DA51A96FCB3C4A8DF105C2BB12_RuntimeMethod_var);
  2752. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2753. bool L_3 = V_1;
  2754. if (!L_3)
  2755. {
  2756. goto IL_0026;
  2757. }
  2758. }
  2759. {
  2760. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2761. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA3C8FF345EC45846B2EE6801F84DD49340F0A9E1)), NULL);
  2762. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_RuntimeMethod_var)));
  2763. }
  2764. IL_0026:
  2765. {
  2766. }
  2767. IL_0027:
  2768. {
  2769. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2770. __this->___m_Handle = L_5;
  2771. return;
  2772. }
  2773. }
  2774. IL2CPP_EXTERN_C void AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2775. {
  2776. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2777. int32_t _offset = 1;
  2778. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2779. AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD(_thisAdjusted, ___0_handle, method);
  2780. }
  2781. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, const RuntimeMethod* method)
  2782. {
  2783. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2784. memset((&V_0), 0, sizeof(V_0));
  2785. {
  2786. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2787. V_0 = L_0;
  2788. goto IL_000a;
  2789. }
  2790. IL_000a:
  2791. {
  2792. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2793. return L_1;
  2794. }
  2795. }
  2796. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2797. {
  2798. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2799. int32_t _offset = 1;
  2800. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2801. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2802. _returnValue = AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78(_thisAdjusted, method);
  2803. return _returnValue;
  2804. }
  2805. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270 (AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method)
  2806. {
  2807. static bool s_Il2CppMethodInitialized;
  2808. if (!s_Il2CppMethodInitialized)
  2809. {
  2810. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2811. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2812. s_Il2CppMethodInitialized = true;
  2813. }
  2814. bool V_0 = false;
  2815. {
  2816. il2cpp_codegen_runtime_class_init_inline(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2817. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2818. L_0 = AnimationOffsetPlayable_GetHandle_m769BEFF90379AEAB0C579F7800953458CE3EBA78((&___0_other), NULL);
  2819. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  2820. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  2821. Il2CppFakeBox<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4> L_3(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var, __this);
  2822. bool L_4;
  2823. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  2824. V_0 = L_4;
  2825. goto IL_001c;
  2826. }
  2827. IL_001c:
  2828. {
  2829. bool L_5 = V_0;
  2830. return L_5;
  2831. }
  2832. }
  2833. IL2CPP_EXTERN_C bool AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270_AdjustorThunk (RuntimeObject* __this, AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 ___0_other, const RuntimeMethod* method)
  2834. {
  2835. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4* _thisAdjusted;
  2836. int32_t _offset = 1;
  2837. _thisAdjusted = reinterpret_cast<AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4*>(__this + _offset);
  2838. bool _returnValue;
  2839. _returnValue = AnimationOffsetPlayable_Equals_mEC28392ADD4E9639EB9228D106D93E21B3587270(_thisAdjusted, ___0_other, method);
  2840. return _returnValue;
  2841. }
  2842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationOffsetPlayable__cctor_m6F50D35CE1FAF52BD587DD3B440CBDE34A76B096 (const RuntimeMethod* method)
  2843. {
  2844. static bool s_Il2CppMethodInitialized;
  2845. if (!s_Il2CppMethodInitialized)
  2846. {
  2847. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var);
  2848. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2849. s_Il2CppMethodInitialized = true;
  2850. }
  2851. {
  2852. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2853. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2854. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  2855. AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4 L_1;
  2856. memset((&L_1), 0, sizeof(L_1));
  2857. AnimationOffsetPlayable__ctor_mBF3AC6493556DAAEF608B359BEBE8FA6D9F8DBFD((&L_1), L_0, NULL);
  2858. ((AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_StaticFields*)il2cpp_codegen_static_fields_for(AnimationOffsetPlayable_t39A1B1103995D63650F606BA2EA4ABDF9484AFB4_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  2859. return;
  2860. }
  2861. }
  2862. #ifdef __clang__
  2863. #pragma clang diagnostic pop
  2864. #endif
  2865. #ifdef __clang__
  2866. #pragma clang diagnostic push
  2867. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2868. #pragma clang diagnostic ignored "-Wunused-variable"
  2869. #endif
  2870. #ifdef __clang__
  2871. #pragma clang diagnostic pop
  2872. #endif
  2873. #ifdef __clang__
  2874. #pragma clang diagnostic push
  2875. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2876. #pragma clang diagnostic ignored "-Wunused-variable"
  2877. #endif
  2878. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2879. {
  2880. static bool s_Il2CppMethodInitialized;
  2881. if (!s_Il2CppMethodInitialized)
  2882. {
  2883. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var);
  2884. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2885. s_Il2CppMethodInitialized = true;
  2886. }
  2887. bool V_0 = false;
  2888. bool V_1 = false;
  2889. {
  2890. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2891. bool L_0;
  2892. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  2893. V_0 = L_0;
  2894. bool L_1 = V_0;
  2895. if (!L_1)
  2896. {
  2897. goto IL_0027;
  2898. }
  2899. }
  2900. {
  2901. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2902. bool L_2;
  2903. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_m61A79154B28DAE22A64165C871757F3E447822A6_RuntimeMethod_var);
  2904. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  2905. bool L_3 = V_1;
  2906. if (!L_3)
  2907. {
  2908. goto IL_0026;
  2909. }
  2910. }
  2911. {
  2912. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  2913. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE066D08B565F88D413FDACA14C42BFF008FF4EB9)), NULL);
  2914. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_RuntimeMethod_var)));
  2915. }
  2916. IL_0026:
  2917. {
  2918. }
  2919. IL_0027:
  2920. {
  2921. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  2922. __this->___m_Handle = L_5;
  2923. return;
  2924. }
  2925. }
  2926. IL2CPP_EXTERN_C void AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  2927. {
  2928. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2929. int32_t _offset = 1;
  2930. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2931. AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F(_thisAdjusted, ___0_handle, method);
  2932. }
  2933. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, const RuntimeMethod* method)
  2934. {
  2935. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  2936. memset((&V_0), 0, sizeof(V_0));
  2937. {
  2938. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  2939. V_0 = L_0;
  2940. goto IL_000a;
  2941. }
  2942. IL_000a:
  2943. {
  2944. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  2945. return L_1;
  2946. }
  2947. }
  2948. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2949. {
  2950. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2951. int32_t _offset = 1;
  2952. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2953. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  2954. _returnValue = AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B(_thisAdjusted, method);
  2955. return _returnValue;
  2956. }
  2957. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3 (AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method)
  2958. {
  2959. static bool s_Il2CppMethodInitialized;
  2960. if (!s_Il2CppMethodInitialized)
  2961. {
  2962. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  2963. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  2964. s_Il2CppMethodInitialized = true;
  2965. }
  2966. bool V_0 = false;
  2967. {
  2968. il2cpp_codegen_runtime_class_init_inline(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  2969. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  2970. L_0 = AnimationPosePlayable_GetHandle_m5DC7CA4CAF3CD525D454D99EBC3D12C3571B527B((&___0_other), NULL);
  2971. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  2972. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  2973. Il2CppFakeBox<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C> L_3(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var, __this);
  2974. bool L_4;
  2975. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  2976. V_0 = L_4;
  2977. goto IL_001c;
  2978. }
  2979. IL_001c:
  2980. {
  2981. bool L_5 = V_0;
  2982. return L_5;
  2983. }
  2984. }
  2985. IL2CPP_EXTERN_C bool AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3_AdjustorThunk (RuntimeObject* __this, AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C ___0_other, const RuntimeMethod* method)
  2986. {
  2987. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C* _thisAdjusted;
  2988. int32_t _offset = 1;
  2989. _thisAdjusted = reinterpret_cast<AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C*>(__this + _offset);
  2990. bool _returnValue;
  2991. _returnValue = AnimationPosePlayable_Equals_m10F1E7DD7037B2AB3F7DAE3E01A1DC843EABD0A3(_thisAdjusted, ___0_other, method);
  2992. return _returnValue;
  2993. }
  2994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationPosePlayable__cctor_mFA5FE84F06C8E9A89C07190055BC898525F897C4 (const RuntimeMethod* method)
  2995. {
  2996. static bool s_Il2CppMethodInitialized;
  2997. if (!s_Il2CppMethodInitialized)
  2998. {
  2999. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var);
  3000. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3001. s_Il2CppMethodInitialized = true;
  3002. }
  3003. {
  3004. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3005. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3006. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  3007. AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C L_1;
  3008. memset((&L_1), 0, sizeof(L_1));
  3009. AnimationPosePlayable__ctor_mC6C096785918358CA7EC12BABCDF4BBD47F7BA3F((&L_1), L_0, NULL);
  3010. ((AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_StaticFields*)il2cpp_codegen_static_fields_for(AnimationPosePlayable_tBB5B82AC675A509F3808C8F825EA24943714CD5C_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  3011. return;
  3012. }
  3013. }
  3014. #ifdef __clang__
  3015. #pragma clang diagnostic pop
  3016. #endif
  3017. #ifdef __clang__
  3018. #pragma clang diagnostic push
  3019. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3020. #pragma clang diagnostic ignored "-Wunused-variable"
  3021. #endif
  3022. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3023. {
  3024. static bool s_Il2CppMethodInitialized;
  3025. if (!s_Il2CppMethodInitialized)
  3026. {
  3027. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var);
  3028. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3029. s_Il2CppMethodInitialized = true;
  3030. }
  3031. bool V_0 = false;
  3032. bool V_1 = false;
  3033. {
  3034. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3035. bool L_0;
  3036. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  3037. V_0 = L_0;
  3038. bool L_1 = V_0;
  3039. if (!L_1)
  3040. {
  3041. goto IL_0027;
  3042. }
  3043. }
  3044. {
  3045. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3046. bool L_2;
  3047. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_m961964786905D9B20B750AC27CB64EA48C4C5971_RuntimeMethod_var);
  3048. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  3049. bool L_3 = V_1;
  3050. if (!L_3)
  3051. {
  3052. goto IL_0026;
  3053. }
  3054. }
  3055. {
  3056. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  3057. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral98C704D69BD1A288ED31DEE4ED4E50097A2D7018)), NULL);
  3058. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_RuntimeMethod_var)));
  3059. }
  3060. IL_0026:
  3061. {
  3062. }
  3063. IL_0027:
  3064. {
  3065. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  3066. __this->___m_Handle = L_5;
  3067. return;
  3068. }
  3069. }
  3070. IL2CPP_EXTERN_C void AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3071. {
  3072. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  3073. int32_t _offset = 1;
  3074. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  3075. AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2(_thisAdjusted, ___0_handle, method);
  3076. }
  3077. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, const RuntimeMethod* method)
  3078. {
  3079. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  3080. memset((&V_0), 0, sizeof(V_0));
  3081. {
  3082. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  3083. V_0 = L_0;
  3084. goto IL_000a;
  3085. }
  3086. IL_000a:
  3087. {
  3088. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  3089. return L_1;
  3090. }
  3091. }
  3092. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3093. {
  3094. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  3095. int32_t _offset = 1;
  3096. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  3097. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  3098. _returnValue = AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6(_thisAdjusted, method);
  3099. return _returnValue;
  3100. }
  3101. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327 (AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method)
  3102. {
  3103. static bool s_Il2CppMethodInitialized;
  3104. if (!s_Il2CppMethodInitialized)
  3105. {
  3106. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  3107. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3108. s_Il2CppMethodInitialized = true;
  3109. }
  3110. bool V_0 = false;
  3111. {
  3112. il2cpp_codegen_runtime_class_init_inline(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  3113. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3114. L_0 = AnimationRemoveScalePlayable_GetHandle_mFFA58B879F31327187A20ED30E1C814B7BEAA9C6((&___0_other), NULL);
  3115. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = L_0;
  3116. RuntimeObject* L_2 = Box(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var, &L_1);
  3117. Il2CppFakeBox<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD> L_3(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var, __this);
  3118. bool L_4;
  3119. L_4 = ValueType_Equals_mCA5344597A8055EC544855AD60A983B10E0EE67D((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)(&L_3), L_2, NULL);
  3120. V_0 = L_4;
  3121. goto IL_001c;
  3122. }
  3123. IL_001c:
  3124. {
  3125. bool L_5 = V_0;
  3126. return L_5;
  3127. }
  3128. }
  3129. IL2CPP_EXTERN_C bool AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327_AdjustorThunk (RuntimeObject* __this, AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD ___0_other, const RuntimeMethod* method)
  3130. {
  3131. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD* _thisAdjusted;
  3132. int32_t _offset = 1;
  3133. _thisAdjusted = reinterpret_cast<AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD*>(__this + _offset);
  3134. bool _returnValue;
  3135. _returnValue = AnimationRemoveScalePlayable_Equals_m0ACDD59B80103591DA8E84CB387FB10778D8C327(_thisAdjusted, ___0_other, method);
  3136. return _returnValue;
  3137. }
  3138. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationRemoveScalePlayable__cctor_m42E614B0B33898D92DFE06CA6045698BE94DE633 (const RuntimeMethod* method)
  3139. {
  3140. static bool s_Il2CppMethodInitialized;
  3141. if (!s_Il2CppMethodInitialized)
  3142. {
  3143. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var);
  3144. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3145. s_Il2CppMethodInitialized = true;
  3146. }
  3147. {
  3148. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3149. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3150. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  3151. AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD L_1;
  3152. memset((&L_1), 0, sizeof(L_1));
  3153. AnimationRemoveScalePlayable__ctor_m4D6C7C4AB8E078050B0CC34C6732051CF043CFA2((&L_1), L_0, NULL);
  3154. ((AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_StaticFields*)il2cpp_codegen_static_fields_for(AnimationRemoveScalePlayable_t915611F6D3CC150DDCAF56412AC3E5ACB518A9DD_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  3155. return;
  3156. }
  3157. }
  3158. #ifdef __clang__
  3159. #pragma clang diagnostic pop
  3160. #endif
  3161. #ifdef __clang__
  3162. #pragma clang diagnostic push
  3163. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3164. #pragma clang diagnostic ignored "-Wunused-variable"
  3165. #endif
  3166. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3167. {
  3168. static bool s_Il2CppMethodInitialized;
  3169. if (!s_Il2CppMethodInitialized)
  3170. {
  3171. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var);
  3172. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3173. s_Il2CppMethodInitialized = true;
  3174. }
  3175. bool V_0 = false;
  3176. bool V_1 = false;
  3177. {
  3178. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3179. bool L_0;
  3180. L_0 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  3181. V_0 = L_0;
  3182. bool L_1 = V_0;
  3183. if (!L_1)
  3184. {
  3185. goto IL_0027;
  3186. }
  3187. }
  3188. {
  3189. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3190. bool L_2;
  3191. L_2 = PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_m4F637AD893630043482383791FA7A0285EB16F6E_RuntimeMethod_var);
  3192. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  3193. bool L_3 = V_1;
  3194. if (!L_3)
  3195. {
  3196. goto IL_0026;
  3197. }
  3198. }
  3199. {
  3200. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  3201. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral860B9EA7CDAB02A8A4B38336805EAE2FBA31F09C)), NULL);
  3202. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_RuntimeMethod_var)));
  3203. }
  3204. IL_0026:
  3205. {
  3206. }
  3207. IL_0027:
  3208. {
  3209. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_5 = ___0_handle;
  3210. __this->___m_Handle = L_5;
  3211. return;
  3212. }
  3213. }
  3214. IL2CPP_EXTERN_C void AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3215. {
  3216. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  3217. int32_t _offset = 1;
  3218. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  3219. AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247(_thisAdjusted, ___0_handle, method);
  3220. }
  3221. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, const RuntimeMethod* method)
  3222. {
  3223. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  3224. memset((&V_0), 0, sizeof(V_0));
  3225. {
  3226. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  3227. V_0 = L_0;
  3228. goto IL_000a;
  3229. }
  3230. IL_000a:
  3231. {
  3232. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  3233. return L_1;
  3234. }
  3235. }
  3236. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3237. {
  3238. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  3239. int32_t _offset = 1;
  3240. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  3241. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  3242. _returnValue = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646(_thisAdjusted, method);
  3243. return _returnValue;
  3244. }
  3245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4 (AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method)
  3246. {
  3247. static bool s_Il2CppMethodInitialized;
  3248. if (!s_Il2CppMethodInitialized)
  3249. {
  3250. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  3251. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3252. s_Il2CppMethodInitialized = true;
  3253. }
  3254. bool V_0 = false;
  3255. {
  3256. il2cpp_codegen_runtime_class_init_inline(AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  3257. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3258. L_0 = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646(__this, NULL);
  3259. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  3260. L_1 = AnimationScriptPlayable_GetHandle_m30355B6EE1AA3BA36D628251FB4291386D223646((&___0_other), NULL);
  3261. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3262. bool L_2;
  3263. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  3264. V_0 = L_2;
  3265. goto IL_0016;
  3266. }
  3267. IL_0016:
  3268. {
  3269. bool L_3 = V_0;
  3270. return L_3;
  3271. }
  3272. }
  3273. IL2CPP_EXTERN_C bool AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4_AdjustorThunk (RuntimeObject* __this, AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 ___0_other, const RuntimeMethod* method)
  3274. {
  3275. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127* _thisAdjusted;
  3276. int32_t _offset = 1;
  3277. _thisAdjusted = reinterpret_cast<AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127*>(__this + _offset);
  3278. bool _returnValue;
  3279. _returnValue = AnimationScriptPlayable_Equals_mAD02E40704CBE4AB188DE0569052F8EA9864F4E4(_thisAdjusted, ___0_other, method);
  3280. return _returnValue;
  3281. }
  3282. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationScriptPlayable__cctor_m5ED4D3FC06BC7A51D3A48B5611F759CB00F7CF54 (const RuntimeMethod* method)
  3283. {
  3284. static bool s_Il2CppMethodInitialized;
  3285. if (!s_Il2CppMethodInitialized)
  3286. {
  3287. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var);
  3288. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3289. s_Il2CppMethodInitialized = true;
  3290. }
  3291. {
  3292. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3293. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3294. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  3295. AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127 L_1;
  3296. memset((&L_1), 0, sizeof(L_1));
  3297. AnimationScriptPlayable__ctor_m6DEFD72735E79009FC1484AA2A7A82E6CE601247((&L_1), L_0, NULL);
  3298. ((AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_StaticFields*)il2cpp_codegen_static_fields_for(AnimationScriptPlayable_t1326433F6848D93D7D90BC54B4AB6649A5D59127_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  3299. return;
  3300. }
  3301. }
  3302. #ifdef __clang__
  3303. #pragma clang diagnostic pop
  3304. #endif
  3305. #ifdef __clang__
  3306. #pragma clang diagnostic push
  3307. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3308. #pragma clang diagnostic ignored "-Wunused-variable"
  3309. #endif
  3310. #ifdef __clang__
  3311. #pragma clang diagnostic pop
  3312. #endif
  3313. #ifdef __clang__
  3314. #pragma clang diagnostic push
  3315. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3316. #pragma clang diagnostic ignored "-Wunused-variable"
  3317. #endif
  3318. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3319. {
  3320. static bool s_Il2CppMethodInitialized;
  3321. if (!s_Il2CppMethodInitialized)
  3322. {
  3323. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  3324. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3325. s_Il2CppMethodInitialized = true;
  3326. }
  3327. {
  3328. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3329. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3330. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  3331. __this->___m_Handle = L_0;
  3332. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = ___0_handle;
  3333. il2cpp_codegen_runtime_class_init_inline(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  3334. AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4(__this, L_1, NULL);
  3335. return;
  3336. }
  3337. }
  3338. IL2CPP_EXTERN_C void AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3339. {
  3340. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  3341. int32_t _offset = 1;
  3342. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  3343. AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE(_thisAdjusted, ___0_handle, method);
  3344. }
  3345. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, const RuntimeMethod* method)
  3346. {
  3347. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 V_0;
  3348. memset((&V_0), 0, sizeof(V_0));
  3349. {
  3350. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0 = __this->___m_Handle;
  3351. V_0 = L_0;
  3352. goto IL_000a;
  3353. }
  3354. IL_000a:
  3355. {
  3356. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1 = V_0;
  3357. return L_1;
  3358. }
  3359. }
  3360. IL2CPP_EXTERN_C PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  3361. {
  3362. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  3363. int32_t _offset = 1;
  3364. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  3365. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 _returnValue;
  3366. _returnValue = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C(_thisAdjusted, method);
  3367. return _returnValue;
  3368. }
  3369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3370. {
  3371. static bool s_Il2CppMethodInitialized;
  3372. if (!s_Il2CppMethodInitialized)
  3373. {
  3374. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var);
  3375. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3376. s_Il2CppMethodInitialized = true;
  3377. }
  3378. bool V_0 = false;
  3379. bool V_1 = false;
  3380. bool V_2 = false;
  3381. {
  3382. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4* L_0 = (PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4*)(&__this->___m_Handle);
  3383. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3384. bool L_1;
  3385. L_1 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098(L_0, NULL);
  3386. V_0 = L_1;
  3387. bool L_2 = V_0;
  3388. if (!L_2)
  3389. {
  3390. goto IL_001b;
  3391. }
  3392. }
  3393. {
  3394. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3395. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF563F6FCC25CE41FFE0BF7590AF9F4475916665)), NULL);
  3396. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var)));
  3397. }
  3398. IL_001b:
  3399. {
  3400. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3401. bool L_4;
  3402. L_4 = PlayableHandle_IsValid_m07631D12846BAAF2CC302E69A28A44BFE9EB5098((&___0_handle), NULL);
  3403. V_1 = L_4;
  3404. bool L_5 = V_1;
  3405. if (!L_5)
  3406. {
  3407. goto IL_0041;
  3408. }
  3409. }
  3410. {
  3411. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3412. bool L_6;
  3413. L_6 = PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70((&___0_handle), PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_m83ED61FDEBC627830082467B83BF64724C68CD70_RuntimeMethod_var);
  3414. V_2 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
  3415. bool L_7 = V_2;
  3416. if (!L_7)
  3417. {
  3418. goto IL_0040;
  3419. }
  3420. }
  3421. {
  3422. InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_8 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
  3423. InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5510C45DDAD777CCB4893578D995C9739F990F2)), NULL);
  3424. IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_RuntimeMethod_var)));
  3425. }
  3426. IL_0040:
  3427. {
  3428. }
  3429. IL_0041:
  3430. {
  3431. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_9 = ___0_handle;
  3432. __this->___m_Handle = L_9;
  3433. return;
  3434. }
  3435. }
  3436. IL2CPP_EXTERN_C void AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4_AdjustorThunk (RuntimeObject* __this, PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___0_handle, const RuntimeMethod* method)
  3437. {
  3438. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  3439. int32_t _offset = 1;
  3440. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  3441. AnimatorControllerPlayable_SetHandle_mD86A3C0D03453FAF21903F7A52A743AB2DA6DED4(_thisAdjusted, ___0_handle, method);
  3442. }
  3443. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180 (AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method)
  3444. {
  3445. static bool s_Il2CppMethodInitialized;
  3446. if (!s_Il2CppMethodInitialized)
  3447. {
  3448. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  3449. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3450. s_Il2CppMethodInitialized = true;
  3451. }
  3452. bool V_0 = false;
  3453. {
  3454. il2cpp_codegen_runtime_class_init_inline(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  3455. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3456. L_0 = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C(__this, NULL);
  3457. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_1;
  3458. L_1 = AnimatorControllerPlayable_GetHandle_m718D9A4E0DB7AC62947B1D09E47DBCD25C27AF6C((&___0_other), NULL);
  3459. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3460. bool L_2;
  3461. L_2 = PlayableHandle_op_Equality_m0E6C48A28F75A870AC22ADE3BD42F7F70A43C99C(L_0, L_1, NULL);
  3462. V_0 = L_2;
  3463. goto IL_0016;
  3464. }
  3465. IL_0016:
  3466. {
  3467. bool L_3 = V_0;
  3468. return L_3;
  3469. }
  3470. }
  3471. IL2CPP_EXTERN_C bool AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180_AdjustorThunk (RuntimeObject* __this, AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A ___0_other, const RuntimeMethod* method)
  3472. {
  3473. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A* _thisAdjusted;
  3474. int32_t _offset = 1;
  3475. _thisAdjusted = reinterpret_cast<AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A*>(__this + _offset);
  3476. bool _returnValue;
  3477. _returnValue = AnimatorControllerPlayable_Equals_m14125BB4CCFCDFFD098223AF20E38501BA264180(_thisAdjusted, ___0_other, method);
  3478. return _returnValue;
  3479. }
  3480. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimatorControllerPlayable__cctor_m88506D1B15D609B818DFDC6B2BCFF42ABB41B090 (const RuntimeMethod* method)
  3481. {
  3482. static bool s_Il2CppMethodInitialized;
  3483. if (!s_Il2CppMethodInitialized)
  3484. {
  3485. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var);
  3486. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3487. s_Il2CppMethodInitialized = true;
  3488. }
  3489. {
  3490. il2cpp_codegen_runtime_class_init_inline(PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_il2cpp_TypeInfo_var);
  3491. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 L_0;
  3492. L_0 = PlayableHandle_get_Null_mF44FE0A71C67054D272F454C91F7E08CBF14A975(NULL);
  3493. AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A L_1;
  3494. memset((&L_1), 0, sizeof(L_1));
  3495. AnimatorControllerPlayable__ctor_mBCB9475E2740BE1AEB94C08BAD14D51333258BFE((&L_1), L_0, NULL);
  3496. ((AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_StaticFields*)il2cpp_codegen_static_fields_for(AnimatorControllerPlayable_tADDCB301674D6243EFE1BD032E7D118FD091210A_il2cpp_TypeInfo_var))->___m_NullPlayable = L_1;
  3497. return;
  3498. }
  3499. }
  3500. #ifdef __clang__
  3501. #pragma clang diagnostic pop
  3502. #endif
  3503. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  3504. {
  3505. {
  3506. intptr_t L_0 = ___0_value1;
  3507. intptr_t L_1 = ___1_value2;
  3508. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3509. }
  3510. }
  3511. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method)
  3512. {
  3513. {
  3514. bool L_0;
  3515. L_0 = GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline(__this, NULL);
  3516. if (L_0)
  3517. {
  3518. goto IL_0013;
  3519. }
  3520. }
  3521. {
  3522. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3523. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4EBC86E0EACFCA522AEB82874860D0E248D782A5)), NULL);
  3524. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5_RuntimeMethod_var)));
  3525. }
  3526. IL_0013:
  3527. {
  3528. intptr_t L_2 = __this->___handle;
  3529. bool L_3;
  3530. L_3 = GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline(L_2, NULL);
  3531. if (!L_3)
  3532. {
  3533. goto IL_002c;
  3534. }
  3535. }
  3536. {
  3537. intptr_t L_4 = __this->___handle;
  3538. RuntimeObject* L_5;
  3539. L_5 = GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline(L_4, NULL);
  3540. return L_5;
  3541. }
  3542. IL_002c:
  3543. {
  3544. intptr_t L_6 = __this->___handle;
  3545. RuntimeObject* L_7;
  3546. L_7 = GCHandle_GetTarget_mE0AF851834410E2AEA6285B2497751570236C794(L_6, NULL);
  3547. return L_7;
  3548. }
  3549. }
  3550. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GCHandle_set_Target_m1DB05E14910747D2A74ACEB4C48028C4AEBFCF3D_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  3551. {
  3552. {
  3553. intptr_t L_0 = __this->___handle;
  3554. bool L_1;
  3555. L_1 = GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline(L_0, NULL);
  3556. if (!L_1)
  3557. {
  3558. goto IL_001a;
  3559. }
  3560. }
  3561. {
  3562. intptr_t L_2 = __this->___handle;
  3563. RuntimeObject* L_3 = ___0_value;
  3564. GCHandle_SetRef_m89BDD13EED80A828682061BEF6D21F334AE45FC7_inline(L_2, L_3, NULL);
  3565. return;
  3566. }
  3567. IL_001a:
  3568. {
  3569. RuntimeObject* L_4 = ___0_value;
  3570. intptr_t L_5 = __this->___handle;
  3571. intptr_t L_6;
  3572. L_6 = GCHandle_GetTargetHandle_mE33A9DC8A8FA880F9CAA057300E28BC8AE743CED(L_4, L_5, (-1), NULL);
  3573. __this->___handle = L_6;
  3574. return;
  3575. }
  3576. }
  3577. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method)
  3578. {
  3579. bool V_0 = false;
  3580. bool V_1 = false;
  3581. bool V_2 = false;
  3582. {
  3583. String_t* L_0 = ___0_s;
  3584. V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  3585. bool L_1 = V_0;
  3586. if (!L_1)
  3587. {
  3588. goto IL_0015;
  3589. }
  3590. }
  3591. {
  3592. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_2 = ___1_managedSpanWrapper;
  3593. il2cpp_codegen_initobj(L_2, sizeof(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E));
  3594. V_1 = (bool)1;
  3595. goto IL_0043;
  3596. }
  3597. IL_0015:
  3598. {
  3599. String_t* L_3 = ___0_s;
  3600. NullCheck(L_3);
  3601. int32_t L_4;
  3602. L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
  3603. V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  3604. bool L_5 = V_2;
  3605. if (!L_5)
  3606. {
  3607. goto IL_003f;
  3608. }
  3609. }
  3610. {
  3611. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_6 = ___1_managedSpanWrapper;
  3612. uintptr_t L_7;
  3613. L_7 = UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8(((int64_t)1), NULL);
  3614. void* L_8;
  3615. L_8 = UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9(L_7, NULL);
  3616. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_9;
  3617. memset((&L_9), 0, sizeof(L_9));
  3618. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&L_9), L_8, 0, NULL);
  3619. *(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*)L_6 = L_9;
  3620. V_1 = (bool)1;
  3621. goto IL_0043;
  3622. }
  3623. IL_003f:
  3624. {
  3625. V_1 = (bool)0;
  3626. goto IL_0043;
  3627. }
  3628. IL_0043:
  3629. {
  3630. bool L_10 = V_1;
  3631. return L_10;
  3632. }
  3633. }
  3634. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method)
  3635. {
  3636. static bool s_Il2CppMethodInitialized;
  3637. if (!s_Il2CppMethodInitialized)
  3638. {
  3639. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  3640. s_Il2CppMethodInitialized = true;
  3641. }
  3642. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  3643. memset((&V_0), 0, sizeof(V_0));
  3644. {
  3645. String_t* L_0 = ___0_text;
  3646. if (L_0)
  3647. {
  3648. goto IL_000d;
  3649. }
  3650. }
  3651. {
  3652. il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
  3653. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
  3654. return L_1;
  3655. }
  3656. IL_000d:
  3657. {
  3658. String_t* L_2 = ___0_text;
  3659. NullCheck(L_2);
  3660. Il2CppChar* L_3;
  3661. L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
  3662. String_t* L_4 = ___0_text;
  3663. NullCheck(L_4);
  3664. int32_t L_5;
  3665. L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
  3666. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
  3667. memset((&L_6), 0, sizeof(L_6));
  3668. ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  3669. return L_6;
  3670. }
  3671. }
  3672. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OnOverrideControllerDirtyCallback_Invoke_m538DCB0FFFE75495DC3977DBBF55A07C570F8B5A_inline (OnOverrideControllerDirtyCallback_tDC67F7661A27502AD804BDE0B696955AFD4A44D5* __this, const RuntimeMethod* method)
  3673. {
  3674. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  3675. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  3676. }
  3677. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* UnsafeUtility_As_TisIntPtr_t_TisGCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC_mD94F597CB91662C823496DA9FA9A7CF908734A78_gshared_inline (intptr_t* ___0_from, const RuntimeMethod* method)
  3678. {
  3679. {
  3680. intptr_t* L_0 = ___0_from;
  3681. return (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)(L_0);
  3682. }
  3683. }
  3684. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t MarshalledUnityObject_MarshalNotNull_TisRuntimeObject_mEB1AA6B672D00242BB9DCE007056EC0E9C8DB075_gshared_inline (RuntimeObject* ___0_obj, const RuntimeMethod* method)
  3685. {
  3686. intptr_t V_0;
  3687. memset((&V_0), 0, sizeof(V_0));
  3688. {
  3689. RuntimeObject* L_0 = ___0_obj;
  3690. NullCheck(L_0);
  3691. intptr_t L_1 = ((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0)->___m_CachedPtr;
  3692. V_0 = L_1;
  3693. goto IL_000f;
  3694. }
  3695. IL_000f:
  3696. {
  3697. intptr_t L_2 = V_0;
  3698. return L_2;
  3699. }
  3700. }
  3701. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  3702. {
  3703. {
  3704. int32_t L_0 = __this->____length;
  3705. return L_0;
  3706. }
  3707. }
  3708. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method)
  3709. {
  3710. {
  3711. intptr_t L_0 = __this->___handle;
  3712. bool L_1;
  3713. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  3714. return L_1;
  3715. }
  3716. }
  3717. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GCHandle_CanDereferenceHandle_mAAAC42D1268CEF3FDD040A3D1574773D08140579_inline (intptr_t ___0_handle, const RuntimeMethod* method)
  3718. {
  3719. {
  3720. intptr_t L_0 = ___0_handle;
  3721. return (bool)((((intptr_t)((intptr_t)(L_0&((intptr_t)1)))) == ((intptr_t)((intptr_t)0)))? 1 : 0);
  3722. }
  3723. }
  3724. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_GetRef_mAC7E58E62417209DC41C99F66BA70F0C3AA18DA8_inline (intptr_t ___0_handle, const RuntimeMethod* method)
  3725. {
  3726. {
  3727. intptr_t L_0 = ___0_handle;
  3728. void* L_1;
  3729. L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
  3730. RuntimeObject** L_2;
  3731. L_2 = il2cpp_unsafe_as_ref<RuntimeObject*>((intptr_t*)L_1);
  3732. RuntimeObject* L_3 = *((RuntimeObject**)L_2);
  3733. return L_3;
  3734. }
  3735. }
  3736. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GCHandle_SetRef_m89BDD13EED80A828682061BEF6D21F334AE45FC7_inline (intptr_t ___0_handle, RuntimeObject* ___1_value, const RuntimeMethod* method)
  3737. {
  3738. {
  3739. intptr_t L_0 = ___0_handle;
  3740. void* L_1;
  3741. L_1 = IntPtr_op_Explicit_m2728CBA081E79B97DDCF1D4FAD77B309CA1E94BF(L_0, NULL);
  3742. RuntimeObject** L_2;
  3743. L_2 = il2cpp_unsafe_as_ref<RuntimeObject*>((intptr_t*)L_1);
  3744. RuntimeObject* L_3 = ___1_value;
  3745. *((RuntimeObject**)L_2) = (RuntimeObject*)L_3;
  3746. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_3);
  3747. return;
  3748. }
  3749. }
  3750. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  3751. {
  3752. {
  3753. int32_t L_0 = __this->____stringLength;
  3754. return L_0;
  3755. }
  3756. }
  3757. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  3758. {
  3759. {
  3760. Il2CppChar* L_0 = ___0_ptr;
  3761. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
  3762. memset((&L_1), 0, sizeof(L_1));
  3763. il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
  3764. __this->____pointer = L_1;
  3765. int32_t L_2 = ___1_length;
  3766. __this->____length = L_2;
  3767. return;
  3768. }
  3769. }